HomeSort by relevance Sort by last modified time
    Searched refs:KEYWORD (Results 1 - 25 of 52) sorted by null

1 2 3

  /system/core/init/
keywords.h 2 #ifndef KEYWORD
42 #define KEYWORD(symbol, flags, nargs, func) K_##symbol,
46 KEYWORD(capability, OPTION, 0, 0)
47 KEYWORD(chdir, COMMAND, 1, do_chdir)
48 KEYWORD(chroot, COMMAND, 1, do_chroot)
49 KEYWORD(class, OPTION, 0, 0)
50 KEYWORD(class_start, COMMAND, 1, do_class_start)
51 KEYWORD(class_stop, COMMAND, 1, do_class_stop)
52 KEYWORD(class_reset, COMMAND, 1, do_class_reset)
53 KEYWORD(console, OPTION, 0, 0
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 426 /// Keyword sdiv, float, ...
463 // Otherwise, this was a letter sequence. See which keyword this is.
468 #define KEYWORD(STR) \
474 KEYWORD(true); KEYWORD(false);
475 KEYWORD(declare); KEYWORD(define);
476 KEYWORD(global); KEYWORD(constant);
478 KEYWORD(private)
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_lexer.cc     [all...]
  /external/clang/lib/Basic/
TokenKinds.cpp 20 #define KEYWORD(X,Y) #X,
  /external/chromium_org/content/public/common/
page_transition_types_list.h 52 // See also KEYWORD.
79 // The url was generated from a replaceable keyword other than the default
80 // search provider. If the user types a keyword (which also applies to
84 // url 'http://' + keyword. For example, if you do a tab-to-search against
85 // wikipedia the generated url has a transition qualifer of KEYWORD, and
88 PAGE_TRANSITION(KEYWORD, 9)
90 // Corresponds to a visit generated for a keyword. See description of
91 // KEYWORD for more details.
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascripttokens.py 57 KEYWORD = 'keyword'
99 def IsKeyword(self, keyword):
100 """Tests if this token is the given keyword.
103 keyword: The keyword to compare to.
106 True if this token is a keyword token with the given name.
108 return self.type == JavaScriptTokenType.KEYWORD and self.string == keyword
javascriptstatetracker.py 103 Type.KEYWORD) and not last_code.IsKeyword('return'):
javascripttokenizer.py 147 # Match a keyword string followed by a non-identifier character in order to
149 KEYWORD = re.compile('(%s)((?=[^%s])|$)' % (
265 Matcher(KEYWORD, Type.KEYWORD),
308 # Matchers for code after the function keyword.
ecmametadatapass.py 111 # A set of variable declarations appearing after the 'var' keyword.
315 elif (token_type == TokenType.KEYWORD and
319 (next_code.type != TokenType.KEYWORD or next_code.string != 'if')):
366 elif (token_type == TokenType.KEYWORD and
indentation.py 181 elif token_type == Type.KEYWORD and token.string in ('case', 'default'):
242 elif token_type == Type.KEYWORD and token.string == 'return':
  /external/chromium_org/third_party/closure_linter/closure_linter/
javascripttokens.py 57 KEYWORD = 'keyword'
99 def IsKeyword(self, keyword):
100 """Tests if this token is the given keyword.
103 keyword: The keyword to compare to.
106 True if this token is a keyword token with the given name.
108 return self.type == JavaScriptTokenType.KEYWORD and self.string == keyword
javascriptstatetracker.py 103 Type.KEYWORD) and not last_code.IsKeyword('return'):
javascripttokenizer.py 147 # Match a keyword string followed by a non-identifier character in order to
149 KEYWORD = re.compile('(%s)((?=[^%s])|$)' % (
265 Matcher(KEYWORD, Type.KEYWORD),
308 # Matchers for code after the function keyword.
ecmametadatapass.py 111 # A set of variable declarations appearing after the 'var' keyword.
315 elif (token_type == TokenType.KEYWORD and
319 (next_code.type != TokenType.KEYWORD or next_code.string != 'if')):
366 elif (token_type == TokenType.KEYWORD and
indentation.py 181 elif token_type == Type.KEYWORD and token.string in ('case', 'default'):
242 elif token_type == Type.KEYWORD and token.string == 'return':
  /external/mksh/src/
syn.c 241 musthave(emark, KEYWORD|sALIAS);
274 syniocf = KEYWORD|sALIAS;
275 switch (c = token(cf|KEYWORD|sALIAS|VARASN)) {
287 syniocf &= ~(KEYWORD|sALIAS);
387 /* leave KEYWORD in syniocf (allow if (( 1 )) then ...) */
405 /* leave KEYWORD in syniocf (allow if [[ -n 1 ]] then ...) */
459 musthave(FI, KEYWORD|sALIAS);
464 syniocf &= ~(KEYWORD|sALIAS);
472 syniocf &= ~(KEYWORD|sALIAS);
523 c = token(CONTIN|KEYWORD|sALIAS)
    [all...]
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_popup_model.h 26 KEYWORD
79 // If the selected line has both a normal match and a keyword match, this can
122 // If the selected line has both a normal match and a keyword match, this
123 // determines whether the normal match (if NORMAL) or the keyword match
124 // (if KEYWORD) is selected.
omnibox_controller.cc 94 popup_->selected_line_state() == OmniboxPopupModel::KEYWORD)
  /external/chromium/chrome/browser/sync/protocol/
proto_enum_conversions.cc 49 ENUM_CASE(sync_pb::TabNavigation, KEYWORD);
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_provider.cc 50 return "Keyword";
87 return metrics::OmniboxEventProto::KEYWORD;
  /external/chromium/chrome/browser/history/
in_memory_history_backend.cc 89 primary_type == PageTransition::KEYWORD ||
  /external/chromium_org/sync/protocol/
proto_enum_conversions.cc 49 ENUM_CASE(sync_pb::SyncEnums, KEYWORD);
  /external/v8/test/cctest/
test-parsing.cc 46 const char* keyword; member in struct:KeywordToken
51 #define KEYWORD(t, s, d) { s, i::Token::t },
52 TOKEN_LIST(IGNORE_TOKEN, KEYWORD)
53 #undef KEYWORD
60 for (int i = 0; (key_token = keywords[i]).keyword != NULL; i++) {
61 const i::byte* keyword = local
62 reinterpret_cast<const i::byte*>(key_token.keyword);
63 int length = i::StrLength(key_token.keyword);
66 i::Utf8ToUtf16CharacterStream stream(keyword, length);
75 // Removing characters will make keyword matching fail
    [all...]
  /external/chromium/chrome/browser/autocomplete/
keyword_provider.cc 25 // Helper functor for Start(), for ending keyword mode unless explicitly told
59 : AutocompleteProvider(listener, profile, "Keyword"),
76 : AutocompleteProvider(listener, NULL, "Keyword"),
84 // Helper functor for Start(), for sorting keyword matches by quality.
87 // A keyword is of higher quality when a greater fraction of it has been
91 // probably better rankings than the fraction of the keyword typed. We should
114 string16 keyword;
115 if (!ExtractKeywordFromInput(input, &keyword, remaining_input))
124 const TemplateURL* template_url = model->GetTemplateURLForKeyword(keyword);
130 // This object ensures we end keyword mode if we exit the function withou
157 string16 keyword, remaining_input; local
464 string16 keyword, remaining_input; local
    [all...]
  /external/chromium/chrome/common/
metrics_helpers.cc 270 case PageTransition::KEYWORD:

Completed in 656 milliseconds

1 2 3