/external/chromium/base/ |
D | file_descriptor_shuffle_unittest.cc | 65 const std::vector<Action>& actions() const { return actions_; } in actions() function in InjectionTracer 77 EXPECT_EQ(0u, tracer.actions().size()); in TEST() 86 EXPECT_EQ(0u, tracer.actions().size()); in TEST() 95 EXPECT_EQ(0u, tracer.actions().size()); in TEST() 104 ASSERT_EQ(1u, tracer.actions().size()); in TEST() 105 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1)); in TEST() 115 ASSERT_EQ(2u, tracer.actions().size()); in TEST() 116 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1)); in TEST() 117 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 2, 3)); in TEST() 126 ASSERT_EQ(2u, tracer.actions().size()); in TEST() [all …]
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/ |
D | ProviderConfigurationPermission.java | 39 private final String actions; field in ProviderConfigurationPermission 45 this.actions = "all"; in ProviderConfigurationPermission() 49 public ProviderConfigurationPermission(String name, String actions) in ProviderConfigurationPermission() argument 51 super(name, actions); in ProviderConfigurationPermission() 52 this.actions = actions; in ProviderConfigurationPermission() 53 this.permissionMask = calculateMask(actions); in ProviderConfigurationPermission() 57 String actions) in calculateMask() argument 59 StringTokenizer tok = new StringTokenizer(Strings.toLowerCase(actions), " ,"); in calculateMask() 90 return actions; in getActions()
|
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/ |
D | scanner.py | 14 self.actions = [None] 27 self.actions.append(token) 38 actions = self.actions 48 action = actions[m.lastindex]
|
/external/webkit/Source/WebKit2/UIProcess/qt/ |
D | WebContextMenuProxyQt.cpp | 142 QList<QAction *> actions = menu->actions(); in createContextMenu() local 143 for (int i = 0; i < actions.count(); ++i) { in createContextMenu() 144 if (actions.at(i)->isVisible()) in createContextMenu() 145 isAnyActionEnabled |= actions.at(i)->isEnabled(); in createContextMenu()
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/ |
D | PluginObjectMac.mm | 52 NSDictionary *actions = [NSDictionary dictionaryWithObjectsAndKeys: 66 [caLayer setStyle:[NSDictionary dictionaryWithObject:actions forKey:@"actions"]]; 80 [sublayer setStyle:[NSDictionary dictionaryWithObject:actions forKey:@"actions"]];
|
/external/chromium/chrome/browser/ |
D | enumerate_modules_model_win.cc | 839 string16 actions; in GetModuleList() local 845 actions = l10n_util::GetStringUTF16( in GetModuleList() 849 if (!actions.empty()) in GetModuleList() 850 actions += separator; in GetModuleList() 851 actions = l10n_util::GetStringUTF16( in GetModuleList() 855 if (!actions.empty()) in GetModuleList() 856 actions += separator; in GetModuleList() 857 actions += l10n_util::GetStringUTF16( in GetModuleList() 861 if (!actions.empty()) in GetModuleList() 862 actions += separator; in GetModuleList() [all …]
|
/external/icu4c/common/ |
D | rbbicst.pl | 178 if ($actions{$state_action_name[$state]} == 0) { 179 $actions{$state_func_name[$state]} = 1; 258 foreach $act (sort keys %actions) { 373 foreach $act (sort keys %actions) {
|
/external/llvm/tools/llvmc/examples/mcc16/ |
D | PIC16.td | 76 (actions (case 105 // (actions (case 119 (actions (case 138 (actions (case 153 (actions (case 162 (actions (case 175 (actions (case 188 (actions (case
|
/external/icu4c/i18n/ |
D | regexcst.pl | 179 if ($actions{$state_action_name[$state]} == 0) { 180 $actions{$state_func_name[$state]} = 1; 251 foreach $act (keys %actions) {
|
/external/chromium/testing/gmock/ |
D | CHANGES | 7 * New actions: ReturnPointee() and ReturnRefOfCopy(). 59 * New feature: ACTION_TEMPLATE for defining templatized actions. 63 * New feature: actions ReturnArg<k>(), ReturnNew<T>(...), and 81 * New feature: macros for easily defining new actions. 83 * New feature: actions for accessing function arguments and throwing
|
D | Makefile.am | 33 include/gmock/gmock-actions.h \ 35 include/gmock/gmock-generated-actions.h \ 40 include/gmock/gmock-more-actions.h \ 134 include/gmock/gmock-generated-actions.h.pump \
|
/external/llvm/include/llvm/CompilerDriver/ |
D | Common.td | 29 def actions; 84 // Possible actions. 107 // Option preprocessor - actions taken during plugin loading.
|
/external/llvm/tools/llvmc/src/ |
D | Clang.td | 24 (actions (case (switch_on "E"), 52 (actions (case (not_empty "Wa,"), (forward_value "Wa,"), 62 (actions (case
|
/external/antlr/src/org/antlr/runtime/tree/ |
D | TreeFilter.java | 111 TreeVisitorAction actions = new TreeVisitorAction() { in downup() local 115 v.visit(t, actions); in downup()
|
D | TreeRewriter.java | 91 TreeVisitorAction actions = new TreeVisitorAction() { in downup() local 95 t = v.visit(t, actions); in downup()
|
/external/webkit/Source/WebKit2/UIProcess/API/qt/ |
D | qwkpage.cpp | 98 memset(actions, 0, sizeof(actions)); in QWKPagePrivate() 342 QAction* a = actions[action]; in updateAction() 729 if (d->actions[action]) in action() 730 return d->actions[action]; in action() 794 d->actions[action] = a; in action()
|
/external/chromium/testing/ |
D | gmock.gyp | 16 'gmock/include/gmock/gmock-actions.h', 18 'gmock/include/gmock/gmock-generated-actions.h',
|
/external/clang/lib/Parse/ |
D | Parser.cpp | 26 Parser::Parser(Preprocessor &pp, Sema &actions) in Parser() argument 27 : PP(pp), Actions(actions), Diags(PP.getDiagnostics()), in Parser() 38 AlignHandler.reset(new PragmaAlignHandler(actions)); in Parser() 41 GCCVisibilityHandler.reset(new PragmaGCCVisibilityHandler(actions)); in Parser() 44 OptionsHandler.reset(new PragmaOptionsHandler(actions)); in Parser() 47 PackHandler.reset(new PragmaPackHandler(actions)); in Parser() 50 MSStructHandler.reset(new PragmaMSStructHandler(actions)); in Parser() 53 UnusedHandler.reset(new PragmaUnusedHandler(actions, *this)); in Parser() 56 WeakHandler.reset(new PragmaWeakHandler(actions)); in Parser() 59 FPContractHandler.reset(new PragmaFPContractHandler(actions, *this)); in Parser() [all …]
|
/external/bison/tests/ |
D | testsuite.at | 40 # Testing that user actions are properly performed. 41 m4_include([actions.at])
|
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebpage.cpp | 255 static inline DragOperation dropActionToDragOp(Qt::DropActions actions) in dropActionToDragOp() argument 258 if (actions & Qt::CopyAction) in dropActionToDragOp() 262 if (actions & Qt::MoveAction) in dropActionToDragOp() 264 if (actions & Qt::LinkAction) in dropActionToDragOp() 269 static inline Qt::DropAction dragOpToDropAction(unsigned actions) in dragOpToDropAction() argument 272 if (actions & DragOperationCopy) in dragOpToDropAction() 274 else if (actions & DragOperationMove) in dragOpToDropAction() 278 else if (actions & DragOperationGeneric) in dragOpToDropAction() 280 else if (actions & DragOperationLink) in dragOpToDropAction() 347 memset(actions, 0, sizeof(actions)); in QWebPagePrivate() [all …]
|
/external/webkit/LayoutTests/fast/encoding/GBK/ |
D | close-gbk-converter-expected.txt | 1 This tests performs a sequence of actions that result in a GBK converter with substitution enabled …
|
/external/webkit/Source/WebCore/gyp/ |
D | WebCore.gyp | 141 # FIXME: A number of these actions aren't supposed to run if "${ACTION}" = "installhdrs" 206 'actions': [{ 218 'actions': [{ 230 'actions': [{
|
/external/bluetooth/bluez/scripts/ |
D | bluetooth.rules.in | 2 # On remove actions, bluetoothd should go away by itself
|
/external/llvm/tools/llvmc/doc/ |
D | LLVMC-Reference.rst | 343 LLVMC. It can be used to calculate edge weights, program actions and modify the 411 the argument. At the moment works only with ``command`` and ``actions`` (on 490 documentation on `actions`__. 504 - ``actions`` - A single big ``case`` expression that specifies how this tool 519 the ``actions`` property is for. The next example illustrates this feature:: 527 (actions (case (not_empty "L"), (forward "L"), 533 The ``actions`` tool property is implemented on top of the omnipresent ``case`` 534 expression. It associates one or more different *actions* with given 535 conditions - in the example, the actions are ``forward``, which forwards a given 537 execution command. Multiple actions can be associated with a single condition by [all …]
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/ |
D | jsunittest.js | 368 DrNicTest.Unit.Logger.prototype.appendActionButtons = function(actions) { argument 842 var test = this.tests[this.currentTest], actions; 858 if (actions = test.actions) this.logger.appendActionButtons(actions); 878 this.actions = {}; 945 this.actions['retry with throw'] = function() { test.run(true) }; method
|