Searched defs:Actions (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/Driver/
H A DCompilation.h44 ActionList Actions; member in class:clang::driver::Compilation
82 ActionList &getActions() { return Actions; }
83 const ActionList &getActions() const { return Actions; }
/external/clang/include/clang/Sema/
H A DDesignator.h171 void ClearExprs(Sema &Actions) {} argument
175 void FreeExprs(Sema &Actions) {} argument
201 void ClearExprs(Sema &Actions) {}
205 void FreeExprs(Sema &Actions) {}
H A DSema.h7483 Sema &Actions; member in class:clang::EnterExpressionEvaluationContext
7486 EnterExpressionEvaluationContext(Sema &Actions, argument
7490 : Actions(Actions) {
7491 Actions.PushExpressionEvaluationContext(NewContext, LambdaContextDecl,
7494 EnterExpressionEvaluationContext(Sema &Actions, argument
7498 : Actions(Actions) {
7499 Actions.PushExpressionEvaluationContext(NewContext,
7505 Actions
[all...]
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITDwarfEmitter.cpp239 SmallVector<ActionEntry, 32> Actions; local
257 assert(Actions.size());
258 PrevAction = &Actions.back();
280 Actions.push_back(Action);
282 PrevAction = &Actions.back();
443 for (unsigned I = 0, N = Actions.size(); I != N; ++I) {
444 ActionEntry &Action = Actions[I];
/external/clang/lib/Parse/
H A DRAIIObjectsForParser.h85 Sema &Actions; member in class:clang::ParsingDeclRAIIObject
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/
H A DParser.h75 /// Actions - These are the callbacks we invoke as we parse various constructs
77 Sema &Actions; member in class:clang::Parser
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(); }
595 P.Actions.ActOnObjCTemporaryExitContainerContext(cast<DeclContext>(DC));
599 P.Actions.ActOnObjCReenterContainerContext(cast<DeclContext>(DC));
1973 if (!P.Actions
[all...]

Completed in 626 milliseconds