Searched refs:Found (Results 1 - 25 of 59) sorted by relevance

123

/freebsd-9.3-release/contrib/llvm/lib/MC/
H A DMCSubtargetInfo.cpp99 const SubtargetInfoKV *Found = local
101 if (Found == ProcSchedModels+NumProcs || StringRef(Found->Key) != CPU) {
107 assert(Found->Value && "Missing processor SchedModel value");
108 return (const MCSchedModel *)Found->Value;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp293 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
295 LookupName(Found, S);
296 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
298 if (!Found.isSingleResult())
301 NamedDecl *Result = Found.getFoundDecl();
313 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
329 Found.setContextRange(SS.getRange());
343 LookupQualifiedName(Found, LookupCtx);
347 LookupName(Found, S);
349 Found
[all...]
H A DSemaAccess.cpp1543 DeclAccessPair Found) {
1546 Found.getAccess() == AS_public)
1550 Found, QualType());
1559 DeclAccessPair Found) {
1561 Found.getAccess() == AS_public)
1569 Found, BaseType);
1698 DeclAccessPair Found,
1702 Found.getAccess() == AS_public)
1705 AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found,
1717 DeclAccessPair Found) {
1542 CheckUnresolvedLookupAccess(UnresolvedLookupExpr *E, DeclAccessPair Found) argument
1558 CheckUnresolvedMemberAccess(UnresolvedMemberExpr *E, DeclAccessPair Found) argument
1695 CheckAllocationAccess(SourceLocation OpLoc, SourceRange PlacementRange, CXXRecordDecl *NamingClass, DeclAccessPair Found, bool Diagnose) argument
1715 CheckMemberAccess(SourceLocation UseLoc, CXXRecordDecl *NamingClass, DeclAccessPair Found) argument
1731 CheckMemberOperatorAccess(SourceLocation OpLoc, Expr *ObjectExpr, Expr *ArgExpr, DeclAccessPair Found) argument
1789 CheckAddressOfMemberAccess(Expr *OvlExpr, DeclAccessPair Found) argument
[all...]
H A DSemaLookup.cpp322 assert(ResultKind != Found || Decls.size() == 1);
474 ResultKind = LookupResult::Found;
676 bool Found = false; local
689 Found = true;
693 if (!Found && DC->isTranslationUnit() && LookupBuiltin(S, R))
700 return Found;
708 return Found;
722 Found = true;
760 Found = true;
764 return Found;
775 bool Found = LookupDirect(S, R, NS); local
938 bool Found = false; local
1103 bool Found = false; local
1495 bool Found = false; local
1863 DeclContext::lookup_iterator Found = Paths->front().Decls.begin(); local
2415 NamedDecl *Found = (*Op)->getUnderlyingDecl(); local
[all...]
H A DSemaTemplateInstantiateDecl.cpp305 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); local
306 if (!Found.empty()) {
307 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Found.front());
783 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); local
784 if (!Found.empty()) {
785 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(Found.front());
948 DeclContext::lookup_result Found local
950 if (Found.empty())
954 = dyn_cast<ClassTemplateDecl>(Found.front());
981 DeclContext::lookup_result Found local
1031 DeclContext::lookup_result Found = Owner->lookup(VarTemplate->getDeclName()); local
2330 DeclContext::lookup_result Found local
4360 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found local
4491 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName()); local
[all...]
H A DSemaExprCXX.cpp188 LookupResult Found(*this, &II, NameLoc, LookupOrdinaryName);
193 Found.clear();
195 LookupQualifiedName(Found, LookupCtx);
197 LookupName(Found, S);
202 if (Found.isAmbiguous())
205 if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) {
225 if (ClassTemplateDecl *Template = Found.getAsSingle<ClassTemplateDecl>()) {
2139 LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName);
2141 LookupQualifiedName(Found, RD);
2143 if (Found
2709 DeclAccessPair Found; local
[all...]
H A DSemaTemplate.cpp246 void Sema::LookupTemplateName(LookupResult &Found, argument
267 Found.clear();
288 LookupQualifiedName(Found, LookupCtx);
289 if (!ObjectType.isNull() && Found.empty()) {
299 if (S) LookupName(Found, S);
310 LookupName(Found, S);
316 if (Found.empty() && !isDependent) {
318 DeclarationName Name = Found.getLookupName();
319 Found.clear();
326 if (TypoCorrection Corrected = CorrectTypo(Found
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DProcessImplicitDefs.cpp103 bool Found = false; local
113 Found = true;
117 if (Found)
122 if (Found) {
H A DMachineInstr.cpp1065 bool Found = (MOReg == Reg); local
1066 if (!Found && TRI && isPhys &&
1069 Found = TRI->regsOverlap(MOReg, Reg);
1071 Found = TRI->isSubRegister(MOReg, Reg);
1073 if (Found && (!isDead || MO.isDead()))
1641 bool Found = false; local
1652 if (!Found) {
1660 Found = true;
1684 if (!Found && AddIfNotFound) {
1691 return Found;
1714 bool Found = false; local
[all...]
H A DLiveIntervalAnalysis.cpp674 bool Found = false;
680 if (!Found) {
684 Found = true;
689 return Found;
694 return Found;
698 return Found;
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DTriple.cpp377 bool Found[4]; local
378 Found[0] = Arch != UnknownArch;
379 Found[1] = Vendor != UnknownVendor;
380 Found[2] = OS != UnknownOS;
381 Found[3] = Environment != UnknownEnvironment;
386 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
387 if (Found[Pos])
392 if (Idx < array_lengthof(Found) && Found[Idx])
434 while (i < array_lengthof(Found)
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp73 const DynTypedMatcher *Found = NULL; local
76 if (Found)
78 Found = &Matchers[i];
81 if (Found)
82 Ops.constructFrom(*Found);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DLookup.h43 Found, enumerator in enum:clang::LookupResult::LookupResultKind
249 return getResultKind() == Found;
377 ResultKind = Found;
384 ResultKind = Found;
428 ResultKind = Found;
444 if (getResultKind() != Found) return 0;
454 assert(getResultKind() == Found
467 return getResultKind() == Found && isa<TagDecl>(getFoundDecl());
/freebsd-9.3-release/tools/regression/geom_uzip/etalon/
H A Detalon.txt8 (from Through the Looking-Glass and What Alice Found There, 1872)
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86FixupLEAs.cpp201 bool Found; local
202 Found = getPreviousInstr(CurInst, MFI);
203 while( Found && I != CurInst) {
212 Found = getPreviousInstr(CurInst, MFI);
/freebsd-9.3-release/sys/contrib/dev/acpica/namespace/
H A Dnsxfeval.c597 BOOLEAN Found; local
666 Found = FALSE;
671 /* Found a matching CID */
673 Found = TRUE;
679 if (!Found)
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DDiagnosticIDs.cpp145 const StaticDiagInfoRec *Found = &StaticDiagInfo[ID + Offset];
149 if (Found->DiagID != DiagID)
151 return Found;
546 const WarningOption *Found = local
549 if (Found == OptionTable + OptionTableSize ||
550 Found->getName() != Group)
553 ::getDiagnosticsInGroup(Found, Diags);
/freebsd-9.3-release/contrib/llvm/tools/llvm-readobj/
H A DStreamWriter.h83 bool Found = false; local
87 Found = true;
92 if (Found) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DFrontendAction.cpp246 bool Found = false; local
255 Found = true;
260 if (!Found) {
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp698 bool Found = false; local
700 E = CodeSlabs.end(); I != E && !Found; ++I) {
703 Found = (Start <= (char*)FreeRange && (char*)FreeRange < End);
705 if (!Found) {
733 Err << "Found free header at " << Hdr << " that is not in free list.";
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DMicrosoftMangle.cpp481 BackRefMap::iterator Found; local
489 Found = NameBackReferences.find(BackReferenceKey);
491 if (!UseNameBackReferences || Found == NameBackReferences.end()) {
498 Out << Found->second;
788 BackRefMap::iterator Found; local
790 Found = NameBackReferences.find(Name);
791 if (!UseNameBackReferences || Found == NameBackReferences.end()) {
798 Out << Found->second;
1102 ArgBackRefMap::iterator Found = TypeBackReferences.find(TypePtr); local
1104 if (Found
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DModuleMap.cpp331 Module *Found = KnownDir->second; local
332 if (!Found->isAvailable())
337 Module *UmbrellaModule = Found;
348 Found = lookupModuleQualified(Name, Found);
349 if (!Found)
351 if (!Found->isAvailable())
360 Found = lookupModuleQualified(Name, Found);
361 if (!Found)
[all...]
/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp649 unsigned Found = ~0u; local
652 Found = r;
656 if (Found == ~0u) {
657 Found = Rows.size();
658 Rows.resize(Found + 1);
662 RowMap.push_back(Found);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DTargetInfo.cpp238 const Type *Found = 0; local
249 if (Found)
254 Found = isSingleElementStruct(i->getType(), Context);
255 if (!Found)
272 if (Found)
283 Found = FT.getTypePtr();
285 Found = isSingleElementStruct(FT, Context);
286 if (!Found)
293 if (Found && Context.getTypeSize(Found) !
[all...]
/freebsd-9.3-release/contrib/ofed/management/opensm/opensm/
H A Dosm_port.c235 goto Found;
242 Found:

Completed in 498 milliseconds

123