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

  /external/clang/include/clang/Driver/
Compilation.h 43 /// The list of actions.
44 ActionList Actions;
82 ActionList &getActions() { return Actions; }
83 const ActionList &getActions() const { return Actions; }
  /external/llvm/lib/ExecutionEngine/JIT/
JITDwarfEmitter.cpp 170 /// ActionEntry - Structure describing an entry in the actions table.
211 // duplicate actions.
237 // Compute the actions table and gather the first action index for each
239 SmallVector<ActionEntry, 32> Actions;
257 assert(Actions.size());
258 PrevAction = &Actions.back();
268 // Compute the actions.
280 Actions.push_back(Action);
282 PrevAction = &Actions.back();
442 // Emit the actions
    [all...]
  /external/clang/lib/Parse/
RAIIObjectsForParser.h 80 /// \brief RAII object used to inform the actions that we're
85 Sema &Actions;
96 : Actions(P.getActions()), DiagnosticPool(NULL) {
103 : Actions(P.getActions()), DiagnosticPool(parentPool) {
111 : Actions(P.getActions()),
156 State = Actions.PushParsingDeclaration(DiagnosticPool);
162 Actions.PopParsingDeclaration(State, D);
  /external/clang/include/clang/Parse/
Parser.h 75 /// Actions - These are the callbacks we invoke as we parse various constructs
77 Sema &Actions;
188 /// to parse the C-like decls, meaning Actions.getObjCDeclContext() will
195 Parser(Preprocessor &PP, Sema &Actions, bool SkipFunctionBodies);
201 Sema &getActions() const { return Actions; }
205 Scope *getCurScope() const { return Actions.getCurScope(); }
207 Decl *getObjCDeclContext() const { return Actions.getObjCDeclContext(); }
210 // different actual classes based on the actions in place.
595 P.Actions.ActOnObjCTemporaryExitContainerContext(cast<DeclContext>(DC));
599 P.Actions.ActOnObjCReenterContainerContext(cast<DeclContext>(DC))
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 522 /// Translation Unit Scope - useful to Objective-C actions that need
    [all...]

Completed in 833 milliseconds