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

/external/clang/include/clang/Driver/
H A DCompilation.h66 ActionList Actions; member in class:clang::driver::Compilation
154 ActionList &getActions() { return Actions; }
155 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.h411 // Actions should be performed only if we enter / exit a C++ method body.
9603 Sema &Actions; member in class:clang::EnterExpressionEvaluationContext
9607 EnterExpressionEvaluationContext(Sema &Actions, argument
9612 : Actions(Actions), Entered(ShouldEnter) {
9614 Actions.PushExpressionEvaluationContext(NewContext, LambdaContextDecl,
9617 EnterExpressionEvaluationContext(Sema &Actions, argument
9621 : Actions(Actions) {
9622 Actions
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp51 SmallVectorImpl<ActionEntry> &Actions,
107 assert(Actions.size());
108 PrevAction = Actions.size() - 1;
109 SizeAction = getSLEB128Size(Actions[PrevAction].NextAction) +
110 getSLEB128Size(Actions[PrevAction].ValueForTypeID);
114 SizeAction -= getSLEB128Size(Actions[PrevAction].ValueForTypeID);
115 SizeAction += -Actions[PrevAction].NextAction;
116 PrevAction = Actions[PrevAction].Previous;
133 Actions.push_back(Action);
134 PrevAction = Actions
358 SmallVector<ActionEntry, 32> Actions; local
[all...]
/external/swiftshader/third_party/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.h91 Sema &Actions; member in class:clang::ParsingDeclRAIIObject
102 : Actions(P.getActions()), DiagnosticPool(nullptr) {
109 : Actions(P.getActions()), DiagnosticPool(parentPool) {
117 : Actions(P.getActions()),
162 State = Actions.PushParsingDeclaration(DiagnosticPool);
168 Actions.PopParsingDeclaration(State, D);
H A DParseOpenMP.cpp145 Sema &Actions = P.getActions(); local
189 auto &DeclNames = Actions.getASTContext().DeclarationNames;
242 Actions.ActOnOpenMPDeclareReductionType(Range.getBegin(), TR);
282 DeclGroupPtrTy DRD = Actions.ActOnOpenMPDeclareReductionDirectiveStart(
283 getCurScope(), Actions.getCurLexicalContext(), Name, ReductionTypes, AS);
293 Actions.ActOnOpenMPDeclareReductionCombinerStart(getCurScope(), D);
295 Actions.ActOnFinishFullExpr(ParseAssignmentExpression().get(),
297 Actions.ActOnOpenMPDeclareReductionCombinerEnd(D, CombinerResult.get());
328 Actions.ActOnOpenMPDeclareReductionInitializerStart(getCurScope(), D);
329 InitializerResult = Actions
379 Sema &Actions = P.getActions(); local
[all...]
H A DParsePragma.cpp103 PragmaCommentHandler(Sema &Actions) argument
104 : PragmaHandler("comment"), Actions(Actions) {}
108 Sema &Actions; member in struct:__anon1430::PragmaCommentHandler
112 PragmaDetectMismatchHandler(Sema &Actions) argument
113 : PragmaHandler("detect_mismatch"), Actions(Actions) {}
117 Sema &Actions; member in struct:__anon1430::PragmaDetectMismatchHandler
141 : PragmaHandler("optimize"), Actions(S) {}
145 Sema &Actions; member in struct:__anon1430::PragmaOptimizeHandler
[all...]
H A DParseObjc.cpp52 Actions.CodeCompleteObjCAtDirective(getCurScope());
88 return Actions.ConvertDeclToDeclGroup(nullptr);
95 return Actions.ConvertDeclToDeclGroup(SingleDecl);
100 Sema &Actions; member in class:Parser::ObjCTypeParamListScope
105 ObjCTypeParamListScope(Sema &Actions, Scope *S) argument
106 : Actions(Actions), S(S), Params(nullptr) {}
119 Actions.popObjCTypeParamList(S, Params);
143 return Actions.ConvertDeclToDeclGroup(nullptr);
160 return Actions
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp1018 SmallVectorImpl<UDivFoldAction> &Actions,
1023 Actions.push_back(UDivFoldAction(foldUDivPow2Cst, Op1));
1024 return Actions.size();
1030 Actions.push_back(UDivFoldAction(foldUDivNegCst, C));
1031 return Actions.size();
1037 Actions.push_back(UDivFoldAction(foldUDivShl, Op1));
1038 return Actions.size();
1047 visitUDivOperand(Op0, SI->getOperand(1), I, Actions, Depth))
1048 if (visitUDivOperand(Op0, SI->getOperand(2), I, Actions, Depth)) {
1049 Actions
1017 visitUDivOperand(Value *Op0, Value *Op1, const BinaryOperator &I, SmallVectorImpl<UDivFoldAction> &Actions, unsigned Depth = 0) argument
[all...]
/external/clang/lib/Driver/
H A DDriver.cpp1083 ActionList &Actions = C.getActions(); local
1134 Actions.append(Inputs.begin(), Inputs.end());
1136 Actions.push_back(C.MakeAction<LipoJobAction>(Inputs, Act->getType()));
1142 ContainsCompileOrAssembleAction(Actions.back())) {
1150 Inputs.push_back(Actions.back());
1151 Actions.pop_back();
1152 Actions.push_back(
1158 Action* LastAction = Actions.back();
1159 Actions.pop_back();
1160 Actions
1368 buildCudaActions(Compilation &C, DerivedArgList &Args, const Arg *InputArg, Action *HostAction, ActionList &Actions) argument
[all...]
/external/clang/include/clang/Parse/
H A DParser.h78 /// Actions - These are the callbacks we invoke as we parse various constructs
80 Sema &Actions; member in class:clang::Parser
240 /// to parse the C-like decls, meaning Actions.getObjCDeclContext() will
247 Parser(Preprocessor &PP, Sema &Actions, bool SkipFunctionBodies);
253 Sema &getActions() const { return Actions; }
257 Scope *getCurScope() const { return Actions.getCurScope(); }
259 return Actions.incrementMSManglingNumber();
262 Decl *getObjCDeclContext() const { return Actions.getObjCDeclContext(); }
319 return Actions.getNullabilityKeyword(nullability);
742 P.Actions
[all...]
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2505 SmallVector<std::unique_ptr<TypePromotionAction>, 16> Actions; member in class:__anon12655::TypePromotionTransaction
2511 Actions.push_back(
2517 Actions.push_back(
2523 Actions.push_back(make_unique<TypePromotionTransaction::UsesReplacer>(Inst, New));
2527 Actions.push_back(make_unique<TypePromotionTransaction::TypeMutator>(Inst, NewTy));
2534 Actions.push_back(std::move(Ptr));
2542 Actions.push_back(std::move(Ptr));
2550 Actions.push_back(std::move(Ptr));
2556 Actions.push_back(
2562 return !Actions
[all...]
/external/guice/lib/build/
H A Dfelix-2.0.5.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE META-INF/NOTICE META- ...

Completed in 729 milliseconds