/external/clang/lib/Sema/ |
D | SemaCXXScopeSpec.cpp | 303 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(), in FindFirstQualifierInScope() local 305 LookupName(Found, S); in FindFirstQualifierInScope() 306 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet"); in FindFirstQualifierInScope() 308 if (!Found.isSingleResult()) in FindFirstQualifierInScope() 311 NamedDecl *Result = Found.getFoundDecl(); in FindFirstQualifierInScope() 323 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName); in isNonTypeNestedNameSpecifier() local 339 Found.setContextRange(SS.getRange()); in isNonTypeNestedNameSpecifier() 353 LookupQualifiedName(Found, LookupCtx); in isNonTypeNestedNameSpecifier() 357 LookupName(Found, S); in isNonTypeNestedNameSpecifier() 359 Found.suppressDiagnostics(); in isNonTypeNestedNameSpecifier() [all …]
|
D | SemaLookup.cpp | 306 assert(ResultKind != Found || Decls.size() == 1); in sanity() 437 ResultKind = LookupResult::Found; in resolveKind() 622 bool Found = false; in LookupDirect() local 634 Found = true; in LookupDirect() 638 if (!Found && DC->isTranslationUnit() && LookupBuiltin(S, R)) in LookupDirect() 645 return Found; in LookupDirect() 653 return Found; in LookupDirect() 668 Found = true; in LookupDirect() 706 Found = true; in LookupDirect() 710 return Found; in LookupDirect() [all …]
|
D | SemaAccess.cpp | 1397 DeclAccessPair Found) { in CheckUnresolvedLookupAccess() argument 1400 Found.getAccess() == AS_public) in CheckUnresolvedLookupAccess() 1404 Found, QualType()); in CheckUnresolvedLookupAccess() 1413 DeclAccessPair Found) { in CheckUnresolvedMemberAccess() argument 1415 Found.getAccess() == AS_public) in CheckUnresolvedMemberAccess() 1423 Found, BaseType); in CheckUnresolvedMemberAccess() 1531 DeclAccessPair Found, in CheckAllocationAccess() argument 1535 Found.getAccess() == AS_public) in CheckAllocationAccess() 1538 AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found, in CheckAllocationAccess() 1552 DeclAccessPair Found) { in CheckMemberOperatorAccess() argument [all …]
|
D | SemaTemplateInstantiateDecl.cpp | 212 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); in VisitTypeAliasTemplateDecl() local 213 if (Found.first != Found.second) { in VisitTypeAliasTemplateDecl() 214 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first); in VisitTypeAliasTemplateDecl() 736 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); in VisitClassTemplateDecl() local 737 if (Found.first != Found.second) { in VisitClassTemplateDecl() 738 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first); in VisitClassTemplateDecl() 894 DeclContext::lookup_result Found in VisitClassTemplatePartialSpecializationDecl() local 896 if (Found.first == Found.second) in VisitClassTemplatePartialSpecializationDecl() 900 = dyn_cast<ClassTemplateDecl>(*Found.first); in VisitClassTemplatePartialSpecializationDecl() 3051 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found in FindInstantiatedDecl() local [all …]
|
D | SemaTemplate.cpp | 235 void Sema::LookupTemplateName(LookupResult &Found, in LookupTemplateName() argument 269 LookupQualifiedName(Found, LookupCtx); in LookupTemplateName() 271 if (!ObjectType.isNull() && Found.empty()) { in LookupTemplateName() 281 if (S) LookupName(Found, S); in LookupTemplateName() 291 LookupName(Found, S); in LookupTemplateName() 294 if (Found.empty() && !isDependent) { in LookupTemplateName() 296 DeclarationName Name = Found.getLookupName(); in LookupTemplateName() 297 Found.clear(); in LookupTemplateName() 298 if (TypoCorrection Corrected = CorrectTypo(Found.getLookupNameInfo(), in LookupTemplateName() 299 Found.getLookupKind(), S, &SS, in LookupTemplateName() [all …]
|
/external/llvm/lib/Support/ |
D | Triple.cpp | 413 bool Found[4]; in normalize() local 414 Found[0] = Arch != UnknownArch; in normalize() 415 Found[1] = Vendor != UnknownVendor; in normalize() 416 Found[2] = OS != UnknownOS; in normalize() 417 Found[3] = Environment != UnknownEnvironment; in normalize() 422 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) { in normalize() 423 if (Found[Pos]) in normalize() 428 if (Idx < array_lengthof(Found) && Found[Idx]) in normalize() 471 while (i < array_lengthof(Found) && Found[i]) ++i; in normalize() 491 while (++i < array_lengthof(Found) && Found[i]) in normalize() [all …]
|
/external/llvm/lib/MC/ |
D | MCSubtargetInfo.cpp | 85 const SubtargetInfoKV *Found = in getInstrItineraryForCPU() local 87 if (Found == ProcItins+NumProcs || StringRef(Found->Key) != CPU) { in getInstrItineraryForCPU() 95 (InstrItinerary *)Found->Value); in getInstrItineraryForCPU()
|
/external/clang/lib/Basic/ |
D | DiagnosticIDs.cpp | 171 const StaticDiagInfoRec *Found = in GetDiagInfo() local 173 if (Found == StaticDiagInfo + StaticDiagInfoSize || in GetDiagInfo() 174 Found->DiagID != DiagID) in GetDiagInfo() 177 return Found; in GetDiagInfo() 274 const StaticDiagNameIndexRec *Found = in getIdFromName() local 276 if (Found == StaticDiagNameIndexEnd || in getIdFromName() 277 Found->getName() != Name) in getIdFromName() 280 return Found->DiagID; in getIdFromName() 616 const WarningOption *Found = in setDiagnosticGroupMapping() local 619 if (Found == OptionTable + OptionTableSize || in setDiagnosticGroupMapping() [all …]
|
/external/clang/include/clang/Sema/ |
D | Lookup.h | 43 Found, enumerator 231 return getResultKind() == Found; in isSingleResult() 344 ResultKind = Found; in addDecl() 351 ResultKind = Found; in addAllDecls() 387 ResultKind = Found; in resolveKindAfterFilter() 403 if (getResultKind() != Found) return 0; in getAsSingle() 413 assert(getResultKind() == Found in getFoundDecl() 426 return getResultKind() == Found && isa<TagDecl>(getFoundDecl()); in isSingleTagDecl()
|
/external/freetype/src/psnames/ |
D | pstables.h | 4032 goto Found; in ft_get_adobe_glyph_index() 4041 Found: in ft_get_adobe_glyph_index()
|
/external/freetype/src/sfnt/ |
D | ttkern.c | 251 goto Found; in tt_face_get_kerning() 272 goto Found; in tt_face_get_kerning() 291 Found: in tt_face_get_kerning()
|
/external/llvm/lib/CodeGen/ |
D | MachineInstr.cpp | 926 bool Found = (MOReg == Reg); in findRegisterDefOperandIdx() local 927 if (!Found && TRI && isPhys && in findRegisterDefOperandIdx() 930 Found = TRI->regsOverlap(MOReg, Reg); in findRegisterDefOperandIdx() 932 Found = TRI->isSubRegister(MOReg, Reg); in findRegisterDefOperandIdx() 934 if (Found && (!isDead || MO.isDead())) in findRegisterDefOperandIdx() 1533 bool Found = false; in addRegisterKilled() local 1544 if (!Found) { in addRegisterKilled() 1552 Found = true; in addRegisterKilled() 1576 if (!Found && AddIfNotFound) { in addRegisterKilled() 1583 return Found; in addRegisterKilled() [all …]
|
/external/chromium/net/data/url_request_unittest/ |
D | redirect-to-invalid-url.html.mock-http-headers | 1 HTTP/1.1 302 Found
|
/external/webkit/Source/cmake/ |
D | FindICU.cmake | 67 MESSAGE(STATUS "Found ICU header files in ${ICU_INCLUDE_DIRS}") 68 MESSAGE(STATUS "Found ICU libraries: ${ICU_LIBRARIES}")
|
/external/pcre/cmake/ |
D | FindPackageHandleStandardArgs.cmake | 15 # here a message "Found LibXml2: /usr/lib/libxml2.so" will be printed out. 47 MESSAGE(STATUS "Found ${_NAME}: ${${_VAR1}}")
|
/external/llvm/test/Assembler/ |
D | 2003-05-21-MalformedShiftCrash.ll | 1 ; Found by inspection of the code
|
D | 2003-05-21-MalformedStructCrash.ll | 1 ; Found by inspection of the code
|
/external/llvm/bindings/ocaml/executionengine/ |
D | executionengine_ocaml.c | 226 LLVMValueRef Found; in llvm_ee_find_function() local 227 if (LLVMFindFunction(EE, String_val(Name), &Found)) in llvm_ee_find_function() 230 Field(Option, 0) = Val_op(Found); in llvm_ee_find_function()
|
/external/webkit/LayoutTests/http/tests/appcache/ |
D | foreign-fallback-expected.txt | 4 The frame below should display a Not Found error - the fallback entry is foreign, so it shouldn't b…
|
/external/e2fsprogs/tests/f_bad_local_jnl/ |
D | expect.1 | 1 Found invalid V2 journal superblock fields (from V1 journal).
|
/external/llvm/lib/ExecutionEngine/JIT/ |
D | JITMemoryManager.cpp | 646 bool Found = false; in CheckInvariants() local 648 E = CodeSlabs.end(); I != E && !Found; ++I) { in CheckInvariants() 651 Found = (Start <= (char*)FreeRange && (char*)FreeRange < End); in CheckInvariants() 653 if (!Found) { in CheckInvariants()
|
/external/dbus/cmake/modules/ |
D | FindGLIB.cmake | 34 message(STATUS "Found GLIB: ${GLIB_LIBRARY}")
|
D | FindLibIconv.cmake | 42 message(STATUS "Found LibIconv: ${LIBICONV_LIBRARIES}")
|
D | FindLibExpat.cmake | 51 message(STATUS "Found libexpat: ${LIBEXPAT_LIBRARIES}")
|
/external/llvm/cmake/modules/ |
D | FindBison.cmake | 23 MESSAGE(STATUS "Found Bison: ${BISON_EXECUTABLE}")
|