/external/harfbuzz_ng/src/ |
D | hb-vector.hh | 247 Type *lsearch (const T &x, Type *not_found = nullptr) in lsearch() 248 { return as_array ().lsearch (x, not_found); } in lsearch() 250 const Type *lsearch (const T &x, const Type *not_found = nullptr) const in lsearch() 251 { return as_array ().lsearch (x, not_found); } in lsearch() 254 Type *bsearch (const T &x, Type *not_found = nullptr) in bsearch() 255 { return as_sorted_array ().bsearch (x, not_found); } in bsearch() 257 const Type *bsearch (const T &x, const Type *not_found = nullptr) const in bsearch() 258 { return as_sorted_array ().bsearch (x, not_found); } in bsearch() 261 hb_bfind_not_found_t not_found = HB_BFIND_NOT_FOUND_DONT_STORE, in bfind() 263 { return as_sorted_array ().bfind (x, i, not_found, to_store); } in bfind()
|
D | hb-array.hh | 112 Type *lsearch (const T &x, Type *not_found = nullptr) in lsearch() 118 return not_found; in lsearch() 121 const Type *lsearch (const T &x, const Type *not_found = nullptr) const in lsearch() 127 return not_found; in lsearch() 211 Type *bsearch (const T &x, Type *not_found = nullptr) in bsearch() 214 return bfind (x, &i) ? &this->arrayZ[i] : not_found; in bsearch() 217 const Type *bsearch (const T &x, const Type *not_found = nullptr) const in bsearch() 220 return bfind (x, &i) ? &this->arrayZ[i] : not_found; in bsearch() 224 hb_bfind_not_found_t not_found = HB_BFIND_NOT_FOUND_DONT_STORE, in bfind() 246 switch (not_found) in bfind()
|
D | hb-open-type.hh | 388 Type &lsearch (unsigned int len, const T &x, Type ¬_found = Crap (Type)) in lsearch() 389 { return *as_array (len).lsearch (x, ¬_found); } in lsearch() 391 const Type &lsearch (unsigned int len, const T &x, const Type ¬_found = Null (Type)) const in lsearch() 392 { return *as_array (len).lsearch (x, ¬_found); } in lsearch() 494 Type &bsearch (unsigned int len, const T &x, Type ¬_found = Crap (Type)) in bsearch() 495 { return *as_array (len).bsearch (x, ¬_found); } in bsearch() 497 const Type &bsearch (unsigned int len, const T &x, const Type ¬_found = Null (Type)) const in bsearch() 498 { return *as_array (len).bsearch (x, ¬_found); } in bsearch() 501 hb_bfind_not_found_t not_found = HB_BFIND_NOT_FOUND_DONT_STORE, in bfind() 503 { return as_array (len).bfind (x, i, not_found, to_store); } in bfind() [all …]
|
/external/u-boot/tools/ |
D | proftool.c | 229 static int read_profile(FILE *fin, int *not_found) in read_profile() argument 233 *not_found = 0; in read_profile() 276 int not_found = INT_MAX; in read_profile_file() local 286 err = read_profile(fprof, ¬_found); in read_profile_file() 291 if (not_found) { in read_profile_file() 293 not_found); in read_profile_file() 362 int not_found = 0; in check_functions() local 368 not_found++; in check_functions() 376 not_found, removed_code_size); in check_functions()
|
/external/tensorflow/tensorflow/python/tools/ |
D | strip_unused_lib.py | 59 not_found = {name for name in input_node_names} 63 not_found.remove(node.name) 82 if not_found: 83 raise KeyError("The following input nodes were not found: %s\n" % not_found)
|
/external/grpc-grpc/test/core/http/ |
D | python_wrapper.sh | 17 for p in python2.7 python2.6 python2 python not_found ; do 19 python=$(which $p || echo not_found)
|
/external/grpc-grpc/tools/distrib/ |
D | python_wrapper.sh | 17 for p in python2.7 python2.6 python2 python not_found ; do 19 python=$(which $p || echo not_found)
|
/external/sfntly/cpp/src/test/ |
D | serialization_test.cc | 59 TableMap::const_iterator not_found = serialized_tables->end(); in TestSerialization() local 62 EXPECT_TRUE((serialized_tables->find(b->first) != not_found)); in TestSerialization() 125 TableMap::const_iterator not_found = serialized_tables->end(); in TestSerializationBitmap() local 128 EXPECT_TRUE((serialized_tables->find(b->first) != not_found)); in TestSerializationBitmap()
|
/external/v8/src/builtins/ |
D | builtins-collections-gen.cc | 657 Label* not_found); 671 Label* not_found); 682 Label* not_found); 691 Label* not_found); 705 Label* not_found); 847 Label* not_found) { in FindOrderedHashTableEntryForSmiKey() argument 858 result, entry_found, not_found); in FindOrderedHashTableEntryForSmiKey() 864 Label* entry_found, Label* not_found) { in FindOrderedHashTableEntryForStringKey() argument 874 result, entry_found, not_found); in FindOrderedHashTableEntryForStringKey() 880 Label* entry_found, Label* not_found) { in FindOrderedHashTableEntryForHeapNumberKey() argument [all …]
|
/external/libcxx/test/std/input.output/filesystems/class.file_status/ |
D | file_status.cons.pass.cpp | 46 const file_status f(file_type::not_found); in main() 47 assert(f.type() == file_type::not_found); in main()
|
/external/tensorflow/tensorflow/core/graph/ |
D | subgraph.cc | 194 string not_found; in PruneForTargets() local 198 strings::StrAppend(¬_found, n->name(), " "); in PruneForTargets() 203 strings::StrAppend(¬_found, s, " "); in PruneForTargets() 206 if (!not_found.empty()) { in PruneForTargets() 208 not_found); in PruneForTargets()
|
/external/llvm/test/Transforms/RewriteStatepointsForGC/ |
D | base-pointers-8.ll | 17 br i1 %index_lt, label %check_for_null, label %not_found 30 not_found: ; preds = %loop_check
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/RewriteStatepointsForGC/ |
D | base-pointers-8.ll | 18 br i1 %index_lt, label %check_for_null, label %not_found 31 not_found: ; preds = %loop_check
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status/ |
D | status.pass.cpp | 48 TEST_CHECK(st.type() == file_type::not_found); in TEST_CASE() 53 TEST_CHECK(st.type() == file_type::not_found); in TEST_CASE()
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.symlink_status/ |
D | symlink_status.pass.cpp | 47 TEST_CHECK(st.type() == file_type::not_found); in TEST_CASE() 52 TEST_CHECK(st.type() == file_type::not_found); in TEST_CASE()
|
/external/tensorflow/tensorflow/core/framework/ |
D | op_kernel_test.cc | 266 const auto not_found = error::NOT_FOUND; in TEST_F() local 270 DEVICE_GPU, not_found); in TEST_F() 272 DEVICE_GPU, not_found); in TEST_F() 274 DEVICE_CPU, not_found); in TEST_F() 278 DEVICE_GPU, not_found); in TEST_F() 281 ExpectFailure("name: 'NF' op: 'Testnotfound'", DEVICE_CPU, not_found); in TEST_F() 282 ExpectFailure("name: 'NF' op: 'Testnotfound'", DEVICE_GPU, not_found); in TEST_F()
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status_known/ |
D | status_known.pass.cpp | 43 {file_type::not_found, true}, in TEST_CASE()
|
/external/libcxx/test/std/input.output/filesystems/fs.enum/ |
D | enum.file_type.pass.cpp | 37 E::not_found == ME(-1) && in main()
|
/external/libevent/sample/ |
D | http-server.c | 97 goto not_found; /* no exension */ in guess_content_type() 104 not_found: in guess_content_type()
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_block_file/ |
D | is_block_file.pass.cpp | 48 {file_type::not_found, false}, in TEST_CASE()
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_fifo/ |
D | is_fifo.pass.cpp | 48 {file_type::not_found, false}, in TEST_CASE()
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_other/ |
D | is_other.pass.cpp | 48 {file_type::not_found, false}, in TEST_CASE()
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_socket/ |
D | is_socket.pass.cpp | 48 {file_type::not_found, false}, in TEST_CASE()
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_char_file/ |
D | is_character_file.pass.cpp | 48 {file_type::not_found, false}, in TEST_CASE()
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_directory/ |
D | is_directory.pass.cpp | 48 {file_type::not_found, false}, in TEST_CASE()
|