Searched refs:actions (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium/base/
H A Dfile_descriptor_shuffle_unittest.cc65 const std::vector<Action>& actions() const { return actions_; } function in class:InjectionTracer
77 EXPECT_EQ(0u, tracer.actions().size());
86 EXPECT_EQ(0u, tracer.actions().size());
95 EXPECT_EQ(0u, tracer.actions().size());
104 ASSERT_EQ(1u, tracer.actions().size());
105 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
115 ASSERT_EQ(2u, tracer.actions().size());
116 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
117 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 2, 3));
126 ASSERT_EQ(2u, tracer.actions()
[all...]
/external/apache-harmony/security/src/test/resources/PermissionCollection/
H A DmypermissionBKS.jar ... .String, java.lang.String) String name String actions public void " href="/4.0.4/s?defs ...
/external/bouncycastle/src/main/java/org/bouncycastle/jce/
H A DProviderConfigurationPermission.java39 private final String actions; field in class:ProviderConfigurationPermission
45 this.actions = "all";
49 public ProviderConfigurationPermission(String name, String actions) argument
51 super(name, actions);
52 this.actions = actions;
53 this.permissionMask = calculateMask(actions);
57 String actions)
59 StringTokenizer tok = new StringTokenizer(Strings.toLowerCase(actions), " ,");
90 return actions;
56 calculateMask( String actions) argument
[all...]
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
H A Dscanner.py14 self.actions = [None]
27 self.actions.append(token)
38 actions = self.actions
48 action = actions[m.lastindex]
/external/icu4c/common/
H A Drbbicst.pl167 # for the names of the actions that appeared.
178 if ($actions{$state_action_name[$state]} == 0) {
179 $actions{$state_func_name[$state]} = 1;
255 # Emit the constants for the actions to be performed.
258 foreach $act (sort keys %actions) {
370 # Emit the enum for the actions to be performed.
373 foreach $act (sort keys %actions) {
/external/icu4c/i18n/
H A Dregexcst.pl168 # for the names of the actions that appeared.
179 if ($actions{$state_action_name[$state]} == 0) {
180 $actions{$state_func_name[$state]} = 1;
248 # Emit the enum for the actions to be performed.
251 foreach $act (keys %actions) {
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DWebContextMenuProxyQt.cpp137 // Do not show sub-menus with just disabled actions.
142 QList<QAction *> actions = menu->actions(); local
143 for (int i = 0; i < actions.count(); ++i) {
144 if (actions.at(i)->isVisible())
145 isAnyActionEnabled |= actions.at(i)->isEnabled();
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A DPluginObjectMac.mm52 NSDictionary *actions = [NSDictionary dictionaryWithObjectsAndKeys:
66 [caLayer setStyle:[NSDictionary dictionaryWithObject:actions forKey:@"actions"]];
80 [sublayer setStyle:[NSDictionary dictionaryWithObject:actions forKey:@"actions"]];
/external/antlr/src/org/antlr/runtime/tree/
H A DTreeFilter.java60 executing any embedded actions and rewrite rules.''
111 TreeVisitorAction actions = new TreeVisitorAction() {
115 v.visit(t, actions);
H A DTreeRewriter.java91 TreeVisitorAction actions = new TreeVisitorAction() {
95 t = v.visit(t, actions);
/external/chromium/chrome/browser/
H A Denumerate_modules_model_win.cc839 string16 actions; local
845 actions = l10n_util::GetStringUTF16(
849 if (!actions.empty())
850 actions += separator;
851 actions = l10n_util::GetStringUTF16(
855 if (!actions.empty())
856 actions += separator;
857 actions += l10n_util::GetStringUTF16(
861 if (!actions.empty())
862 actions
[all...]
/external/bison/tests/
H A DMakefile.am51 synclines.at headers.at actions.at conflicts.at \
/external/quake/quake/src/QW/
H A Dqwcl.spec.sh28 like excessive lag - actions actually happening much later than you did them;
H A Dqwsv.spec.sh28 like excessive lag - actions actually happening much later than you did them;
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpage.cpp98 memset(actions, 0, sizeof(actions));
342 QAction* a = actions[action];
729 if (d->actions[action])
730 return d->actions[action];
794 d->actions[action] = a;
H A Dqwkpage_p.h125 QAction* actions[QWKPage::WebActionCount]; member in class:QWKPagePrivate
/external/webkit/Tools/CSSTestSuiteHarness/harness/
H A Dharness.css61 .actions {
70 .actions button {
/external/clang/lib/Parse/
H A DParser.cpp26 Parser::Parser(Preprocessor &pp, Sema &actions) argument
27 : PP(pp), Actions(actions), Diags(PP.getDiagnostics()),
38 AlignHandler.reset(new PragmaAlignHandler(actions));
41 GCCVisibilityHandler.reset(new PragmaGCCVisibilityHandler(actions));
44 OptionsHandler.reset(new PragmaOptionsHandler(actions));
47 PackHandler.reset(new PragmaPackHandler(actions));
50 MSStructHandler.reset(new PragmaMSStructHandler(actions));
53 UnusedHandler.reset(new PragmaUnusedHandler(actions, *this));
56 WeakHandler.reset(new PragmaWeakHandler(actions));
59 FPContractHandler.reset(new PragmaFPContractHandler(actions, *thi
[all...]
/external/chromium/chrome/browser/tab_contents/
H A Dweb_drag_dest_gtk.cc129 gtk_util::GdkDragActionToWebDragOp(context->actions));
233 gtk_util::GdkDragActionToWebDragOp(context->actions));
/external/webkit/Source/WebCore/platform/gtk/
H A DGtkVersioning.h57 #define gdk_drag_context_get_actions(context) (context)->actions
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage_p.h205 QAction *actions[QWebPage::WebActionCount]; member in class:QWebPagePrivate
H A Dqwebpage.cpp255 static inline DragOperation dropActionToDragOp(Qt::DropActions actions) argument
258 if (actions & Qt::CopyAction)
262 if (actions & Qt::MoveAction)
264 if (actions & Qt::LinkAction)
269 static inline Qt::DropAction dragOpToDropAction(unsigned actions) argument
272 if (actions & DragOperationCopy)
274 else if (actions & DragOperationMove)
278 else if (actions & DragOperationGeneric)
280 else if (actions & DragOperationLink)
347 memset(actions,
483 QList<QAction *> actions = subMenu->actions(); local
[all...]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDumpRenderTreeSupportQt.cpp990 QList<QAction *> actions = menu->actions(); local
991 for (int i = 0; i < actions.count(); ++i) {
992 if (actions.at(i)->isSeparator())
995 items << actions.at(i)->text();
996 if (actions.at(i)->menu())
997 items << iterateContextMenu(actions.at(i)->menu());
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp514 /// Deals with Dwarf actions matching our type infos
612 /// @param _Unwind_Action actions minimally supported unwind stage
621 _Unwind_Action actions,
733 if (!(actions & _UA_SEARCH_PHASE)) {
798 /// @param _Unwind_Action actions minimally supported unwind stage
806 _Unwind_Action actions,
812 "We are in ourPersonality(...):actions is <%d>.\n",
813 actions);
815 if (actions & _UA_SEARCH_PHASE) {
834 actions,
619 handleLsda(int version, const uint8_t *lsda, _Unwind_Action actions, uint64_t exceptionClass, struct _Unwind_Exception *exceptionObject, _Unwind_Context_t context) argument
805 ourPersonality(int version, _Unwind_Action actions, uint64_t exceptionClass, struct _Unwind_Exception *exceptionObject, _Unwind_Context_t context) argument
[all...]
/external/webkit/Tools/QtTestBrowser/
H A Dwebview.cpp243 menu->insertAction(menu->actions().at(2), newTabAction);

Completed in 942 milliseconds

12