HomeSort by relevance Sort by last modified time
    Searched refs:Prog (Results 1 - 16 of 16) sorted by null

  /external/clang/include/clang/Index/
Indexer.h 41 explicit Indexer(Program &prog) :
42 Prog(prog) { }
44 Program &getProgram() const { return Prog; }
57 Program &Prog;
Analyzer.h 29 Program &Prog;
36 explicit Analyzer(Program &prog, IndexProvider &idxer)
37 : Prog(prog), Idxer(idxer) { }
Entity.h 74 static Entity get(Decl *D, Program &Prog);
77 static Entity get(StringRef Name, Program &Prog);
GlobalSelector.h 46 static GlobalSelector get(Selector Sel, Program &Prog);
CallGraph.h 57 idx::Program &Prog;
91 idx::Program &getProgram() { return Prog; }
  /external/clang/lib/Index/
Program.cpp 33 static void FindEntitiesInDC(DeclContext *DC, Program &Prog,
39 Entity Ent = Entity::get(*I, Prog);
43 FindEntitiesInDC(SubDC, Prog, Handler);
Entity.cpp 38 Program &Prog;
42 EntityGetter(Program &prog, ProgramImpl &progImpl)
43 : Prog(prog), ProgImpl(progImpl) { }
118 (uintptr_t)GlobalSelector::get(LocalSel, Prog).getAsOpaquePtr();
206 Entity EntityImpl::get(Decl *D, Program &Prog, ProgramImpl &ProgImpl) {
208 return EntityGetter(Prog, ProgImpl).Visit(D);
212 Entity EntityImpl::get(StringRef Name, Program &Prog,
214 return EntityGetter(Prog, ProgImpl).getGlobalEntity(Name);
255 Entity Entity::get(Decl *D, Program &Prog) {
    [all...]
Analyzer.cpp 90 Program &Prog;
104 Program &prog, TULocationHandler &handler)
105 : Prog(prog), TULocHandler(handler) {
114 IFaceEnt = Entity::get(IFD, Prog);
115 GlobSel = GlobalSelector::get(MD->getSelector(), Prog);
120 HierarchyEntities.insert(Entity::get(Cls, Prog));
213 if (HierarchyEntities.count(Entity::get(MsgD, Prog)))
242 Program &Prog;
261 Program &prog, TULocationHandler &handler
    [all...]
Indexer.cpp 48 Program &Prog;
53 SelectorIndexer(Program &prog, TranslationUnit *tu, Indexer::SelMapTy &map)
54 : Prog(prog), TU(tu), Map(map) { }
57 Map[GlobalSelector::get(D->getSelector(), Prog)].insert(TU);
62 Map[GlobalSelector::get(Node->getSelector(), Prog)].insert(TU);
74 Prog.FindEntities(Ctx, Idx);
76 SelectorIndexer SelIdx(Prog, TU, SelMap);
EntityImpl.h 49 static Entity get(Decl *D, Program &Prog, ProgramImpl &ProgImpl);
50 static Entity get(StringRef Name, Program &Prog, ProgramImpl &ProgImpl);
GlobalSelector.cpp 49 GlobalSelector GlobalSelector::get(Selector Sel, Program &Prog) {
53 ProgramImpl &ProgImpl = *static_cast<ProgramImpl*>(Prog.Impl);
CallGraph.cpp 58 CallGraph::CallGraph(Program &P) : Prog(P), Root(0) {
79 Entity Ent = Entity::get(FD, Prog);
  /external/clang/examples/wpa/
clang-wpa.cpp 86 Program Prog;
87 Indexer Idxer(Prog);
108 CG.reset(new CallGraph(Prog));
126 Entity Ent = Entity::get(AnalyzeFunction, Prog);
  /external/clang/tools/scan-build/
scan-build 26 my $Prog = "scan-build";
51 print BOLD, MAGENTA "$Prog: @_";
55 print "$Prog: @_";
69 print BOLD, RED "$Prog: ";
74 print "$Prog: ", @_;
145 # Strip the prefix '$Prog-' if we are dumping files to /tmp.
147 next if (!($f =~ /^$Prog-(.+)/));
185 $NewDir = "$Dir/$Prog-$DateString-$RunNumber";
933 USAGE: $Prog [options] <build command> [build options]
965 --status-bugs - By default, the exit status of $Prog is the same as th
    [all...]
  /external/clang/lib/Driver/
Compilation.cpp 142 llvm::sys::Path Prog(C.getExecutable());
179 llvm::sys::Program::ExecuteAndWait(Prog, Argv,
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 616 Module *Prog = BD.getProgram();
617 for (Module::iterator I = Prog->begin(), E = Prog->end(); I != E; ++I)
    [all...]

Completed in 1023 milliseconds