Searched defs:Found (Results 1 - 25 of 36) sorted by relevance

12

/external/clang/tools/diagtool/
H A DTreeView.cpp61 const GroupRecord *Found = local
64 if (Found == AllGroups.end() || Found->getName() != RootGroup) {
69 printGroup(out, *Found, FlagsOnly);
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.h55 bool Found = false; local
57 Finder.addMatcher(AMatcher, new VerifyMatch(0, &Found));
64 if (!Found && ExpectMatch) {
67 } else if (Found && !ExpectMatch) {
69 << "Found unexpected match in \"" << Code << "\"";
/external/llvm/lib/CodeGen/
H A DProcessImplicitDefs.cpp103 bool Found = false; local
113 Found = true;
117 if (Found)
122 if (Found) {
H A DRegAllocFast.cpp803 bool Found = false; local
818 Found = true;
822 if (!Found)
H A DTailDuplication.cpp159 bool Found = false; local
163 Found = true;
167 if (!Found) {
/external/llvm/lib/MC/
H A DMCSubtargetInfo.cpp87 const SubtargetInfoKV *Found = local
89 if (Found == ProcSchedModel+NumProcs || StringRef(Found->Key) != CPU) {
95 assert(Found->Value && "Missing processor SchedModel value");
96 return (const MCSchedModel *)Found->Value;
/external/clang/unittests/Tooling/
H A DTestVisitor.h187 : Candidate(Name, LineNumber, ColumnNumber), Found(false) {}
191 EXPECT_TRUE(!Found);
192 Found = true;
193 } else if (!Found && Candidate.PartiallyMatches(Name, Location)) {
201 EXPECT_TRUE(Found)
209 bool Found; member in struct:clang::ExpectedLocationVisitor::ExpectedMatch
/external/llvm/lib/Support/
H A DTriple.cpp380 bool Found[4]; local
381 Found[0] = Arch != UnknownArch;
382 Found[1] = Vendor != UnknownVendor;
383 Found[2] = OS != UnknownOS;
384 Found[3] = Environment != UnknownEnvironment;
389 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
390 if (Found[Pos])
395 if (Idx < array_lengthof(Found) && Found[Idx])
437 while (i < array_lengthof(Found)
[all...]
/external/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c229 LLVMValueRef Found; local
230 if (LLVMFindFunction(EE, String_val(Name), &Found))
233 Field(Option, 0) = Val_op(Found);
/external/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp108 bool Found = InstIt->second.erase(Val); local
109 assert(Found && "Invalid reverse map!"); (void)Found;
/external/clang/lib/Basic/
H A DDiagnosticIDs.cpp115 const StaticDiagInfoRec *Found =
117 if (Found == StaticDiagInfo + StaticDiagInfoSize ||
118 Found->DiagID != DiagID)
121 return Found;
536 const WarningOption *Found = local
539 if (Found == OptionTable + OptionTableSize ||
540 Found->getName() != Group)
543 getDiagnosticsInGroup(Found, Diags);
/external/clang/include/clang/Sema/
H A DLookup.h43 Found, enumerator in enum:clang::LookupResult::LookupResultKind
237 return getResultKind() == Found;
362 ResultKind = Found;
369 ResultKind = Found;
405 ResultKind = Found;
421 if (getResultKind() != Found) return 0;
431 assert(getResultKind() == Found
444 return getResultKind() == Found && isa<TagDecl>(getFoundDecl());
/external/clang/lib/AST/
H A DMicrosoftMangle.cpp436 BackRefMap::iterator Found; local
444 Found = NameBackReferences.find(BackReferenceKey);
446 if (!UseNameBackReferences || Found == NameBackReferences.end()) {
453 Out << Found->second;
695 BackRefMap::iterator Found; local
697 Found = NameBackReferences.find(key);
698 if (!UseNameBackReferences || Found == NameBackReferences.end()) {
705 Out << Found->second;
931 ArgBackRefMap::iterator Found = TypeBackReferences.find(TypePtr); local
933 if (Found
[all...]
H A DDeclCXX.cpp362 SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found; local
375 Found.push_back(std::make_pair(
382 GetBestOverloadCandidateSimple(Found));
398 SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found; local
436 Found.push_back(std::make_pair(const_cast<CXXMethodDecl *>(Method), Quals));
440 return GetBestOverloadCandidateSimple(Found);
H A DASTImporter.cpp2228 Decl *Found = FoundDecls[I]; local
2229 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) {
2231 Found = Tag->getDecl();
2234 if (EnumDecl *FoundEnum = dyn_cast<EnumDecl>(Found)) {
2314 Decl *Found = FoundDecls[I]; local
2315 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) {
2317 Found = Tag->getDecl();
2320 if (RecordDecl *FoundRecord = dyn_cast<RecordDecl>(Found)) {
3736 Decl *Found = FoundDecls[I]; local
3738 = dyn_cast<ClassTemplateDecl>(Found)) {
[all...]
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp122 Module *Found = *I; local
123 if (Found == M) {
319 continue; // Found a sentinal value, ignore.
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp710 bool Found = false; local
712 E = CodeSlabs.end(); I != E && !Found; ++I) {
715 Found = (Start <= (char*)FreeRange && (char*)FreeRange < End);
717 if (!Found) {
745 Err << "Found free header at " << Hdr << " that is not in free list.";
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp207 const Type *Found = 0; local
218 if (Found)
223 Found = isSingleElementStruct(i->getType(), Context);
224 if (!Found)
241 if (Found)
252 Found = FT.getTypePtr();
254 Found = isSingleElementStruct(FT, Context);
255 if (!Found)
262 if (Found && Context.getTypeSize(Found) !
[all...]
/external/clang/lib/Lex/
H A DModuleMap.cpp206 Module *Found = KnownDir->second; local
207 if (!Found->isAvailable())
212 Module *UmbrellaModule = Found;
220 Found = lookupModuleQualified(Name, Found);
221 if (!Found)
223 if (!Found->isAvailable())
229 Found = lookupModuleQualified(Name, Found);
230 if (!Found)
[all...]
/external/clang/lib/Sema/
H A DSemaAccess.cpp1489 DeclAccessPair Found) {
1492 Found.getAccess() == AS_public)
1496 Found, QualType());
1505 DeclAccessPair Found) {
1507 Found.getAccess() == AS_public)
1515 Found, BaseType);
1644 DeclAccessPair Found,
1648 Found.getAccess() == AS_public)
1651 AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found,
1665 DeclAccessPair Found) {
1488 CheckUnresolvedLookupAccess(UnresolvedLookupExpr *E, DeclAccessPair Found) argument
1504 CheckUnresolvedMemberAccess(UnresolvedMemberExpr *E, DeclAccessPair Found) argument
1641 CheckAllocationAccess(SourceLocation OpLoc, SourceRange PlacementRange, CXXRecordDecl *NamingClass, DeclAccessPair Found, bool Diagnose) argument
1662 CheckMemberOperatorAccess(SourceLocation OpLoc, Expr *ObjectExpr, Expr *ArgExpr, DeclAccessPair Found) argument
1720 CheckAddressOfMemberAccess(Expr *OvlExpr, DeclAccessPair Found) argument
[all...]
H A DAnalysisBasedWarnings.cpp692 bool Found = FallthroughStmts.erase(Stmt); local
693 assert(Found);
694 (void)Found;
H A DSemaCast.cpp1883 DeclAccessPair Found; local
1887 Found);
H A DSemaTemplateInstantiate.cpp2554 LocalDeclsMap::iterator Found = Current->LocalDecls.find(CheckD); local
2555 if (Found != Current->LocalDecls.end())
2556 return &Found->second;
H A DSemaTemplateInstantiateDecl.cpp231 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); local
232 if (Found.first != Found.second) {
233 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
731 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); local
732 if (Found.first != Found.second) {
733 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
896 DeclContext::lookup_result Found local
898 if (Found
3393 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found local
3500 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName()); local
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1023 bool Found = false; local
1027 Found = true;
1031 if (!Found) {
1303 break; // Found a null terminator, skip the rest.

Completed in 7159 milliseconds

12