Home
last modified time | relevance | path

Searched refs:captures (Results 1 – 25 of 26) sorted by relevance

12

/packages/modules/AdServices/sdksandbox/tests/unittest/src/com/android/server/sdksandbox/
DStringTrieUnitTest.java142 List<String> captures = new ArrayList<String>(); in testWildcard_captureTail() local
144 assertNull(mTrie.retrieve(captures, "Landroid", "app")); in testWildcard_captureTail()
145 assertEquals(0, captures.size()); in testWildcard_captureTail()
146 assertEquals(Arrays.asList(), captures); in testWildcard_captureTail() local
148 assertEquals(STORED_VAL_A, mTrie.retrieve(captures, "Landroid", "app", "sdksandbox")); in testWildcard_captureTail()
149 assertEquals(1, captures.size()); in testWildcard_captureTail()
150 assertEquals(Arrays.asList("sdksandbox"), captures); in testWildcard_captureTail()
154 mTrie.retrieve(captures, "Landroid", "app", "sdksandbox", "SdkSandboxManager")); in testWildcard_captureTail()
155 assertEquals(2, captures.size()); in testWildcard_captureTail()
156 assertEquals(Arrays.asList("sdksandbox", "SdkSandboxManager"), captures); in testWildcard_captureTail()
[all …]
/packages/modules/AdServices/sdksandbox/service/java/com/android/server/sdksandbox/verification/
DStringTrie.java92 V recursiveRetrieve(List<String> captures, List<String> strings) { in recursiveRetrieve() argument
105 V exactMatch = mChildren.get(curKey).recursiveRetrieve(captures, nextKeys); in recursiveRetrieve()
114 if (captures != null) { in recursiveRetrieve()
115 captures.add(curKey); in recursiveRetrieve()
120 wildcardMatch = mChildren.get(null).recursiveRetrieve(captures, nextKeys); in recursiveRetrieve()
123 wildcardMatch = recursiveRetrieve(captures, nextKeys); in recursiveRetrieve()
127 wildcardMatch = mChildren.get(null).recursiveRetrieve(captures, nextKeys); in recursiveRetrieve()
160 public @Nullable V retrieve(@Nullable List<String> captures, @NonNull String... strings) { in retrieve() argument
165 if (captures != null) { in retrieve()
166 captures.clear(); in retrieve()
[all …]
/packages/apps/Car/systemlibs/
D.gitignore18 # Android studio's layout inspector captures
19 captures/
/packages/modules/Virtualization/compos/src/
Dcompilation.rs217 if let Some(captures) = pattern.captures(line) { in load_classpath_vars()
218 let name = &captures[1]; in load_classpath_vars()
219 let value = &captures[2]; in load_classpath_vars()
/packages/apps/UniversalMediaPlayer/
D.gitignore7 /captures/
/packages/apps/DeskClock/
D.gitignore8 /captures
/packages/modules/Bluetooth/android/leaudio/
D.gitignore12 /captures
/packages/services/Telephony/testapps/TestSliceApp/
D.gitignore12 /captures
/packages/modules/Bluetooth/android/ChannelSoundingTestApp/
D.gitignore12 /captures
/packages/modules/ImsMedia/test/app/ImsMediaTestingApp/
D.gitignore24 captures/
/packages/modules/Virtualization/virtualizationmanager/src/
Dpayload.rs361 if let Some(captures) = pattern.captures(line) { in find_apex_names_in_classpath()
362 if let Some(paths) = captures.get(1) { in find_apex_names_in_classpath()
/packages/modules/Bluetooth/system/blueberry/tests/gd/cert/
Dpy_le_security.py19 from blueberry.tests.gd.cert.captures import SecurityCaptures
Dpy_acl_manager.py20 from blueberry.tests.gd.cert.captures import HciCaptures
Dpy_le_acl_manager.py21 from blueberry.tests.gd.cert.captures import HciCaptures
Dpy_hci.py24 from blueberry.tests.gd.cert.captures import HciCaptures
Dpy_hal.py23 from blueberry.tests.gd.cert.captures import HciCaptures
/packages/modules/Bluetooth/system/blueberry/tests/gd/hci/
Ddirect_hci_test.py19 from blueberry.tests.gd.cert.captures import HalCaptures, HciCaptures
/packages/modules/Bluetooth/system/blueberry/tests/gd/security/
Dcert_security.py19 from blueberry.tests.gd.cert.captures import HciCaptures
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile1181 # generate an XML file that captures the structure of
1217 # that captures the structure of the code including all
1228 # generate a Perl module file that captures the structure of
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile1181 # generate an XML file that captures the structure of
1217 # that captures the structure of the code including all
1228 # generate a Perl module file that captures the structure of
/packages/modules/Bluetooth/system/gd/rust/linux/mgmt/src/
Dstate_machine.rs293 re.captures(path)?.get(1)?.as_str().parse().ok().map(|v| VirtualHciIndex(v)) in get_hci_index_from_pid_path()
/packages/inputmethods/LatinIME/dictionaries/
Den_GB_wordlist.combined.gz
Den_US_wordlist.combined.gz
Den_wordlist.combined.gz
Dfr_wordlist.combined.gz

12