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

1 2

  /system/core/init/
ueventd_keywords.h 1 #ifndef KEYWORD
3 #define KEYWORD(symbol, flags, nargs) K_##symbol,
7 KEYWORD(subsystem, SECTION, 1)
8 KEYWORD(devname, OPTION, 1)
9 KEYWORD(dirname, OPTION, 1)
14 #undef KEYWORD
keywords.h 2 #ifndef KEYWORD
45 #define KEYWORD(symbol, flags, nargs, func) K_##symbol,
49 KEYWORD(capability, OPTION, 0, 0)
50 KEYWORD(chdir, COMMAND, 1, do_chdir)
51 KEYWORD(chroot, COMMAND, 1, do_chroot)
52 KEYWORD(class, OPTION, 0, 0)
53 KEYWORD(class_start, COMMAND, 1, do_class_start)
54 KEYWORD(class_stop, COMMAND, 1, do_class_stop)
55 KEYWORD(class_reset, COMMAND, 1, do_class_reset)
56 KEYWORD(console, OPTION, 0, 0
    [all...]
ueventd_parser.c 40 #define KEYWORD(symbol, flags, nargs) \
51 #undef KEYWORD
  /external/llvm/lib/AsmParser/
LLLexer.cpp 465 /// Keyword sdiv, float, ...
502 // Otherwise, this was a letter sequence. See which keyword this is.
507 #define KEYWORD(STR) \
513 KEYWORD(true); KEYWORD(false);
514 KEYWORD(declare); KEYWORD(define);
515 KEYWORD(global); KEYWORD(constant);
517 KEYWORD(private)
    [all...]
  /external/clang/lib/Basic/
TokenKinds.cpp 20 #define KEYWORD(X,Y) #X,
43 #define KEYWORD(X,Y) case kw_ ## X: return #X;
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_lexer.cc     [all...]
  /external/chromium_org/v8/src/
scanner.cc 903 // Keyword Matcher
905 #define KEYWORDS(KEYWORD_GROUP, KEYWORD) \
907 KEYWORD("break", Token::BREAK) \
909 KEYWORD("case", Token::CASE) \
910 KEYWORD("catch", Token::CATCH) \
911 KEYWORD("class", \
913 KEYWORD("const", Token::CONST) \
914 KEYWORD("continue", Token::CONTINUE) \
916 KEYWORD("debugger", Token::DEBUGGER) \
917 KEYWORD("default", Token::DEFAULT)
    [all...]
  /external/chromium_org/ui/base/
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 125 Type.KEYWORD) and not last_code.IsKeyword('return'):
ecmametadatapass.py 111 # A set of variable declarations appearing after the 'var' keyword.
362 elif (token_type == TokenType.KEYWORD and
366 (next_code.type != TokenType.KEYWORD or next_code.string != 'if')):
413 elif (token_type == TokenType.KEYWORD and
tokenutil_test.py 168 'var', javascripttokens.JavaScriptTokenType.KEYWORD, 1, 1)
indentation.py 181 elif token_type == Type.KEYWORD and token.string in ('case', 'default'):
243 elif token_type == Type.KEYWORD and token.string == 'return':
  /external/mksh/src/
syn.c 240 musthave(emark, KEYWORD|sALIAS);
273 syniocf = KEYWORD|sALIAS;
274 switch (c = token(cf|KEYWORD|sALIAS|VARASN)) {
286 syniocf &= ~(KEYWORD|sALIAS);
386 /* leave KEYWORD in syniocf (allow if (( 1 )) then ...) */
404 /* leave KEYWORD in syniocf (allow if [[ -n 1 ]] then ...) */
458 musthave(FI, KEYWORD|sALIAS);
463 syniocf &= ~(KEYWORD|sALIAS);
471 syniocf &= ~(KEYWORD|sALIAS);
522 c = token(CONTIN|KEYWORD|sALIAS)
    [all...]
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_popup_model.h 26 KEYWORD
89 // If the selected line has both a normal match and a keyword match, this can
135 // If the selected line has both a normal match and a keyword match, this
136 // determines whether the normal match (if NORMAL) or the keyword match
137 // (if KEYWORD) is selected.
omnibox_controller.cc 146 popup_->selected_line_state() == OmniboxPopupModel::KEYWORD)
  /external/ltrace/
read_config_file.c 95 #define KEYWORD(KWD, TYPE) \
104 KEYWORD("void", ARGTYPE_VOID);
105 KEYWORD("int", ARGTYPE_INT);
106 KEYWORD("uint", ARGTYPE_UINT);
107 KEYWORD("long", ARGTYPE_LONG);
108 KEYWORD("ulong", ARGTYPE_ULONG);
109 KEYWORD("char", ARGTYPE_CHAR);
110 KEYWORD("short", ARGTYPE_SHORT);
111 KEYWORD("ushort", ARGTYPE_USHORT);
112 KEYWORD("float", ARGTYPE_FLOAT)
    [all...]
  /external/lldb/source/Commands/
CommandObjectMemory.cpp 412 KEYWORD("const") \
413 KEYWORD("volatile") \
414 KEYWORD("restrict") \
415 KEYWORD("struct") \
416 KEYWORD("class") \
417 KEYWORD("union")
419 #define KEYWORD(s) s,
424 #undef KEYWORD
426 #define KEYWORD(s) (sizeof(s) - 1),
431 #undef KEYWORD
441 const char *keyword = g_keywords[i]; local
    [all...]
  /external/chromium_org/components/omnibox/
autocomplete_provider.cc 35 return "Keyword";
68 return metrics::OmniboxEventProto::KEYWORD;
  /external/chromium_org/sync/protocol/
proto_enum_conversions.cc 63 ENUM_CASE(sync_pb::SyncEnums, KEYWORD);

Completed in 340 milliseconds

1 2