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

123

/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCSubtargetInfo.cpp96 const SubtargetInfoKV *Found = local
98 if (Found == ProcSchedModels+NumProcs || StringRef(Found->Key) != CPU) {
104 assert(Found->Value && "Missing processor SchedModel value");
105 return (const MCSchedModel *)Found->Value;
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp303 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
305 LookupName(Found, S);
306 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
308 if (!Found.isSingleResult())
311 NamedDecl *Result = Found.getFoundDecl();
323 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
339 Found.setContextRange(SS.getRange());
353 LookupQualifiedName(Found, LookupCtx);
357 LookupName(Found, S);
359 Found
[all...]
H A DSemaAccess.cpp1542 DeclAccessPair Found) {
1545 Found.getAccess() == AS_public)
1549 Found, QualType());
1558 DeclAccessPair Found) {
1560 Found.getAccess() == AS_public)
1568 Found, BaseType);
1697 DeclAccessPair Found,
1701 Found.getAccess() == AS_public)
1704 AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found,
1718 DeclAccessPair Found) {
1541 CheckUnresolvedLookupAccess(UnresolvedLookupExpr *E, DeclAccessPair Found) argument
1557 CheckUnresolvedMemberAccess(UnresolvedMemberExpr *E, DeclAccessPair Found) argument
1694 CheckAllocationAccess(SourceLocation OpLoc, SourceRange PlacementRange, CXXRecordDecl *NamingClass, DeclAccessPair Found, bool Diagnose) argument
1715 CheckMemberOperatorAccess(SourceLocation OpLoc, Expr *ObjectExpr, Expr *ArgExpr, DeclAccessPair Found) argument
1773 CheckAddressOfMemberAccess(Expr *OvlExpr, DeclAccessPair Found) argument
[all...]
H A DSemaLookup.cpp321 assert(ResultKind != Found || Decls.size() == 1);
464 ResultKind = LookupResult::Found;
658 bool Found = false; local
671 Found = true;
675 if (!Found && DC->isTranslationUnit() && LookupBuiltin(S, R))
682 return Found;
690 return Found;
704 Found = true;
742 Found = true;
746 return Found;
757 bool Found = LookupDirect(S, R, NS); local
894 bool Found = false; local
1029 bool Found = false; local
1331 bool Found = false; local
1701 DeclContext::lookup_iterator Found = Paths->front().Decls.begin(); local
2261 NamedDecl *Found = (*Op)->getUnderlyingDecl(); local
[all...]
H A DSemaTemplate.cpp244 void Sema::LookupTemplateName(LookupResult &Found, argument
264 Found.clear();
285 LookupQualifiedName(Found, LookupCtx);
286 if (!ObjectType.isNull() && Found.empty()) {
296 if (S) LookupName(Found, S);
307 LookupName(Found, S);
313 if (Found.empty() && !isDependent) {
315 DeclarationName Name = Found.getLookupName();
316 Found.clear();
323 if (TypoCorrection Corrected = CorrectTypo(Found
[all...]
H A DSemaExprCXX.cpp186 LookupResult Found(*this, &II, NameLoc, LookupOrdinaryName);
191 Found.clear();
193 LookupQualifiedName(Found, LookupCtx);
195 LookupName(Found, S);
200 if (Found.isAmbiguous())
203 if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) {
223 if (ClassTemplateDecl *Template = Found.getAsSingle<ClassTemplateDecl>()) {
1978 LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName);
1980 LookupQualifiedName(Found, RD);
1982 if (Found
2556 DeclAccessPair Found; local
[all...]
H A DSemaTemplateInstantiateDecl.cpp287 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); local
288 if (!Found.empty()) {
289 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Found.front());
840 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); local
841 if (!Found.empty()) {
842 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(Found.front());
1005 DeclContext::lookup_result Found local
1007 if (Found.empty())
1011 = dyn_cast<ClassTemplateDecl>(Found.front());
3541 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found local
3649 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName()); local
[all...]
/freebsd-10.0-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.cpp1062 bool Found = (MOReg == Reg); local
1063 if (!Found && TRI && isPhys &&
1066 Found = TRI->regsOverlap(MOReg, Reg);
1068 Found = TRI->isSubRegister(MOReg, Reg);
1070 if (Found && (!isDead || MO.isDead()))
1662 bool Found = false; local
1673 if (!Found) {
1681 Found = true;
1705 if (!Found && AddIfNotFound) {
1712 return Found;
1735 bool Found = false; local
[all...]
H A DLiveIntervalAnalysis.cpp675 bool Found = false;
681 if (!Found) {
685 Found = true;
690 return Found;
695 return Found;
699 return Found;
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DTriple.cpp372 bool Found[4]; local
373 Found[0] = Arch != UnknownArch;
374 Found[1] = Vendor != UnknownVendor;
375 Found[2] = OS != UnknownOS;
376 Found[3] = Environment != UnknownEnvironment;
381 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
382 if (Found[Pos])
387 if (Idx < array_lengthof(Found) && Found[Idx])
429 while (i < array_lengthof(Found)
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/components/utilities/
H A Dutpredef.c431 UINT32 Found; local
436 Found = 0;
444 Found++;
450 return (Found);
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DLookup.h43 Found, enumerator in enum:clang::LookupResult::LookupResultKind
246 return getResultKind() == Found;
371 ResultKind = Found;
378 ResultKind = Found;
414 ResultKind = Found;
430 if (getResultKind() != Found) return 0;
440 assert(getResultKind() == Found
453 return getResultKind() == Found && isa<TagDecl>(getFoundDecl());
/freebsd-10.0-release/tools/regression/geom_uzip/etalon/
H A Detalon.txt8 (from Through the Looking-Glass and What Alice Found There, 1872)
/freebsd-10.0-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-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DDiagnosticIDs.cpp149 const StaticDiagInfoRec *Found = &StaticDiagInfo[ID + Offset];
153 if (Found->DiagID != DiagID)
155 return Found;
568 const WarningOption *Found = local
571 if (Found == OptionTable + OptionTableSize ||
572 Found->getName() != Group)
575 getDiagnosticsInGroup(Found, Diags);
/freebsd-10.0-release/contrib/llvm/tools/llvm-readobj/
H A DStreamWriter.h83 bool Found = false; local
87 Found = true;
92 if (Found) {
/freebsd-10.0-release/sys/contrib/dev/acpica/components/namespace/
H A Dnsxfeval.c708 BOOLEAN Found; local
777 Found = FALSE;
782 /* Found a matching CID */
784 Found = TRUE;
790 if (!Found)
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DMicrosoftMangle.cpp423 BackRefMap::iterator Found; local
431 Found = NameBackReferences.find(BackReferenceKey);
433 if (!UseNameBackReferences || Found == NameBackReferences.end()) {
440 Out << Found->second;
710 BackRefMap::iterator Found; local
712 Found = NameBackReferences.find(key);
713 if (!UseNameBackReferences || Found == NameBackReferences.end()) {
720 Out << Found->second;
970 ArgBackRefMap::iterator Found = TypeBackReferences.find(TypePtr); local
972 if (Found
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DFrontendAction.cpp246 bool Found = false; local
255 Found = true;
260 if (!Found) {
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp718 bool Found = false; local
720 E = CodeSlabs.end(); I != E && !Found; ++I) {
723 Found = (Start <= (char*)FreeRange && (char*)FreeRange < End);
725 if (!Found) {
753 Err << "Found free header at " << Hdr << " that is not in free list.";
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DModuleMap.cpp305 Module *Found = KnownDir->second; local
306 if (!Found->isAvailable())
311 Module *UmbrellaModule = Found;
322 Found = lookupModuleQualified(Name, Found);
323 if (!Found)
325 if (!Found->isAvailable())
334 Found = lookupModuleQualified(Name, Found);
335 if (!Found)
[all...]
/freebsd-10.0-release/contrib/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp645 unsigned Found = ~0u; local
648 Found = r;
652 if (Found == ~0u) {
653 Found = Rows.size();
654 Rows.resize(Found + 1);
658 RowMap.push_back(Found);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DTargetInfo.cpp222 const Type *Found = 0; local
233 if (Found)
238 Found = isSingleElementStruct(i->getType(), Context);
239 if (!Found)
256 if (Found)
267 Found = FT.getTypePtr();
269 Found = isSingleElementStruct(FT, Context);
270 if (!Found)
277 if (Found && Context.getTypeSize(Found) !
[all...]
/freebsd-10.0-release/contrib/ofed/management/opensm/opensm/
H A Dosm_port.c235 goto Found;
242 Found:

Completed in 413 milliseconds

123