HomeSort by relevance Sort by last modified time
    Searched defs:action (Results 1 - 25 of 1466) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/extensions/activity_log/
activity_log_policy_unittest.cc 19 scoped_refptr<Action> action = local
20 new Action("punky",
22 Action::ACTION_API_CALL,
24 action->mutable_args()->AppendString("woof");
25 action->set_page_url(GURL("http://www.google.com/"));
26 action->set_page_incognito(true);
27 action->set_page_title("private");
28 action->set_arg_url(GURL("http://www.youtube.com/?privatekey"));
30 ASSERT_EQ("<incognito>http://www.google.com/", action->SerializePageUrl())
42 scoped_refptr<Action> action = new Action( local
67 scoped_refptr<Action> action = local
86 scoped_refptr<Action> action = local
    [all...]
  /external/bluetooth/bluedroid/bta/jv/
bta_jv_main.c 38 /* state machine action enumeration list */
41 /* type for action functions */
44 /* action function list */
95 UINT16 action = (p_msg->event & 0x00ff); local
96 /* execute action functions */
98 if(action < BTA_JV_NUM_ACTIONS)
100 (*bta_jv_action[action])((tBTA_JV_MSG*)p_msg);
  /external/bluetooth/bluedroid/bta/mce/
bta_mce_main.c 39 /* state machine action enumeration list */
42 /* type for action functions */
45 /* action function list */
67 UINT16 action = (p_msg->event & 0x00ff); local
69 /* execute action functions */
70 if(action < BTA_MCE_NUM_ACTIONS)
72 (*bta_mce_action[action])((tBTA_MCE_MSG*)p_msg);
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_action_unittest.cc 22 SpellcheckAction action; local
24 action.type = kFinalActions[i];
25 ASSERT_TRUE(action.IsFinal());
34 SpellcheckAction action; local
36 action.type = kPendingActions[i];
37 ASSERT_FALSE(action.IsFinal());
42 SpellcheckAction action; local
43 action.type = SpellcheckAction::TYPE_PENDING;
44 action.Finalize();
45 ASSERT_EQ(SpellcheckAction::TYPE_NO_ACTION, action.type)
55 SpellcheckAction action; member in struct:__anon9334
    [all...]
misspelling.h 9 // |action| instead of asking them how they feel about a spellcheck suggestion.
28 // misspelling.action.type = SpellcheckAction::TYPE_SELECT;
29 // misspelling.action.index = 0;
65 // User action.
66 SpellcheckAction action; member in class:Misspelling
68 // The time when the user applied the action.
  /external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
file_browser_handler_manifest_unittest.cc 77 const FileBrowserHandler* action = handlers->at(0).get(); local
79 EXPECT_EQ("ExtremelyCoolAction", action->id());
80 EXPECT_EQ("Be Amazed", action->title());
81 EXPECT_EQ("icon.png", action->icon_path());
82 const extensions::URLPatternSet& patterns = action->file_url_patterns();
84 EXPECT_TRUE(action->MatchesURL(
86 EXPECT_FALSE(action->HasCreateAccessPermission());
87 EXPECT_TRUE(action->CanRead());
88 EXPECT_TRUE(action->CanWrite());
113 const FileBrowserHandler* action = handlers->at(0).get() local
144 const FileBrowserHandler* action = handlers->at(0).get(); local
    [all...]
  /external/chromium_org/tools/gyp/test/ninja/normalize-paths-win/
gyptest-normalize-paths.py 38 action = open(test.built_file_path('obj/action.ninja')).read() variable
39 if '..\\..\\out\\Default' in action:
41 if '..\\..\\SomethingElse' in action or 'SomethingElse' not in action:
43 if '..\\..\\SomeOtherInput' in action or 'SomeOtherInput' not in action:
  /external/qemu/distrib/sdl-1.2.15/src/
SDL_fatal.c 64 struct sigaction action; local
67 sigaction(SDL_fatal_signals[i], NULL, &action);
68 if ( action.sa_handler == SIG_DFL ) {
69 action.sa_handler = SDL_Parachute;
70 sigaction(SDL_fatal_signals[i], &action, NULL);
75 sigaction(SIGALRM, NULL, &action);
76 if ( action.sa_handler == SIG_DFL ) {
77 action.sa_handler = SIG_IGN;
78 sigaction(SIGALRM, &action, NULL);
99 struct sigaction action; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_quit.c 49 struct sigaction action; local
50 sigaction(SIGINT, NULL, &action);
52 if ( action.sa_handler == SIG_DFL && action.sa_sigaction == (void*)SIG_DFL ) {
54 if ( action.sa_handler == SIG_DFL ) {
56 action.sa_handler = SDL_HandleSIG;
57 sigaction(SIGINT, &action, NULL);
59 sigaction(SIGTERM, NULL, &action);
61 if ( action.sa_handler == SIG_DFL && action.sa_sigaction == (void*)SIG_DFL )
86 struct sigaction action; local
    [all...]
  /cts/suite/audio_quality/test/
TaskProcessTest.cpp 29 TaskGeneric* action = NULL; local
30 mTestCase = getTaskCase(setup, action);
33 ASSERT_TRUE(action != NULL);
41 ASSERT_TRUE(action->addChild(mSequential));
TaskSequentialTest.cpp 26 TaskGeneric* action = NULL; local
27 mTestCase = getTaskCase(setup, action);
30 ASSERT_TRUE(action != NULL);
32 action->addChild(mSequential);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeWizard.h 47 NSInteger action; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeWizard.h 47 NSInteger action; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeWizard.h 47 NSInteger action; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeWizard.h 48 NSInteger action; variable
59 @property NSInteger action; variable
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Barrier.java 51 action(); // perform the requested operation method
60 public void action() { method in class:Barrier
  /external/chromium_org/build/android/pylib/device/
intent.py 13 def __init__(self, action='android.intent.action.VIEW', activity=None,
19 action: A string containing the action.
31 self._action = action
49 def action(self): member in class:Intent
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_tree_browser_cell.h 13 // browser view. This cell customization adds target and action support
27 @property(nonatomic, assign) SEL action; variable
  /external/chromium_org/chrome/common/extensions/api/extension_action/
browser_action_handler.cc 36 return false; // Failed to parse browser action definition.
47 const ActionInfo* action = ActionInfo::GetBrowserActionInfo(extension); local
48 if (action && !action->default_icon.empty() &&
50 action->default_icon,
page_action_manifest_unittest.cc 64 scoped_ptr<ActionInfo> action; local
67 action = LoadAction("page_action_empty.json");
68 ASSERT_TRUE(action);
70 // Now setup some values to use in the action.
75 action = LoadAction("page_action.json");
76 ASSERT_TRUE(action);
77 ASSERT_EQ(id, action->id);
80 ASSERT_EQ(name, action->default_title);
82 action->default_icon.Get(extension_misc::EXTENSION_ICON_ACTION,
86 action = LoadAction("page_action_type.json")
    [all...]
  /external/chromium_org/components/autofill/core/common/
form_data.h 34 // The action target of the form.
35 GURL action; member in struct:autofill::FormData
  /external/chromium_org/tools/deep_memory_profiler/
dmprof.py 62 action = sys.argv.pop(1) variable
72 errorcode = COMMANDS[action]().do(sys.argv)
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowKeyEvent.java 10 private int action; field in class:ShadowKeyEvent
13 public void __constructor__(int action, int code) {
14 this.action = action;
20 return action;
  /libcore/luni/src/main/java/java/nio/charset/
CodingErrorAction.java 27 * Denotes the action to ignore any errors.
33 * Denotes the action to fill in the output with a replacement character
40 * Denotes the action to report the encountered error in an appropriate
47 // The name of this action
48 private String action; field in class:CodingErrorAction
53 private CodingErrorAction(String action) {
54 this.action = action;
58 * Returns a text description of this action indication.
60 * @return a text description of this action indication
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BookmarkSearch.java 35 String action = intent.getAction(); local
36 if (Intent.ACTION_VIEW.equals(action)) {

Completed in 2500 milliseconds

1 2 3 4 5 6 7 8 91011>>