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

123

/external/clang/tools/diagtool/
H A DTreeView.cpp94 const GroupRecord *Found = local
97 if (Found == AllGroups.end() || Found->getName() != RootGroup) {
102 printGroup(*Found);
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.h65 bool Found = false, DynamicFound = false; local
67 VerifyMatch VerifyFound(nullptr, &Found);
79 if (Found != DynamicFound) {
83 << Found << ")";
85 if (!Found && ExpectMatch) {
88 } else if (Found && !ExpectMatch) {
90 << "Found unexpected match in \"" << Code << "\"";
/external/llvm/lib/CodeGen/
H A DProcessImplicitDefs.cpp100 bool Found = false; local
110 Found = true;
114 if (Found)
119 if (Found) {
H A DTailDuplication.cpp173 bool Found = false; local
177 Found = true;
181 if (!Found) {
/external/llvm/lib/MC/
H A DMCSubtargetInfo.cpp94 const SubtargetInfoKV *Found = local
96 if (Found == ProcSchedModels+NumProcs || StringRef(Found->Key) != CPU) {
102 assert(Found->Value && "Missing processor SchedModel value");
103 return (const MCSchedModel *)Found->Value;
/external/chromium_org/chrome/utility/media_galleries/
H A Diapps_xml_utils.cc135 if (Found(key))
156 bool XmlDictReader::Found(const std::string& key) const { function in class:iapps::XmlDictReader
/external/clang/unittests/Tooling/
H A DRewriterTestContext.h74 StringRef Found = TemporaryFiles.GetOrCreateValue(Name, Path.str()).second; local
75 assert(Found == Path);
76 (void)Found;
H A DRefactoringTest.cpp240 StringRef Found = TemporaryFiles.GetOrCreateValue(Name, Path.str()).second; local
241 assert(Found == Path);
242 (void)Found;
H A DTestVisitor.h204 : Candidate(Name, LineNumber, ColumnNumber), Found(false) {}
208 EXPECT_TRUE(!Found);
209 Found = true;
210 } else if (!Found && Candidate.PartiallyMatches(Name, Location)) {
218 EXPECT_TRUE(Found)
226 bool Found; member in struct:clang::ExpectedLocationVisitor::ExpectedMatch
H A DToolingTest.cpp258 bool &Found; member in struct:clang::tooling::CheckSyntaxOnlyAdjuster
261 CheckSyntaxOnlyAdjuster(bool &Found, bool &Ran) : Found(Found), Ran(Ran) { } argument
268 Found = true;
285 bool Found = false; local
287 Tool.appendArgumentsAdjuster(new CheckSyntaxOnlyAdjuster(Found, Ran));
290 EXPECT_TRUE(Found);
292 Ran = Found = false;
294 Tool.appendArgumentsAdjuster(new CheckSyntaxOnlyAdjuster(Found, Ra
[all...]
/external/llvm/lib/TableGen/
H A DTGLexer.cpp312 DependenciesMapTy::const_iterator Found = Dependencies.find(IncludedFile); local
313 if (Found != Dependencies.end()) {
316 SrcMgr.PrintMessage(Found->second, SourceMgr::DK_Note,
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp74 const DynTypedMatcher *Found = nullptr; local
79 if (Found) {
85 Found = &Matchers[i];
91 if (Found && (FoundIsExact || NumFound == 1))
92 Ops.constructFrom(*Found);
/external/clang/lib/Frontend/
H A DFrontendAction.cpp265 bool Found = false; local
274 Found = true;
279 if (!Found) {
/external/llvm/lib/Support/
H A DTriple.cpp455 bool Found[4]; local
456 Found[0] = Arch != UnknownArch;
457 Found[1] = Vendor != UnknownVendor;
458 Found[2] = OS != UnknownOS;
459 Found[3] = Environment != UnknownEnvironment;
464 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
465 if (Found[Pos])
470 if (Idx < array_lengthof(Found) && Found[Idx])
516 while (i < array_lengthof(Found)
[all...]
/external/llvm/lib/Target/X86/
H A DX86FixupLEAs.cpp211 bool Found; local
212 Found = getPreviousInstr(CurInst, MFI);
213 while (Found && I != CurInst) {
222 Found = getPreviousInstr(CurInst, MFI);
/external/llvm/tools/llvm-readobj/
H A DStreamWriter.h83 bool Found = false; local
87 Found = true;
92 if (Found) {
/external/pdfium/fpdfsdk/src/
H A Dfpdfdoc.cpp24 CPDF_Bookmark Found = FindBookmark(tree, Child, title); local
25 if (Found) return Found;
/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/clang/lib/Basic/
H A DDiagnosticIDs.cpp147 const StaticDiagInfoRec *Found = &StaticDiagInfo[ID + Offset];
151 if (Found->DiagID != DiagID)
153 return Found;
538 const WarningOption *Found = local
541 if (Found == OptionTable + OptionTableSize ||
542 Found->getName() != Group)
545 ::getDiagnosticsInGroup(Found, Diags);
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp695 bool Found = false; local
697 E = CodeSlabs.end(); I != E && !Found; ++I) {
700 Found = (Start <= (char*)FreeRange && (char*)FreeRange < End);
702 if (!Found) {
730 Err << "Found free header at " << Hdr << " that is not in free list.";
/external/llvm/lib/Target/AArch64/
H A DAArch64CollectLOH.cpp888 bool Found = false; local
892 Found = true;
896 if (!Found)
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp355 bool Found = false; variable
366 Found = true;
370 assert(Found && "Capturing call-site captured nothing?");
371 (void)Found; variable
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp820 bool Found = false; local
824 Found = true;
831 if (!Found)
/external/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);
/external/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 nullptr;
454 assert(getResultKind() == Found
467 return getResultKind() == Found && isa<TagDecl>(getFoundDecl());

Completed in 2832 milliseconds

123