HomeSort by relevance Sort by last modified time
    Searched defs:Paths (Results 1 - 11 of 11) sorted by null

  /external/llvm/lib/ExecutionEngine/
EventListenerCommon.h 32 DenseMap<AssertingVH<MDNode>, std::string> Paths;
45 std::string &P = Paths[Scope];
  /external/clang/include/clang/AST/
CXXInheritance.h 74 /// calculated when recording paths. AS_none is a special value
88 /// BasePaths - Represents the set of paths from a derived class to
99 /// There are two potential BasePaths to represent paths from D to a
101 /// and another is (D,0)->(C,0)->(A,1). These two paths actually
121 /// Paths - The actual set of paths that can be taken from the
123 std::list<CXXBasePath> Paths;
134 /// ambiguous paths while it is looking for a path from a derived
138 /// RecordPaths - Whether Sema::IsDerivedFrom should record paths
139 /// while it is determining whether there are paths from a derive
    [all...]
  /external/clang/lib/Driver/
WindowsToolChain.cpp 322 // Honor %INCLUDE%. It should know essential search paths with vcvarsall.bat.
342 // the correct include paths first.
354 // As a fallback, select default install paths.
355 const StringRef Paths[] = {
362 addSystemIncludes(DriverArgs, CC1Args, Paths);
ToolChains.cpp 250 // also add the GCC libexec paths. This is legacy code that can be removed
    [all...]
Tools.cpp 165 // LIBRARY_PATH - included following the user specified library paths.
404 // Parse additional include paths from environment variables.
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 124 std::set<sys::Path> Paths;
268 // the Paths vector (built by buildPaths, below) and replaces any directories it
321 Paths.insert(dirpaths.begin(),dirpaths.end());
323 Paths.insert(aPath);
326 Paths.insert(aPath);
353 if (Paths.empty() ||
354 (std::find(Paths.begin(), Paths.end(), I->getPath()) != Paths.end())) {
404 if (Paths.empty() |
    [all...]
  /external/clang/include/clang/Sema/
Lookup.h 133 Paths(0),
153 Paths(0),
171 Paths(0),
184 if (Paths) deletePaths(Paths);
269 /// \brief Return the base paths structure that's associated with
272 return Paths;
399 if (Paths) {
400 deletePaths(Paths);
401 Paths = 0
    [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp 1022 /// \brief Append to \p Paths the set of paths needed to get to the
1027 llvm::SmallVector<StringRef, 2> Paths;
1030 Paths.push_back(Mod->Name);
1033 if (Paths.empty())
1037 for (unsigned I = Paths.size() - 1; I != 0; --I) {
1039 llvm::sys::path::append(Path, Paths[I-1] + ".framework");
    [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp     [all...]
SemaLookup.cpp 320 assert((Paths != NULL) == (ResultKind == Ambiguous &&
326 void LookupResult::deletePaths(CXXBasePaths *Paths) {
327 delete Paths;
461 Paths = new CXXBasePaths;
462 Paths->swap(P);
463 addDeclsFromBasePaths(*Paths);
469 Paths = new CXXBasePaths;
470 Paths->swap(P);
471 addDeclsFromBasePaths(*Paths);
479 if (Paths) Out << ", base paths present"
    [all...]
SemaDecl.cpp     [all...]

Completed in 120 milliseconds