/third_party/skia/third_party/externals/angle2/tools/android/modularization/convenience/ |
H A D | lookup_dep.py | 80 print(f'Could not find build target for class "{class_name}"') 195 index = target.find('_java__subjar') 198 index = target.find('_java__classes') 251 dollar_index = full_java_class.find('$')
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
H A D | VulkanInfo.cpp | 45 auto it = knownExts.find(extension.extensionName); in GatherInstanceExtensions() 94 auto it = knownLayers.find(layer.layerName); in GatherGlobalInfo() 204 auto it = knownExts.find(extension.extensionName); in GatherDeviceInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | CFGDiff.h | 121 auto It = DeleteChildren.find(BB); in ignoreChild() 125 return llvm::find(EdgesForBB, EdgeEnd) != EdgesForBB.end(); in ignoreChild() 132 auto It = InsertChildren.find(BB); in getAddedChildren()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | DDG.cpp | 242 if (PiBlockMap.find(&N) == PiBlockMap.end()) in getPiBlock() 244 auto *Pi = PiBlockMap.find(&N)->second; in getPiBlock() 245 assert(PiBlockMap.find(Pi) == PiBlockMap.end() && in getPiBlock()
|
H A D | DivergenceAnalysis.cpp | 146 if (DivergentLoops.find(Loop) != DivergentLoops.end()) in isTemporalDivergent() 408 return UniformOverrides.find(&V) != UniformOverrides.end(); in isAlwaysUniform() 412 return DivergentValues.find(&V) != DivergentValues.end(); in isDivergent()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | LoopVersioning.cpp | 161 auto Mapped = VMap.find(ClonedValue); in addPHINodes() 235 auto Group = PtrToGroup.find(Ptr); in annotateInstWithNoAlias() 244 auto NonAliasingScopeList = GroupToNonAliasingScopeList.find(Group->second); in annotateInstWithNoAlias()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/ |
H A D | InstrumentationMap.cpp | 38 auto I = FunctionIds.find(Addr); in getFunctionId() 45 auto I = FunctionAddresses.find(FuncId); in getFunctionAddr() 81 "Failed to find XRay instrumentation map.", in loadObj() 137 RelocMap::const_iterator R = Relocs.find(A); in loadObj()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceELFSection.cpp | 146 auto I = LocalSymbols.find(Name); in findSymbol() 149 I = GlobalSymbols.find(Name); in findSymbol() 197 StringToIndexType::const_iterator It = StringToIndexMap.find(Str); in getIndex()
|
/third_party/skia/third_party/externals/tint/src/transform/ |
H A D | decompose_strided_matrix.cc | 150 auto it = decomposed.find(access->Member()->Declaration()); in Run() 169 auto it = decomposed.find(access->Member()->Declaration()); in Run() 212 auto it = decomposed.find(access->Member()->Declaration()); in Run()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
H A D | MsgPackDocument.h | 207 MapTy::iterator find(DocNode Key) { return Map->find(Key); } in find() function in llvm::msgpack::MapDocNode 208 MapTy::iterator find(StringRef Key); 237 /// ability to find and create array and map elements. Does not currently cope
|
/third_party/protobuf/src/google/protobuf/io/ |
H A D | printer.cc | 78 substitutions_.find(varname); in GetSubstitutionRange() 154 variables.find(varname); in Print() 375 auto it = vars.find(var_name); in WriteVariable()
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | stringpiece.h | 366 stringpiece_ssize_type find(StringPiece s, size_type pos = 0) const; 367 stringpiece_ssize_type find(char c, size_type pos = 0) const; 373 return find(c, pos); in find_first_of()
|
H A D | stringpiece.cc | 101 return find(s, 0) != npos; in contains() 104 stringpiece_ssize_type StringPiece::find(StringPiece s, size_type pos) const { in find() function in google::protobuf::StringPiece 114 stringpiece_ssize_type StringPiece::find(char c, size_type pos) const { in find() function in google::protobuf::StringPiece
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | charconv_parse_test.cc | 54 std::string::size_type open_bracket_pos = s.find('['); in ExpectParsedFloat() 58 std::string::size_type close_bracket_pos = s.find(']'); in ExpectParsedFloat() 64 const std::string::size_type expected_characters_matched = s.find('$'); in ExpectParsedFloat()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
H A D | flat_hash_map_test.cc | 43 ABSL_RAW_CHECK(x.find(0) == x.end(), "x should not contain 0"); in BeforeMain() 44 auto it = x.find(1); in BeforeMain() 207 m.find(n); in TEST()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/ |
H A D | reflection_test.cc | 66 EXPECT_NE(all_flags.find("int_flag"), all_flags.end()); in TEST_F() 67 EXPECT_EQ(all_flags.find("bool_retired_flag"), all_flags.end()); in TEST_F() 68 EXPECT_EQ(all_flags.find("some_undefined_flag"), all_flags.end()); in TEST_F()
|
/third_party/spirv-tools/source/opt/ |
H A D | dominator_tree.cpp | 252 auto a_itr = nodes_.find(a); in ImmediateDominator() 268 nodes_.find(bb->id()); in GetOrInsertNode() 334 if (std::find(roots_.begin(), roots_.end(), first) == roots_.end()) in InitializeTree()
|
H A D | set_spec_constant_default_value_pass.cpp | 229 // Scan through all the annotation instructions to find 'OpDecorate SpecId' in Process() 271 auto iter = spec_id_to_value_str_.find(spec_id); in Process() 285 auto iter = spec_id_to_value_bit_pattern_.find(spec_id); in Process() 361 auto iter = spec_id_to_value->find(spec_id); in ParseDefaultValuesString()
|
/third_party/node/deps/v8/src/debug/ |
H A D | liveedit.cc | 185 auto it = buffer_.find(std::make_pair(i1, i2)); in get_cell() 669 auto it = vars.find(var->index()); in HasChangedScope() 698 DCHECK_EQ(position_to_new_literal.find(key), position_to_new_literal.end()); in MapLiterals() 711 auto it = position_to_new_literal.find(key); in MapLiterals() 721 if (change_state.find(literal) == change_state.end()) { in MapLiterals() 889 auto it = map_.find(id); in Lookup() 1097 auto change_it = changed.find(data->literal); in PatchScript() 1142 start_position_to_unchanged_id.find(inner_sfi.StartPosition()); in PatchScript() 1175 DCHECK_EQ(start_positions.find(sfi.StartPosition()), in PatchScript()
|
/third_party/python/Tools/stringbench/ |
H A D | stringbench.py | 138 #### same tests as 'in' but use 'find' 140 @bench('("A"*1000).find("A")', "early match, single character", 1000) 144 s1_find = s1.find 148 @bench('("A"*1000).find("B")', "no match, single character", 1000) 152 s1_find = s1.find 157 @bench('("AB"*1000).find("AB")', "early match, two characters", 1000) 161 s1_find = s1.find 165 @bench('("AB"*1000).find("BC")', "no match, two characters", 1000) 169 s1_find = s1.find 173 @bench('("AB"*1000).find("C [all...] |
/third_party/skia/src/core/ |
H A D | SkRemoteGlyphCache.cpp | 463 MaskSummary* summary = fSentGlyphs.find(packedID); in commonMaskLoop() 488 MaskSummary* summary = fSentGlyphs.find(packedID); in prepareForMaskDrawing() 495 MaskSummary* summary = fSentGlyphs.find(packedID); in prepareForMaskDrawing() 531 PathSummary* summary = fSentPaths.find(glyphID); in prepareForPathDrawing() 629 auto* data = fSerializedTypefaces.find(SkTypeface::UniqueID(tf)); in serializeTypeface() 675 auto it = fDescToRemoteStrike.find(&strike->getDescriptor()); in writeStrikeData() 737 auto it = fDescToRemoteStrike.find(&strikeSpec.descriptor()); in getOrCreateCache() 985 auto* tfPtr = fRemoteFontIdToTypeface.find(spec.typefaceID); in readStrikeData() 1068 auto* typeface = fRemoteFontIdToTypeface.find(wire.typefaceID); in addTypeface()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | RegionInfoImpl.h | 288 if (Succ != exit && visited->find(Succ) == visited->end()) in verifyWalk() 362 typename BBNodeMapT::const_iterator at = BBNodeMap.find(BB); in getBBNode() 583 DST *entrySuccs = &DF->find(entry)->second; in isRegion() 598 DST *exitSuccs = &DF->find(exit)->second; in isRegion() 604 if (exitSuccs->find(Succ) == exitSuccs->end()) in isRegion() 624 typename BBtoBBMap::iterator e = ShortCut->find(exit); in insertShortCut() 641 typename BBtoBBMap::iterator e = ShortCut->find(N->getBlock()); in getNextPostDom() 756 typename BBtoRegionMap::iterator it = BBtoRegion.find(BB); in buildRegionsTree() 820 typename BBtoRegionMap::const_iterator I = BBtoRegion.find(BB); in getRegionFor()
|
/third_party/skia/third_party/externals/dawn/src/tests/white_box/ |
H A D | D3D12DescriptorHeapTests.cpp | 240 EXPECT_TRUE(std::find(heaps.begin(), heaps.end(), heap) == heaps.end()); in TEST_P() 285 EXPECT_TRUE(std::find(heaps.begin(), heaps.end(), heap) == heaps.end()); in TEST_P() 316 EXPECT_TRUE(std::find(heaps.begin(), heaps.end(), heap) == heaps.end()); in TEST_P() 333 EXPECT_TRUE(std::find(heaps.begin(), heaps.end(), heap) != heaps.end()); in TEST_P() 358 EXPECT_TRUE(std::find(heaps.begin(), heaps.end(), heap) == heaps.end()); in TEST_P() 384 EXPECT_TRUE(std::find(heaps.begin(), heaps.end(), heap) == heaps.end()); in TEST_P() 409 EXPECT_TRUE(std::find(heaps.begin(), heaps.end(), heap) == heaps.end()); in TEST_P() 424 EXPECT_FALSE(std::find(heaps.begin(), heaps.end(), heap) == heaps.end()); in TEST_P() 975 EXPECT_TRUE(std::find(allocationPtrs.begin(), allocationPtrs.end(), in TEST_P()
|
/kernel/linux/linux-5.10/arch/alpha/lib/ |
H A D | ev6-stxncpy.S | 113 negq t8, t12 # E : find low bit set 155 and a0, 7, t0 # E : find dest misalignment 189 full source word. We can still find a zero at the end of it 217 cmpbge zero, t2, t8 # E : find nulls in second partial 340 and a0, 7, t4 # E : find dest misalignment 341 and a1, 7, t5 # E : find src misalignment
|
/kernel/linux/linux-6.6/arch/alpha/lib/ |
H A D | ev6-stxncpy.S | 113 negq t8, t12 # E : find low bit set 155 and a0, 7, t0 # E : find dest misalignment 189 full source word. We can still find a zero at the end of it 217 cmpbge zero, t2, t8 # E : find nulls in second partial 340 and a0, 7, t4 # E : find dest misalignment 341 and a1, 7, t5 # E : find src misalignment
|