| /third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
| H A D | RewriteOutArgs.cpp | 25 const Entry *find(const T &x) const in find() function in __anon19784::SmallMultiSet 39 const Entry *entry = find(x); in multiplicity() 65 ANGLE_INLINE Entry *findMutable(const T &x) { return const_cast<Entry *>(find(x)); } in findMutable() 165 const bool hasIndeterminateVar = mVarBuffer.find(nullptr);
|
| /third_party/vk-gl-cts/external/amber/src/tools/ |
| H A D | update_vk_wrappers.py | 45 proto = command.find('proto') 49 return_type = proto.find('type').text 50 name = proto.find('name').text 55 param_name = param.find('name').text 75 raise Exception("Failed to find {}".format(method)) 143 raise Exception("Failed to find {}".format(method))
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
| H A D | SparseSet.h | 90 /// clear() and iteration as fast as a vector. The find(), insert(), and 106 /// When SparseT is uint32_t, find() only touches 2 cache lines, but the sparse 109 /// When SparseT is uint8_t (the default), find() touches up to 2+[N/256] cache 195 // Sparse does not need to be cleared, see find(). in clear() 201 /// @param Idx A valid index to find. 219 /// find - Find an element by its key. 221 /// @param Key A valid key to find. 224 iterator find(const KeyT &Key) { 228 const_iterator find(const KeyT &Key) const { 236 return find(Ke [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
| H A D | FunctionLoweringInfo.h | 111 SlotMapTy::const_iterator find(const Value *V) const { in find() function 112 auto DuplIt = DuplicateMap.find(V); in find() 115 return SlotMap.find(V); in find() 260 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN); in InvalidatePHILiveOutRegInfo()
|
| /third_party/vk-gl-cts/framework/randomshaders/ |
| H A D | rsgExecutionContext.cpp | 76 const ExecValueStorage* samplerVal = m_varValues.find(sampler)->second; in getSampler2D() 80 return m_samplers2D.find(samplerNdx)->second; in getSampler2D() 85 const ExecValueStorage* samplerVal = m_varValues.find(sampler)->second; in getSamplerCube() 89 return m_samplersCube.find(samplerNdx)->second; in getSamplerCube()
|
| /test/testfwk/arkxtest/uitest/test/ |
| H A D | ipc_transactor_test.cpp | 114 ASSERT_TRUE(clientOutput.find(" FAILED ") == string::npos); in TEST_P() 164 ASSERT_TRUE(result.exception_.message_.find("ipc connection is dead") != string::npos); in TEST() 170 ASSERT_TRUE(clientOutput.find(" FAILED ") == string::npos); in TEST() 223 ASSERT_TRUE(clientOutput.find(" FAILED ") == string::npos); in TEST() 270 ASSERT_TRUE(clientOutput.find(" FAILED ") == string::npos); in TEST() 304 ASSERT_TRUE(clientOutput.find(" FAILED ") == string::npos); in TEST()
|
| /third_party/gn/src/gn/ |
| H A D | command_help.cc | 218 all.find(std::string_view(what)); in PrintHelpOnSwitch() 293 auto found_command = command_map.find(what); in RunHelp() 303 auto found_function = function_map.find(what); in RunHelp() 312 auto found_builtin_var = builtin_vars.find(what); in RunHelp() 321 auto found_target_var = target_vars.find(what); in RunHelp() 355 auto found_random_topic = random_topics.find(what); in RunHelp()
|
| /third_party/json/tests/thirdparty/fifo_map/ |
| H A D | fifo_map.hpp | 60 const auto timestamp_lhs = keys->find(lhs); in operator ()() 61 const auto timestamp_rhs = keys->find(rhs); in operator ()() 415 iterator find(const Key& key) in find() function in nlohmann::fifo_map 417 return m_map.find(key); in find() 421 const_iterator find(const Key& key) const in find() function in nlohmann::fifo_map 423 return m_map.find(key); in find()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
| H A D | SwiftErrorValueTracking.cpp | 29 auto It = VRegDefMap.find(Key); in getOrCreateVReg() 53 auto It = VRegDefUses.find(Key); in getOrCreateVRegDefAt() 68 auto It = VRegDefUses.find(Key); in getOrCreateVRegUseAt() 162 auto UUseIt = VRegUpwardsUse.find(Key); in propagateVRegs() 163 auto VRegDefIt = VRegDefMap.find(Key); in propagateVRegs() 195 UUseIt = VRegUpwardsUse.find(Key); in propagateVRegs()
|
| /third_party/vk-gl-cts/external/amber/src/src/ |
| H A D | script.h | 83 auto it = name_to_pipeline_.find(name); in GetPipeline() 105 auto it = name_to_shader_.find(name); in GetShader() 127 auto it = name_to_buffer_.find(name); in GetBuffer() 149 auto it = name_to_sampler_.find(name); in GetSampler() 166 return std::find(engine_info_.required_features.begin(), in IsRequiredFeature() 230 auto it = name_to_type_.find(name); in GetType()
|
| /third_party/skia/tools/trace/ |
| H A D | ChromeTracingTracer.cpp | 179 if (int* shortIDPtr = fShortThreadIDMap.find(id)) { in getShortThreadID() 202 SkASSERT(nullptr == baseTypeResolver->find(traceEvent->fID)); in trace_event_to_json() 205 SkASSERT(nullptr != baseTypeResolver->find(traceEvent->fID)); in trace_event_to_json() 239 baseTypeResolver->find(traceEvent->fID) && in trace_event_to_json() 240 0 != strcmp(*baseTypeResolver->find(traceEvent->fID), traceEvent->fName)) { in trace_event_to_json() 243 writer->appendString("base_type", *baseTypeResolver->find(traceEvent->fID)); in trace_event_to_json()
|
| /third_party/rust/crates/regex/src/literal/ |
| H A D | imp.rs | 79 pub fn find(&self, haystack: &[u8]) -> Option<(usize, usize)> { in find() functions 83 Bytes(ref sset) => sset.find(haystack).map(|i| (i, i + 1)), in find() 84 Memmem(ref s) => s.find(haystack).map(|i| (i, i + s.len())), in find() 86 ac.find(haystack).map(|m| (m.start(), m.end())) in find() 89 s.find(haystack).map(|m| (m.start(), m.end())) in find() 94 /// Like find, except matches must start at index `0`. 107 /// Like find, except matches must end at index `haystack.len()`. 328 /// Faster find that special cases certain sizes to use memchr. 330 fn find(&self, text: &[u8]) -> Option<usize> { in find() functions 340 /// Generic find tha 375 pub fn find(&self, haystack: &[u8]) -> Option<usize> { find() functions [all...] |
| /test/xts/tools/lite/ |
| H A D | buildUtils.sh | 22 dir_num=$(find . -name $dir_name|grep $grep_filed|wc -l) 24 dir_path_find_by_name=$(pwd)/$(find . -name $dir_name | grep $grep_filed) 26 echo "find $dir_name in out error !"
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
| H A D | GCOV.cpp | 461 auto it = find(Blocked, U); 486 if (W < Start || find(Blocks, W) == Blocks.end()) { 496 } else if (find(Blocked, W) == Blocked.end() && // W is not blocked. 510 if (W < Start || find(Blocks, W) == Blocks.end()) { 513 const size_t index = find(Blocked, W) - Blocked.begin(); 515 if (find(List, V) == List.end()) { 549 if (find(Blocks, W) == Blocks.end()) { 743 FunctionLines::const_iterator FuncsIt = Line.Functions.find(LineIndex); 748 BlockLines::const_iterator BlocksIt = Line.Blocks.find(LineIndex); 772 if (FuncCoverages.find(Functio [all...] |
| /third_party/spirv-tools/test/val/ |
| H A D | val_modes_test.cpp | 590 if (mode.find("LocalSizeId") == 0 || mode.find("LocalSizeHintId") == 0 || in TEST_P() 591 mode.find("SubgroupsPerWorkgroupId") == 0) { in TEST_P() 597 if (!(mode.find("InputPoints") == 0 || mode.find("InputLines") == 0 || in TEST_P() 598 mode.find("InputLinesAdjacency") == 0 || in TEST_P() 599 mode.find("Triangles") == 0 || in TEST_P() 600 mode.find("InputTrianglesAdjacency") == 0)) { in TEST_P() 604 if (!(mode.find("OutputPoints") == 0 || mode.find("OutputLineStri in TEST_P() [all...] |
| /third_party/icu/icu4c/source/tools/tzcode/ |
| H A D | tz2icu.cpp | 215 assert(aliasTo < 0 && index >= 0 && aliases.find(index) == aliases.end()); 479 find(abbroffset.begin(), abbroffset.end(), it->abbr); in readzoneinfo() 539 if (ZONEINFO.find(id) != ZONEINFO.end()) { in handleFile() 756 if (aliases.find(alias) != aliases.end()) { in addLink() 908 * Predicate used to find FinalRule objects that do not have both 916 * Predicate used to find FinalZone objects that do not map to a known 920 return finalRules.find(p.second.ruleid) == finalRules.end(); in mapsToUnknownRule() 971 if (finalZones.find(toid) != finalZones.end()) { in readFinalZonesAndRules() 1276 assert(simplemap.find(newtype) != simplemap.end()); in optimizeTypeList() 1324 assert(simplemap.find(newtyp in optimizeTypeList() [all...] |
| /third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
| H A D | tz2icu.cpp | 215 assert(aliasTo < 0 && index >= 0 && aliases.find(index) == aliases.end()); 479 find(abbroffset.begin(), abbroffset.end(), it->abbr); in readzoneinfo() 539 if (ZONEINFO.find(id) != ZONEINFO.end()) { in handleFile() 756 if (aliases.find(alias) != aliases.end()) { in addLink() 908 * Predicate used to find FinalRule objects that do not have both 916 * Predicate used to find FinalZone objects that do not map to a known 920 return finalRules.find(p.second.ruleid) == finalRules.end(); in mapsToUnknownRule() 971 if (finalZones.find(toid) != finalZones.end()) { in readFinalZonesAndRules() 1276 assert(simplemap.find(newtype) != simplemap.end()); in optimizeTypeList() 1324 assert(simplemap.find(newtyp in optimizeTypeList() [all...] |
| /third_party/vulkan-loader/tests/ |
| H A D | loader_version_tests.cpp | 179 // Declare drivers using the D3DKMT driver interface and make sure the loader can find them - but don't export 785 ASSERT_TRUE(log.find( in TEST() 799 ASSERT_TRUE(log.find("loader_parse_icd_manifest: Driver's ICD JSON ")); in TEST() 801 ASSERT_TRUE(log.find("\'api_version\' field contains a non-zero variant value of 1. Skipping ICD JSON.")); in TEST() 821 ASSERT_TRUE(log.find(std::string("Layer \"") + implicit_layer_name + in TEST() 841 ASSERT_TRUE(log.find(std::string("Layer \"") + explicit_layer_name + in TEST() 856 ASSERT_TRUE(log.find("loader_parse_icd_manifest: ")); in TEST() 858 ASSERT_TRUE(log.find("has unknown icd manifest file version 3.2.1. May cause errors.")); in TEST() 872 ASSERT_TRUE(log.find("loader_parse_icd_manifest: ")); in TEST() 874 ASSERT_TRUE(log.find("ha in TEST() [all...] |
| /third_party/libphonenumber/cpp/src/phonenumbers/ |
| H A D | phonenumbermatcher.cc | 130 from_index = normalized_candidate.find(country_code) + country_code.size(); in AllNumberGroupsRemainGrouped() 137 from_index = normalized_candidate.find(formatted_number_groups.at(i), in AllNumberGroupsRemainGrouped() 174 .find(number.extension()) != string::npos; in AllNumberGroupsRemainGrouped() 394 calling_code_to_alternate_formats_map_.find(country_calling_code); in GetAlternateFormatsForCountry() 642 // If that failed, try to find an "inner match" - there might be a phone in ExtractMatch() 670 // Check the state and find the next match as a side-effect if necessary. in Next() 760 size_t end_index = rfc3966_format.find(';'); in GetNationalNumberGroups() 765 size_t start_index = rfc3966_format.find('-') + 1; in GetNationalNumberGroups() 854 // We use find and not equals, since the national significant number may be in AllNumberGroupsAreExactlyPresent() 861 candidate_groups.at(candidate_number_group_index).find( in AllNumberGroupsAreExactlyPresent() [all...] |
| /third_party/skia/third_party/externals/spirv-tools/source/opt/ |
| H A D | decoration_manager.cpp | 44 // Did not find |*it1| yet, check the next element in |b|. in IsSubset() 59 const auto ids_iter = id_to_decoration_insts_.find(id); in RemoveDecorationsFrom() 84 const auto group_iter = id_to_decoration_insts_.find(group_id); in RemoveDecorationsFrom() 429 const auto ids_iter = id_to_decoration_insts_.find(id); in InternalGetDecorationsFor() 452 const auto group_iter = id_to_decoration_insts_.find(group_id); in InternalGetDecorationsFor() 509 const auto decoration_list = id_to_decoration_insts_.find(from); in CloneDecorations() 558 const auto decoration_list = id_to_decoration_insts_.find(from); in CloneDecorations() 562 if (std::find(decorations_to_copy.begin(), decorations_to_copy.end(), in CloneDecorations() 607 auto const iter = id_to_decoration_insts_.find(target_id); in RemoveDecoration() 616 auto const iter = id_to_decoration_insts_.find(target_i in RemoveDecoration() [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
| H A D | decoration_manager.cpp | 44 // Did not find |*it1| yet, check the next element in |b|. in IsSubset() 59 const auto ids_iter = id_to_decoration_insts_.find(id); in RemoveDecorationsFrom() 84 const auto group_iter = id_to_decoration_insts_.find(group_id); in RemoveDecorationsFrom() 429 const auto ids_iter = id_to_decoration_insts_.find(id); in InternalGetDecorationsFor() 452 const auto group_iter = id_to_decoration_insts_.find(group_id); in InternalGetDecorationsFor() 509 const auto decoration_list = id_to_decoration_insts_.find(from); in CloneDecorations() 558 const auto decoration_list = id_to_decoration_insts_.find(from); in CloneDecorations() 562 if (std::find(decorations_to_copy.begin(), decorations_to_copy.end(), in CloneDecorations() 607 auto const iter = id_to_decoration_insts_.find(target_id); in RemoveDecoration() 616 auto const iter = id_to_decoration_insts_.find(target_i in RemoveDecoration() [all...] |
| /third_party/spirv-tools/source/opt/ |
| H A D | decoration_manager.cpp | 47 // Did not find |*it1| yet, check the next element in |b|. in IsSubset() 58 const auto ids_iter = id_to_decoration_insts_.find(id); in RemoveDecorationsFrom() 83 const auto group_iter = id_to_decoration_insts_.find(group_id); in RemoveDecorationsFrom() 430 const auto ids_iter = id_to_decoration_insts_.find(id); in InternalGetDecorationsFor() 454 const auto group_iter = id_to_decoration_insts_.find(group_id); in InternalGetDecorationsFor() 516 const auto decoration_list = id_to_decoration_insts_.find(from); in CloneDecorations() 565 const auto decoration_list = id_to_decoration_insts_.find(from); in CloneDecorations() 569 if (std::find(decorations_to_copy.begin(), decorations_to_copy.end(), in CloneDecorations() 614 auto const iter = id_to_decoration_insts_.find(target_id); in RemoveDecoration() 624 auto const iter = id_to_decoration_insts_.find(target_i in RemoveDecoration() [all...] |
| /test/testfwk/developer_test/local_coverage/interface_coverage/ |
| H A D | interface_coverage_gcov_lcov.py | 93 if fn.find(postfix) != -1 and fn[-len(postfix):] == postfix: 103 if "" == file_path or -1 != file_path.find(__file__): 118 if -1 != filepath.find(item): 135 if func_returntype.find("KVSTORE_API") != -1: 166 if func_returntype.find("KVSTORE_API") != -1: 286 pos = content.find("<") 296 pos_start = func_info.find("(") 332 if -1 != line.find(find_string):
|
| /third_party/json/ |
| H A D | Makefile | 7 # find GNU sed to use `-i` parameter 16 SRCS=$(shell find include -type f | sort) 19 TESTS_SRCS=$(shell find tests -type f \( -name '*.hpp' -o -name '*.cpp' -o -name '*.cu' \) -not -path 'tests/thirdparty/*' -not -path 'tests/abi/include/nlohmann/*' | sort) 77 find tests/data/json_tests -size -5k -name *json | xargs -I{} cp "{}" fuzz-testing/testcases 85 find tests/data -size -5k -name *.bson | xargs -I{} cp "{}" fuzz-testing/testcases 93 find tests/data -size -5k -name *.cbor | xargs -I{} cp "{}" fuzz-testing/testcases 101 find tests/data -size -5k -name *.msgpack | xargs -I{} cp "{}" fuzz-testing/testcases 109 find tests/data -size -5k -name *.ubjson | xargs -I{} cp "{}" fuzz-testing/testcases 220 rsync -R $(shell find LICENSE.MIT nlohmann_json.natvis CMakeLists.txt cmake/*.in include single_include -type f) json
|
| /third_party/node/src/ |
| H A D | node_options-inl.h | 141 auto it = options_.find(to); in Implies() 151 auto it = options_.find(to); in ImpliesNot() 314 arg[0] == '-' && arg[1] == '-' ? arg.find('=') : std::string::npos; in Parse() 337 if (name.find("--no-") == 0) { in Parse() 349 while ((it = aliases_.find(name)) != aliases_.end() || in Parse() 351 (it = aliases_.find(name + '=')) != aliases_.end()) || in Parse() 355 (it = aliases_.find(name + " <arg>")) != aliases_.end())) { in Parse() 374 auto it = options_.find(name); in Parse()
|