HomeSort by relevance Sort by last modified time
    Searched refs:ACTION (Results 51 - 75 of 89) sorted by null

1 23 4

  /external/webkit/Tools/android/flex-2.5.4a/MISC/MVS/
initscan-mvs.c 135 /* action number for EOF rule of a given start state */
138 /* special action meaning "start processing a new file" */
241 #define ACTION 12
254 * corresponding action - sets up yytext
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/
initscan.c 89 /* Action number for EOF rule of a given start state. */
92 /* Special action meaning "start processing a new file". */
277 * corresponding action - sets up yytext.
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_default_unittest.cc 138 ACTION(STLDeleteElements0) {
142 ACTION(QuitUIMessageLoop) {
168 "http://foo.example.com/action",
215 "http://foo.example.com/action",
225 "http://bar.example.com/action",
235 "http://baz.example.com/action",
247 "http://blacklisted.example.com/action",
257 "http://blacklisted2.example.com/action",
376 "http://bar.example.com/action",
445 "http://bar.example.com/action",
    [all...]
password_store_win_unittest.cc 136 ACTION(STLDeleteElements0) {
140 ACTION(QuitUIMessageLoop) {
189 "http://example.com/action",
203 "http://example.com/action",
242 "http://example.com/action",
297 "http://example.com/action",
311 "http://example.com/action",
354 "http://foo.example.com/action",
364 "http://bar.example.com/action",
374 "http://baz.example.com/action",
    [all...]
password_store_x_unittest.cc 239 std::string action = StringPrintf("http://%zu.%s.com/action", i, domain); local
244 action.c_str(),
319 ACTION(STLDeleteElements0) {
323 ACTION(QuitUIMessageLoop) {
448 "http://bar.example.com/action",
525 "http://bar.example.com/action",
password_store_mac_unittest.cc 36 ACTION(STLDeleteElements0) {
40 ACTION(QuitUIMessageLoop) {
133 const char* action; member in struct:PasswordFormData
157 if (form_data.action)
158 form->action = GURL(form_data.action);
204 EXPECT_EQ(GURL(expectation->action), form->action) << test_label;
616 different_form.action = GURL("http://some.domain.com/action.cgi")
    [all...]
  /cts/tools/dasm/src/java_cup/
lexer.java 17 * "code" CODE "action" ACTION
117 keywords.put("action", new Integer(sym.ACTION));
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
CaptureActivity.java 120 String action = intent == null ? null : intent.getAction(); local
122 if (intent != null && action != null) {
123 if (action.equals(Intents.Scan.ACTION)) {