HomeSort by: relevance | last modified time | path
    Searched defs:Find (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
STLAlgorithmModeling.cpp 29 void Find(CheckerContext &C, const CallExpr *CE, unsigned paramNum) const;
35 {{{"std", "find"}, 3}, &STLAlgorithmModeling::evalFind},
36 {{{"std", "find"}, 4}, &STLAlgorithmModeling::evalFind},
83 // std::find()-like functions either take their primary range in the first
93 Find(C, CE, 0);
100 Find(C, CE, 1);
107 void STLAlgorithmModeling::Find(CheckerContext &C, const CallExpr *CE,
CallAndMessageChecker.cpp 253 bool Find(const TypedValueRegion *R) {
263 if (Find(FR))
325 if (F.Find(D->getRegion())) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/FuzzMutate/
OpDescriptor.h 176 // TODO: For now we only find aggregates in BaseTypes. It might be better to
178 auto Find = None;
179 return {Pred, Find};
186 // TODO: For now we only find vectors in BaseTypes. It might be better to
  /src/external/apache2/llvm/dist/llvm/lib/Support/
DynamicLibrary.cpp 42 HandleList::iterator Find(void *Handle) { return find(Handles, Handle); }
45 return Handle == Process || Find(Handle) != Handles.end();
54 if (Find(Handle) != Handles.end()) {
183 StringMap<void *>::iterator i = ExplicitSymbols->find(SymbolName);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRFindingAction.cpp 10 /// Provides an action to find USR for the symbol at <offset>, as well as
68 std::vector<std::string> Find() {
196 if (USRSet.find(getUSRForDecl(
204 if (USRSet.find(getUSRForDecl(OverriddenMethod)) != USRSet.end())
222 return Finder.Find();
263 "clang-rename could not find symbol (offset %0)");
276 DiagnosticsEngine::Error, "clang-rename could not find symbol %0");
285 USRList.push_back(Finder.Find());
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
ordered_set.bench.cpp 105 struct Find : Base {
114 benchmark::DoNotOptimize(Set.find(K));
135 benchmark::DoNotOptimize(Set.find(K) != Set.end());
237 makeCartesianProductBenchmark<Find, AllHitTypes, AllAccessPattern>(
map.bench.cpp 731 State.SkipWithError("Did not find the existing element");
734 State.SkipWithError("Did find the non-existing element");
834 State.SkipWithError("Did not find the existing element");
837 State.SkipWithError("Did find the non-existing element");
850 struct Find : Base {
861 benchmark::DoNotOptimize(Map.find(K));
863 auto Itor = Map.find(K);
866 State.SkipWithError("Did not find the existing element");
869 State.SkipWithError("Did find the non-existing element");
905 State.SkipWithError("Did not find the existing element")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCSubtargetInfo.cpp 23 /// Find KV in array using binary search.
25 static const T *Find(StringRef S, ArrayRef<T> A) {
63 // Find feature in table.
65 Find(SubtargetFeatures::StripFlag(Feature), FeatureTable);
167 // Find CPU entry if CPU name is specified.
169 const SubtargetSubTypeKV *CPUEntry = Find(CPU, ProcDesc);
182 const SubtargetSubTypeKV *CPUEntry = Find(TuneCPU, ProcDesc);
268 // Find feature in table.
270 Find(SubtargetFeatures::StripFlag(Feature), ProcFeatures);
313 // Find entr
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86PreAMXConfig.cpp 293 assert(PosEnd != BB->end() && "Not find TileStore!");
319 bool Find = false;
330 Find = true;
333 return Find;
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Hexagon.cpp 326 auto Find = [&HTC] (const std::string &RootDir, const std::string &SubDir,
338 std::string Crt0SA = Find(RootDir, StartSubDir, "/crt0_standalone.o");
341 std::string Crt0 = Find(RootDir, StartSubDir, "/crt0.o");
345 ? Find(RootDir, StartSubDir + "/pic", "/initS.o")
346 : Find(RootDir, StartSubDir, "/init.o");
393 ? Find(RootDir, StartSubDir + "/pic", "/finiS.o")
394 : Find(RootDir, StartSubDir, "/fini.o");
473 if (llvm::find(RootDirs, TargetDir) == RootDirs.end())
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
Mips16ISelLowering.cpp 428 Mips16Libcall Find = { RTLIB::UNKNOWN_LIBCALL, S->getSymbol() };
431 std::end(HardFloatLibCalls), Find))
438 if (!IsPICCall && (Signature && (FuncInfo->StubsNeeded.find(Symbol) ==
470 Mips16Libcall Find = { RTLIB::UNKNOWN_LIBCALL,
474 std::end(HardFloatLibCalls), Find))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp 225 /// index, and tries to find a constant integer that can be hoisted to the
245 static int64_t Find(Value *Idx, GetElementPtrInst *GEP,
267 APInt find(Value *V, bool SignExtended, bool ZeroExtended, bool NonNegative);
275 /// index I' according to UserChain produced by function "find".
326 /// index is "a * b + (c + 5)". After running function find, UserChain[0] will
413 /// NeedsExtraction indicates whether we successfully find a non-zero constant
448 /// Find the closest dominator of <Dominatee> that is equivalent to <Key>.
576 APInt ConstantOffset = find(BO->getOperand(0), SignExtended, ZeroExtended,
589 ConstantOffset = find(BO->getOperand(1), SignExtended, ZeroExtended,
603 APInt ConstantOffsetExtractor::find(Value *V, bool SignExtended function in class:ConstantOffsetExtractor
    [all...]

Completed in 146 milliseconds