/external/chromium_org/third_party/WebKit/Source/web/resources/ |
pickerCommon.js | 235 Picker.Actions = { 254 window.pagePopupController.setValueAndClosePopup(Picker.Actions.ChooseOtherColor, "");
|
/external/chromium_org/chrome/browser/ui/ |
auto_login_infobar_delegate.h | 46 enum Actions { 71 void RecordHistogramAction(Actions action);
|
/external/clang/lib/Parse/ |
ParsePragma.h | 119 PragmaCommentHandler(Sema &Actions) 120 : PragmaHandler("comment"), Actions(Actions) {} 124 Sema &Actions; 129 PragmaDetectMismatchHandler(Sema &Actions) 130 : PragmaHandler("detect_mismatch"), Actions(Actions) {} 134 Sema &Actions;
|
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/Driver/ |
Compilation.h | 48 /// The list of actions. 49 ActionList Actions; 88 ActionList &getActions() { return Actions; } 89 const ActionList &getActions() const { return Actions; }
|
/external/clang/lib/Sema/ |
SemaOpenMP.cpp | 34 Sema &Actions; 36 VarDeclFilterCCC(Sema &S) : Actions(S) { } 41 Actions.isDeclInScope(ND, Actions.getCurLexicalContext(), 42 Actions.getCurScope());
|
/external/chromium_org/chrome/browser/extensions/api/declarative/ |
declarative_rule.h | 35 // If any condition is fulfilled, the Actions of the DeclarativeRule can be 111 // Immutable container for multiple actions. 136 // actions, we can optimize here by making some of them singletons (e.g. Cancel 137 // actions). 142 typedef std::vector<scoped_refptr<const ActionT> > Actions; 144 explicit DeclarativeActionSet(const Actions& actions); 147 // according to |actions| which represents the array of actions received from 150 const AnyVector& actions, 170 const Actions& actions() const { return actions_; } function in class:extensions::DeclarativeActionSet 230 const ActionSet& actions() const { return *actions_; } function in class:extensions::DeclarativeRule 447 scoped_ptr<ActionSet> actions = local [all...] |
/external/chromium_org/ui/app_list/ |
search_result.h | 71 typedef std::vector<Action> Actions; 91 const Actions& actions() const { function in class:app_list::SearchResult 94 void SetActions(const Actions& sets); 122 Actions actions_;
|
/external/clang/include/clang/Parse/ |
Parser.h | 77 /// Actions - These are the callbacks we invoke as we parse various constructs 79 Sema &Actions; 213 /// to parse the C-like decls, meaning Actions.getObjCDeclContext() will 220 Parser(Preprocessor &PP, Sema &Actions, bool SkipFunctionBodies); 226 Sema &getActions() const { return Actions; } 230 Scope *getCurScope() const { return Actions.getCurScope(); } 232 Decl *getObjCDeclContext() const { return Actions.getObjCDeclContext(); } 235 // different actual classes based on the actions in place. 624 P.Actions.ActOnObjCTemporaryExitContainerContext(cast<DeclContext>(DC)); 628 P.Actions.ActOnObjCReenterContainerContext(cast<DeclContext>(DC)) [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | 544 /// Translation Unit Scope - useful to Objective-C actions that need [all...] |