/external/e2fsprogs/tests/f_dup4/ |
name | 0 find all directory pathnames
|
/frameworks/base/libs/androidfw/tests/ |
AttributeFinder_test.cpp | 61 EXPECT_EQ(0, finder.find(0x01010000)); 62 EXPECT_EQ(1, finder.find(0x01010001)); 63 EXPECT_EQ(2, finder.find(0x01010002)); 64 EXPECT_EQ(3, finder.find(0x01010004)); 65 EXPECT_EQ(4, finder.find(0x02010001)); 66 EXPECT_EQ(5, finder.find(0x02010010)); 67 EXPECT_EQ(6, finder.find(0x7f010001)); 68 EXPECT_EQ(end, finder.find(0x7f010002)); 75 EXPECT_EQ(6, finder.find(0x7f010001)); 76 EXPECT_EQ(end, finder.find(0x7f010002)) [all...] |
/build/kati/testcase/ |
find_command_sorted.mk | 2 # go: implement generic builtin find 3 # ninja: $(sort $(shell "find .")) becomes "$( .) find" 11 $(call run_find, find .)
|
find_command.mk | 3 # ninja: find . finds ninja temporary files 52 $(call run_find, find testdir) 53 $(call run_find, find .) 55 $(call run_find, find ./) 56 $(call run_find, find .///) 57 $(call run_find, find ) 58 $(call run_find, find ./.) 59 $(call run_find, find ././) 61 $(call run_find, find testdir/../testdir) 63 $(call run_find, find testdir -print [all...] |
/device/asus/fugu/sepolicy/ |
audioserver.te | 2 allow audioserver remote_control_service:service_manager find;
|
/external/toybox/tests/ |
find.test | 21 testing "find -type l -a -type d -o -type p" \ 22 "find dir -type l -a -type d -o -type p" "dir/fifo\n" "" "" 23 testing "find -type l -type d -o -type p" "find dir -type l -type d -o -type p" \ 25 testing "find -type l -o -type d -a -type p" \ 26 "find dir -type l -o -type d -a -type p" "dir/link\n" "" "" 27 testing "find -type l -o -type d -type p" "find dir -type l -o -type d -type p" \ 29 testing "find -type l ( -type d -o -type l )" \ 30 "find dir -type l \( -type d -o -type l \)" "dir/link\n" "" " [all...] |
/system/sepolicy/ |
radio.te | 30 allow radio audioserver_service:service_manager find; 31 allow radio cameraserver_service:service_manager find; 32 allow radio drmserver_service:service_manager find; 33 allow radio mediaserver_service:service_manager find; 34 allow radio nfc_service:service_manager find; 35 allow radio radio_service:service_manager { add find }; 36 allow radio surfaceflinger_service:service_manager find; 37 allow radio app_api_service:service_manager find; 38 allow radio system_api_service:service_manager find;
|
cameraserver.te | 20 allow cameraserver appops_service:service_manager find; 21 allow cameraserver audioserver_service:service_manager find; 22 allow cameraserver batterystats_service:service_manager find; 23 allow cameraserver cameraproxy_service:service_manager find; 25 allow cameraserver mediaserver_service:service_manager find; 26 allow cameraserver processinfo_service:service_manager find; 27 allow cameraserver scheduling_policy_service:service_manager find; 28 allow cameraserver surfaceflinger_service:service_manager find;
|
gatekeeperd.te | 10 # need to find KeyStore and add self 11 allow gatekeeperd gatekeeper_service:service_manager { add find }; 19 allow gatekeeperd permission_service:service_manager find; 21 allow gatekeeperd user_service:service_manager find; 28 allow gatekeeperd hardware_properties_service:service_manager find;
|
nfc.te | 24 allow nfc audioserver_service:service_manager find; 25 allow nfc drmserver_service:service_manager find; 26 allow nfc mediacodec_service:service_manager find; 27 allow nfc mediaextractor_service:service_manager find; 28 allow nfc mediaserver_service:service_manager find; 30 allow nfc nfc_service:service_manager { add find }; 31 allow nfc radio_service:service_manager find; 32 allow nfc surfaceflinger_service:service_manager find; 33 allow nfc app_api_service:service_manager find; 34 allow nfc system_api_service:service_manager find; [all...] |
platform_app.te | 42 allow platform_app audioserver_service:service_manager find; 43 allow platform_app cameraserver_service:service_manager find; 44 allow platform_app drmserver_service:service_manager find; 45 allow platform_app mediaserver_service:service_manager find; 46 allow platform_app mediaextractor_service:service_manager find; 47 allow platform_app mediacodec_service:service_manager find; 48 allow platform_app persistent_data_block_service:service_manager find; 49 allow platform_app radio_service:service_manager find; 50 allow platform_app surfaceflinger_service:service_manager find; 51 allow platform_app app_api_service:service_manager find; [all...] |
/dalvik/dx/tests/118-find-usages/ |
info.txt | 1 Creates a .dex file and runs find usages on it to find references and declarations.
|
/device/htc/flounder/sepolicy/ |
cameraserver.te | 1 allow cameraserver power_service:service_manager find; 2 allow cameraserver sensorservice_service:service_manager find;
|
/art/test/587-inline-class-error/ |
info.txt | 2 trying to find a method for an erroneous class.
|
/build/tools/ |
print_module_licenses.sh | 2 find . -name MODULE_LICENSE_\* | sed 's/\/MODULE_LICENSE_/\ /' | sed 's/\.\///' | awk '{ print $2 " " $1; }' | sort
|
/ndk/ |
remove-windows-symlink.sh | 5 # Find all symlink in toolchains directory. 6 WIN_DIRS=`find toolchains` 11 find toolchains/ -type l
|
/external/libcxx/test/std/containers/associative/multiset/ |
find.pass.cpp | 14 // iterator find(const key_type& k); 15 // const_iterator find(const key_type& k) const; 42 R r = m.find(5); 44 r = m.find(6); 46 r = m.find(7); 48 r = m.find(8); 50 r = m.find(9); 52 r = m.find(10); 54 r = m.find(11); 56 r = m.find(12) [all...] |
/external/libcxx/test/std/containers/associative/set/ |
find.pass.cpp | 14 // iterator find(const key_type& k); 15 // const_iterator find(const key_type& k) const; 42 R r = m.find(5); 44 r = m.find(6); 46 r = m.find(7); 48 r = m.find(8); 50 r = m.find(9); 52 r = m.find(10); 54 r = m.find(11); 56 r = m.find(12) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/ |
find.pass.cpp | 14 // iterator find(const key_type& k); 15 // const_iterator find(const key_type& k) const; 42 R r = m.find(5); 44 r = m.find(6); 46 r = m.find(7); 48 r = m.find(8); 50 r = m.find(9); 52 r = m.find(10); 54 r = m.find(11); 56 r = m.find(12) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/ |
find.pass.cpp | 14 // iterator find(const key_type& k); 15 // const_iterator find(const key_type& k) const; 42 R r = m.find(5); 44 r = m.find(6); 46 r = m.find(7); 48 r = m.find(8); 50 r = m.find(9); 52 r = m.find(10); 54 r = m.find(11); 56 r = m.find(12) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/ |
ModeTest.java | 36 assertTrue(m.find()); 38 assertFalse(m.find()); 42 assertTrue(m.find()); 44 assertTrue(m.find()); 46 assertFalse(m.find()); 50 assertTrue(m.find()); 52 assertTrue(m.find()); 54 assertFalse(m.find()); 63 assertTrue(m.find()); 65 assertFalse(m.find()); [all...] |
/libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/ |
ModeTest.java | 36 assertTrue(m.find()); 38 assertFalse(m.find()); 43 assertTrue(m.find()); 45 assertTrue(m.find()); 47 assertFalse(m.find()); 52 assertTrue(m.find()); 54 assertTrue(m.find()); 56 assertFalse(m.find()); 64 assertTrue(m.find()); 66 assertFalse(m.find()); [all...] |
/device/huawei/angler/sepolicy/ |
rild.te | 18 allow rild audioserver_service:service_manager find; 19 allow rild mediaserver_service:service_manager find; 20 allow rild per_mgr_service:service_manager find;
|
/external/libcxx/test/std/containers/associative/map/map.ops/ |
find.pass.cpp | 14 // iterator find(const key_type& k); 15 // const_iterator find(const key_type& k) const; 43 R r = m.find(5); 45 r = m.find(6); 47 r = m.find(7); 49 r = m.find(8); 51 r = m.find(9); 53 r = m.find(10); 55 r = m.find(11); 57 r = m.find(12) [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/ |
DigestAlgorithmIdentifierFinder.java | 8 * Find the digest algorithm identifier that matches with 14 AlgorithmIdentifier find(AlgorithmIdentifier sigAlgId); method in interface:DigestAlgorithmIdentifierFinder 17 * Find the algorithm identifier that matches with 23 AlgorithmIdentifier find(String digAlgName); method in interface:DigestAlgorithmIdentifierFinder
|