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

/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DpickerCommon.js235 Picker.Actions = {
254 window.pagePopupController.setValueAndClosePopup(Picker.Actions.ChooseOtherColor, "");
/external/chromium_org/chrome/browser/ui/
H A Dauto_login_infobar_delegate.h42 enum Actions { enum in class:AutoLoginInfoBarDelegate
55 void RecordHistogramAction(Actions action);
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DLexicons.py11 import Actions namespace
63 Actions
165 if isinstance(action_spec, Actions.Action):
171 action = Actions.Return(action_spec)
173 action = Actions.Call(action_spec)
/external/clang/include/clang/Driver/
H A DCompilation.h49 ActionList Actions; member in class:clang::driver::Compilation
91 ActionList &getActions() { return Actions; }
92 const ActionList &getActions() const { return Actions; }
/external/chromium_org/ui/app_list/
H A Dsearch_result.h77 typedef std::vector<Action> Actions; typedef in class:app_list::SearchResult
101 const Actions& actions() const {
104 void SetActions(const Actions& sets);
152 Actions 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.h8408 Sema &Actions; member in class:clang::EnterExpressionEvaluationContext
8411 EnterExpressionEvaluationContext(Sema &Actions, argument
8415 : Actions(Actions) {
8416 Actions.PushExpressionEvaluationContext(NewContext, LambdaContextDecl,
8419 EnterExpressionEvaluationContext(Sema &Actions, argument
8423 : Actions(Actions) {
8424 Actions.PushExpressionEvaluationContext(NewContext,
8430 Actions
[all...]
/external/chromium_org/extensions/browser/api/declarative/
H A Ddeclarative_rule.h39 // If any condition is fulfilled, the Actions of the DeclarativeRule can be
146 typedef std::vector<scoped_refptr<const ActionT> > Actions; typedef in class:extensions::DeclarativeActionSet
148 explicit DeclarativeActionSet(const Actions& actions);
182 const Actions& actions() const { return actions_; }
185 const Actions actions_;
361 DeclarativeActionSet<ActionT>::DeclarativeActionSet(const Actions& actions)
375 Actions result;
395 for (typename Actions::const_iterator i = actions_.begin();
405 for (typename Actions::const_iterator i = actions_.begin();
415 for (typename 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;
132 Actions.push_back(Action);
133 PrevAction = Actions
336 SmallVector<ActionEntry, 32> Actions; local
[all...]
/external/clang/lib/Parse/
H A DRAIIObjectsForParser.h85 Sema &Actions; member in class:clang::ParsingDeclRAIIObject
96 : Actions(P.getActions()), DiagnosticPool(nullptr) {
103 : Actions(P.getActions()), DiagnosticPool(parentPool) {
111 : Actions(P.getActions()),
156 State = Actions.PushParsingDeclaration(DiagnosticPool);
162 Actions.PopParsingDeclaration(State, D);
H A DParsePragma.cpp100 PragmaCommentHandler(Sema &Actions) argument
101 : PragmaHandler("comment"), Actions(Actions) {}
105 Sema &Actions; member in struct:__anon17955::PragmaCommentHandler
109 PragmaDetectMismatchHandler(Sema &Actions) argument
110 : PragmaHandler("detect_mismatch"), Actions(Actions) {}
114 Sema &Actions; member in struct:__anon17955::PragmaDetectMismatchHandler
138 : PragmaHandler("optimize"), Actions(S) {}
142 Sema &Actions; member in struct:__anon17955::PragmaOptimizeHandler
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp868 SmallVectorImpl<UDivFoldAction> &Actions,
873 Actions.push_back(UDivFoldAction(foldUDivPow2Cst, Op1));
874 return Actions.size();
880 Actions.push_back(UDivFoldAction(foldUDivNegCst, C));
881 return Actions.size();
887 Actions.push_back(UDivFoldAction(foldUDivShl, Op1));
888 return Actions.size();
896 if (size_t LHSIdx = visitUDivOperand(Op0, SI->getOperand(1), I, Actions))
897 if (visitUDivOperand(Op0, SI->getOperand(2), I, Actions)) {
898 Actions
867 visitUDivOperand(Value *Op0, Value *Op1, const BinaryOperator &I, SmallVectorImpl<UDivFoldAction> &Actions, unsigned Depth = 0) argument
[all...]
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp1430 SmallVector<std::unique_ptr<TypePromotionAction>, 16> Actions; member in class:__anon25735::TypePromotionTransaction
1436 Actions.push_back(
1442 Actions.push_back(
1448 Actions.push_back(make_unique<TypePromotionTransaction::UsesReplacer>(Inst, New));
1452 Actions.push_back(make_unique<TypePromotionTransaction::TypeMutator>(Inst, NewTy));
1459 Actions.push_back(std::move(Ptr));
1467 Actions.push_back(std::move(Ptr));
1473 Actions.push_back(
1479 return !Actions.empty() ? Actions
[all...]
/external/clang/include/clang/Parse/
H A DParser.h76 /// Actions - These are the callbacks we invoke as we parse various constructs
78 Sema &Actions; member in class:clang::Parser
229 /// to parse the C-like decls, meaning Actions.getObjCDeclContext() will
236 Parser(Preprocessor &PP, Sema &Actions, bool SkipFunctionBodies);
242 Sema &getActions() const { return Actions; }
246 Scope *getCurScope() const { return Actions.getCurScope(); }
248 return Actions.incrementMSLocalManglingNumber();
251 Decl *getObjCDeclContext() const { return Actions.getObjCDeclContext(); }
709 P.Actions.ActOnObjCTemporaryExitContainerContext(cast<DeclContext>(DC));
713 P.Actions
[all...]

Completed in 410 milliseconds