HomeSort by relevance Sort by last modified time
    Searched refs:Found (Results 1 - 25 of 74) sorted by null

1 2 3

  /dalvik/dx/tests/099-dex-core-library-error/
run 22 echo Found blort.dex
28 echo Found muffins.dex
34 echo Found zorch.dex
  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 87 const SubtargetInfoKV *Found =
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/
TestVisitor.h 118 /// \brief Checks that all expected matches have been found.
187 : 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;
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 314 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
316 LookupName(Found, S);
317 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
319 if (!Found.isSingleResult())
322 NamedDecl *Result = Found.getFoundDecl();
334 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
350 Found.setContextRange(SS.getRange());
364 LookupQualifiedName(Found, LookupCtx);
368 LookupName(Found, S);
370 Found.suppressDiagnostics()
    [all...]
SemaAccess.cpp     [all...]
SemaLookup.cpp 292 // operators can be found.
312 assert(ResultKind != Found || Decls.size() == 1);
426 // But it's still an error if there are distinct tag types found,
449 ResultKind = LookupResult::Found;
648 // given lookup result. Returns true if any matches were found.
650 bool Found = false;
662 Found = true;
666 if (!Found && DC->isTranslationUnit() && LookupBuiltin(S, R))
673 return Found;
676 // A specialization of a conversion function template is not found b
    [all...]
SemaTemplateInstantiateDecl.cpp 231 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
232 if (Found.first != Found.second) {
233 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(*Found.first);
731 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
732 if (Found.first != Found.second) {
733 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
    [all...]
SemaTemplate.cpp 43 /// \brief Determine whether the declaration found is acceptable as the name
101 // ambiguity in certain cases (for example, if it is found in more than
102 // one base class). If all of the injected-class-names that are found
115 // found this template through a particular injected class name,
244 void Sema::LookupTemplateName(LookupResult &Found,
264 Found.clear();
285 LookupQualifiedName(Found, LookupCtx);
286 if (!ObjectType.isNull() && Found.empty()) {
293 // expression. If the identifier is not found, it is then looked up in
296 if (S) LookupName(Found, S)
    [all...]
  /external/clang/tools/diagtool/
TreeView.cpp 61 const GroupRecord *Found =
64 if (Found == AllGroups.end() || Found->getName() != RootGroup) {
69 printGroup(out, *Found, FlagsOnly);
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.h 55 bool Found = false;
57 Finder.addMatcher(AMatcher, new VerifyMatch(0, &Found));
64 if (!Found && ExpectMatch) {
67 } else if (Found && !ExpectMatch) {
69 << "Found unexpected match in \"" << Code << "\"";
  /external/freetype/src/psnames/
pstables.h     [all...]
  /external/llvm/lib/CodeGen/
ProcessImplicitDefs.cpp 103 bool Found = false;
113 Found = true;
117 if (Found)
121 // If we found the using MI, we can erase the IMPLICIT_DEF.
122 if (Found) {
128 // Using instr wasn't found, it could be in another block.
MachineInstr.cpp     [all...]
  /external/llvm/lib/Support/
Triple.cpp 380 bool Found[4];
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) && Found[i]
    [all...]
  /external/clang/include/clang/Sema/
Lookup.h 26 /// single name lookup, which can return no result (nothing found),
33 /// @brief No entity found met the criteria.
36 /// @brief No entity found met the criteria within the current
41 /// @brief Name lookup found a single declaration that met the
43 Found,
45 /// @brief Name lookup found a set of overloaded functions that
49 /// @brief Name lookup found an unresolvable value declaration
62 /// entities that meet the lookup criteria were found in
76 /// nonstatic entities that meet the lookup criteria were found
84 /// return d.x; // error: 'x' is found in two A subobjects (of B and C
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
messages.properties 47 RSSFeedUpdateEntryTask.DebugFoundAttribute=Found Attribute:
48 RSSFeedUpdateEntryTask.DebugFoundElement=Found Element:
49 RSSFeedUpdateEntryTask.DebugFoundText=Found Text:
50 RSSFeedUpdateEntryTask.XpathNodeNotFound=Xpath Node Not Found\!
79 RSSFeedWatcherTask.NodeNotFound=Node not found. Nothing to do\!
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 115 const StaticDiagInfoRec *Found =
117 if (Found == StaticDiagInfo + StaticDiagInfoSize ||
118 Found->DiagID != DiagID)
121 return Found;
536 const WarningOption *Found =
539 if (Found == OptionTable + OptionTableSize ||
540 Found->getName() != Group)
541 return true; // Option not found.
543 getDiagnosticsInGroup(Found, Diags);
  /external/freetype/src/sfnt/
ttkern.c 251 goto Found;
272 goto Found;
291 Found:
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 229 LLVMValueRef Found;
230 if (LLVMFindFunction(EE, String_val(Name), &Found))
233 Field(Option, 0) = Val_op(Found);
  /gdk/build/core/
build-local.mk 26 # any of its parents. If none is found, try again with 'jni/Android.mk'
46 $(call gdk_log, Found it !)\
78 $(call gdk_log,Found project path: $(GDK_PROJECT_PATH))
  /external/clang/lib/AST/
MicrosoftMangle.cpp 436 BackRefMap::iterator Found;
444 Found = NameBackReferences.find(BackReferenceKey);
446 if (!UseNameBackReferences || Found == NameBackReferences.end()) {
453 Out << Found->second;
695 BackRefMap::iterator Found;
697 Found = NameBackReferences.find(key);
698 if (!UseNameBackReferences || Found == NameBackReferences.end()) {
705 Out << Found->second;
    [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp 130 // Infer submodules for each of the directories we found between
161 // the module we found, since the umbrella header covers them all.
206 Module *Found = KnownDir->second;
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)
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
main.js 3 // found in the LICENSE file.
33 console.log('Found filesystem: ' + filesystem.name, filesystem);
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 710 bool Found = false;
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.";
    [all...]
  /ndk/build/core/
init.mk 158 $(call ndk_log,Found /bin/uname.exe on Windows host, checking for Cygwin)
258 $(call ndk_log,Host tools prebuilt directory not found, using system tools)
346 $(call ndk_log, 'cygpath' was *not* found in your path)
348 $(call ndk_log, 'cygpath' found as: $(CYGPATH))
411 $(call __ndk_info,INTERNAL ERROR: The $(_abi) ABI should have exactly one architecture definitions. Found: '$(NDK_ABI.$(_abi).arch)')\
490 $(call ndk_log,Found platform root directory: $(NDK_PLATFORMS_ROOT))
499 $(call ndk_log,Found supported platforms: $(NDK_ALL_PLATFORMS))
509 $(call ndk_log,Found stable platform levels: $(NDK_ALL_PLATFORM_LEVELS))
515 $(call ndk_log,Found max platform level: $(NDK_MAX_PLATFORM_LEVEL))

Completed in 1423 milliseconds

1 2 3