/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/coord/ranged1d/combinators/ |
D | linspace.rs | 19 fn search(values: &[V], target: &V) -> Option<usize>; in search() method 29 fn search(values: &[V], target: &V) -> Option<usize> { in search() method 40 fn search(values: &[V], target: &V) -> Option<usize> { in search() method 73 fn search(values: &[V], target: &V) -> Option<usize> { in search() method 110 fn search(values: &[V], target: &V) -> Option<usize> { in search() function 209 pub fn use_ceil(self) -> Linspace<T, S, Ceil<T::ValueType>> { in use_ceil() argument 221 pub fn use_floor(self) -> Linspace<T, S, Floor<T::ValueType>> { in use_floor() argument 233 pub fn use_round(self) -> Linspace<T, S, Round<T::ValueType, S>> in use_round() argument 249 pub fn use_exact(self) -> Linspace<T, S, Exact<T::ValueType>> in use_exact() argument 329 fn step<S: Clone>(self, val: S) -> Linspace<Self::CoordDescType, S, Exact<Self::Value>> in step() argument [all …]
|
/aosp_15_r20/external/clang/utils/ |
H A D | token-delta.py | 48 def split(self, S): argument 82 def search(self, c, sets): member in DeltaAlgorithm
|
/aosp_15_r20/external/python/cpython2/Lib/ |
D | re.py | 125 S = DOTALL = sre_compile.SRE_FLAG_DOTALL # make dot match newline variable 143 def search(pattern, string, flags=0): function
|
/aosp_15_r20/external/clang/lib/Sema/ |
H A D | SemaDeclObjC.cpp | 251 static void DiagnoseObjCImplementedDeprecations(Sema &S, in DiagnoseObjCImplementedDeprecations() 282 HasExplicitOwnershipAttr(Sema &S, ParmVarDecl *Param) { in HasExplicitOwnershipAttr() 465 ActOnSuperClassOfClassInterface(Scope *S, in ActOnSuperClassOfClassInterface() 590 DeclResult Sema::actOnObjCTypeParam(Scope *S, in actOnObjCTypeParam() 693 ObjCTypeParamList *Sema::actOnObjCTypeParamList(Scope *S, in actOnObjCTypeParamList() 728 void Sema::popObjCTypeParamList(Scope *S, ObjCTypeParamList *typeParamList) { in popObjCTypeParamList() 751 static bool checkTypeParamListConsistency(Sema &S, in checkTypeParamListConsistency() 900 ActOnStartClassInterface(Scope *S, SourceLocation AtInterfaceLoc, in ActOnStartClassInterface() 1316 Scope *S, in actOnObjCTypeArgsOrProtocolQualifiers() 2112 static void WarnUndefinedMethod(Sema &S, SourceLocation ImpLoc, in WarnUndefinedMethod() [all …]
|
/aosp_15_r20/external/libpng/contrib/tools/ |
H A D | pngcp.c | 276 png_byte search; /* Search on --search */ member 284 # define S(n,v) { #n, v, 0, 2, vl_on_off }, macro 307 # define VL(oname, name, type, search)\ argument 309 # define VLO(oname, name, search) VL(oname, name, OPTION, search) argument 353 # define VLL(name, search) VL(#name, name, LIST, search) argument 823 push_opt(struct display *dp, unsigned int sp, png_byte opt, int search) in push_opt() 911 int search = 0; in next_opt() local 1158 advance_opt(struct display *dp, png_byte opt, int search) in advance_opt()
|
/aosp_15_r20/external/rust/android-crates-io/crates/hashbrown/src/ |
D | map.rs | 245 pub(crate) fn make_hash<K, Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 259 pub(crate) fn make_hash<K, Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 270 pub(crate) fn make_insert_hash<K, S>(hash_builder: &S, val: &K) -> u64 in make_insert_hash() argument 283 pub(crate) fn make_insert_hash<K, S>(hash_builder: &S, val: &K) -> u64 in make_insert_hash() argument 455 pub fn with_hasher_in(hash_builder: S, alloc: A) -> Self { in with_hasher_in() 484 pub fn with_capacity_and_hasher_in(capacity: usize, hash_builder: S, alloc: A) -> Self { in with_capacity_and_hasher_in() 506 pub fn hasher(&self) -> &S { in hasher() 1139 pub fn entry(&mut self, key: K) -> Entry<'_, K, V, S, A> { in entry() argument 1175 pub fn entry_ref<'a, 'b, Q: ?Sized>(&'a mut self, key: &'b Q) -> EntryRef<'a, 'b, K, Q, V, S, A> in entry_ref() argument 1777 ) -> Result<&mut V, OccupiedError<'_, K, V, S, A>> { in try_insert() argument [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/ |
H A D | map.rs | 244 pub(crate) fn make_hash<Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 257 pub(crate) fn make_hash<Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 545 pub const fn with_hasher_in(hash_builder: S, alloc: A) -> Self { in with_hasher_in() 580 pub fn with_capacity_and_hasher_in(capacity: usize, hash_builder: S, alloc: A) -> Self { in with_capacity_and_hasher_in() 602 pub fn hasher(&self) -> &S { in hasher() 1231 pub fn entry(&mut self, key: K) -> Entry<'_, K, V, S, A> { in entry() argument 1267 pub fn entry_ref<'a, 'b, Q: ?Sized>(&'a mut self, key: &'b Q) -> EntryRef<'a, 'b, K, Q, V, S, A> in entry_ref() argument 1860 ) -> Result<&mut V, OccupiedError<'_, K, V, S, A>> { in try_insert() argument 2042 pub fn raw_entry_mut(&mut self) -> RawEntryBuilderMut<'_, K, V, S, A> { in raw_entry_mut() argument 2091 pub fn raw_entry(&self) -> RawEntryBuilder<'_, K, V, S, A> { in raw_entry() argument [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/vendor/hashbrown/src/ |
H A D | map.rs | 244 pub(crate) fn make_hash<Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 257 pub(crate) fn make_hash<Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 545 pub const fn with_hasher_in(hash_builder: S, alloc: A) -> Self { in with_hasher_in() 580 pub fn with_capacity_and_hasher_in(capacity: usize, hash_builder: S, alloc: A) -> Self { in with_capacity_and_hasher_in() 602 pub fn hasher(&self) -> &S { in hasher() 1231 pub fn entry(&mut self, key: K) -> Entry<'_, K, V, S, A> { in entry() argument 1267 pub fn entry_ref<'a, 'b, Q: ?Sized>(&'a mut self, key: &'b Q) -> EntryRef<'a, 'b, K, Q, V, S, A> in entry_ref() argument 1860 ) -> Result<&mut V, OccupiedError<'_, K, V, S, A>> { in try_insert() argument 2042 pub fn raw_entry_mut(&mut self) -> RawEntryBuilderMut<'_, K, V, S, A> { in raw_entry_mut() argument 2091 pub fn raw_entry(&self) -> RawEntryBuilder<'_, K, V, S, A> { in raw_entry() argument [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/ |
H A D | map.rs | 244 pub(crate) fn make_hash<Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 257 pub(crate) fn make_hash<Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 545 pub const fn with_hasher_in(hash_builder: S, alloc: A) -> Self { in with_hasher_in() 580 pub fn with_capacity_and_hasher_in(capacity: usize, hash_builder: S, alloc: A) -> Self { in with_capacity_and_hasher_in() 602 pub fn hasher(&self) -> &S { in hasher() 1231 pub fn entry(&mut self, key: K) -> Entry<'_, K, V, S, A> { in entry() argument 1267 pub fn entry_ref<'a, 'b, Q: ?Sized>(&'a mut self, key: &'b Q) -> EntryRef<'a, 'b, K, Q, V, S, A> in entry_ref() argument 1860 ) -> Result<&mut V, OccupiedError<'_, K, V, S, A>> { in try_insert() argument 2042 pub fn raw_entry_mut(&mut self) -> RawEntryBuilderMut<'_, K, V, S, A> { in raw_entry_mut() argument 2091 pub fn raw_entry(&self) -> RawEntryBuilder<'_, K, V, S, A> { in raw_entry() argument [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/ |
H A D | map.rs | 244 pub(crate) fn make_hash<Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 257 pub(crate) fn make_hash<Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 545 pub const fn with_hasher_in(hash_builder: S, alloc: A) -> Self { in with_hasher_in() 580 pub fn with_capacity_and_hasher_in(capacity: usize, hash_builder: S, alloc: A) -> Self { in with_capacity_and_hasher_in() 602 pub fn hasher(&self) -> &S { in hasher() 1231 pub fn entry(&mut self, key: K) -> Entry<'_, K, V, S, A> { in entry() argument 1267 pub fn entry_ref<'a, 'b, Q: ?Sized>(&'a mut self, key: &'b Q) -> EntryRef<'a, 'b, K, Q, V, S, A> in entry_ref() argument 1860 ) -> Result<&mut V, OccupiedError<'_, K, V, S, A>> { in try_insert() argument 2042 pub fn raw_entry_mut(&mut self) -> RawEntryBuilderMut<'_, K, V, S, A> { in raw_entry_mut() argument 2091 pub fn raw_entry(&self) -> RawEntryBuilder<'_, K, V, S, A> { in raw_entry() argument [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/ |
H A D | map.rs | 244 pub(crate) fn make_hash<Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 257 pub(crate) fn make_hash<Q, S>(hash_builder: &S, val: &Q) -> u64 in make_hash() argument 545 pub const fn with_hasher_in(hash_builder: S, alloc: A) -> Self { in with_hasher_in() 580 pub fn with_capacity_and_hasher_in(capacity: usize, hash_builder: S, alloc: A) -> Self { in with_capacity_and_hasher_in() 602 pub fn hasher(&self) -> &S { in hasher() 1231 pub fn entry(&mut self, key: K) -> Entry<'_, K, V, S, A> { in entry() argument 1267 pub fn entry_ref<'a, 'b, Q: ?Sized>(&'a mut self, key: &'b Q) -> EntryRef<'a, 'b, K, Q, V, S, A> in entry_ref() argument 1860 ) -> Result<&mut V, OccupiedError<'_, K, V, S, A>> { in try_insert() argument 2042 pub fn raw_entry_mut(&mut self) -> RawEntryBuilderMut<'_, K, V, S, A> { in raw_entry_mut() argument 2091 pub fn raw_entry(&self) -> RawEntryBuilder<'_, K, V, S, A> { in raw_entry() argument [all …]
|
/aosp_15_r20/prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/ |
D | nashorn.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/services/javax. ... |
/aosp_15_r20/prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/ |
D | nashorn.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/services/javax. ... |
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/trace/traceviewer/static/ |
D | webcomponents.min.js | 11 …s=window.WebComponents||{flags:{}};var e="webcomponents.js",t=document.querySelector('script[src*=… class 12 querySelector:function(t){var r=n(t),i=r!==t;t=r;var a,s=g(this),c=v(this).root;if(c instanceof e.w… class 13 …unction(){return n.apply(N(this),arguments)}}var l=e.GetElementsByInterface,u=e.wrappers.Node,d=e.… class
|
/aosp_15_r20/external/perfmark/traceviewer/src/main/resources/io/perfmark/traceviewer/third_party/polymer/ |
H A D | webcomponents.min.js | 11 …s=window.WebComponents||{flags:{}};var e="webcomponents.js",t=document.querySelector('script[src*=… class 12 querySelector:function(t){var r=n(t),i=r!==t;t=r;var a,s=g(this),c=v(this).root;if(c instanceof e.w… class 13 …unction(){return n.apply(N(this),arguments)}}var l=e.GetElementsByInterface,u=e.wrappers.Node,d=e.… class
|
/aosp_15_r20/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/ |
H A D | webcomponents.min.js | 11 …s=window.WebComponents||{flags:{}};var e="webcomponents.js",t=document.querySelector('script[src*=… class 12 querySelector:function(t){var r=n(t),i=r!==t;t=r;var a,s=g(this),c=v(this).root;if(c instanceof e.w… class 13 …unction(){return n.apply(N(this),arguments)}}var l=e.GetElementsByInterface,u=e.wrappers.Node,d=e.… class
|
/aosp_15_r20/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/ |
H A D | apiviewer.js | 175 …String",k=".",j="default",h="Object",g='"',f="Array",e="()",d="String",c="Function",b=".prototype"… argument
|
/aosp_15_r20/prebuilts/tools/common/m2/repository/com/intellij/core-analysis/ |
HD | intellij-core-analysis.jar | ... intellij/psi/
com/intellij/psi/search/
com/intellij/psi/search/scope ... |
/aosp_15_r20/prebuilts/tools/common/netbeans-visual/ |
HD | org-openide-util.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/netbeans/
org/ ... |
/aosp_15_r20/prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.4/ |
HD | commons-lang3-3.4.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/aosp_15_r20/prebuilts/devtools/tools/lib/ |
HD | bcprov-jdk15on-1.48.jar | META-INF/MANIFEST.MF
META-INF/BCKEY.SF
META-INF/BCKEY ... |
/aosp_15_r20/external/guice/extensions/struts2/lib/ |
HD | xwork-core-2.2.1.jar | META-INF/
META-INF/MANIFEST.MF
xwork-validator-definition-1.0. ... |
/aosp_15_r20/prebuilts/jdk/jdk8/linux-x86/lib/ |
D | ct.sym | META-INF/
META-INF/MANIFEST.MF
META-INF/sym/rt. ... |
/aosp_15_r20/prebuilts/jdk/jdk8/darwin-x86/lib/ |
D | ct.sym | META-INF/
META-INF/MANIFEST.MF
META-INF/sym/rt. ... |
/aosp_15_r20/out/soong/.intermediates/external/apache-commons-lang/apache-commons-lang/android_common_apex33/javac/ |
D | apache-commons-lang.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |