HomeSort by relevance Sort by last modified time
    Searched defs:KEYWORD (Results 1 - 16 of 16) sorted by null

  /external/clang/lib/Basic/
TokenKinds.cpp 20 #define KEYWORD(X,Y) #X,
43 #define KEYWORD(X,Y) case kw_ ## X: return #X;
IdentifierTable.cpp 85 // Add the '_experimental_modules_import' contextual keyword.
90 // Language Keyword Implementation
119 /// The C90/C99/CPP/CPP0x flags are set to 3 if the token is a keyword in a
123 static void AddKeyword(StringRef Keyword,
146 // Don't add this keyword under MSVCCompat.
149 // Don't add this keyword if disabled in this language.
153 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
158 /// AddCXXOperatorKeyword - Register a C++ operator keyword alternative
160 static void AddCXXOperatorKeyword(StringRef Keyword,
163 IdentifierInfo &Info = Table.get(Keyword, TokenCode)
    [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.
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
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.
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
  /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
  /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/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/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/chrome/common/extensions/docs/examples/api/webNavigation/basic/
navigation_collector.js 87 KEYWORD: 'keyword',
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_lexer.cc     [all...]
  /external/chromium_org/v8/test/cctest/
test-parsing.cc 50 const char* keyword; member in struct:KeywordToken
55 #define KEYWORD(t, s, d) { s, i::Token::t },
56 TOKEN_LIST(IGNORE_TOKEN, KEYWORD)
57 #undef KEYWORD
64 for (int i = 0; (key_token = keywords[i]).keyword != NULL; i++) {
65 const i::byte* keyword = local
66 reinterpret_cast<const i::byte*>(key_token.keyword);
67 int length = i::StrLength(key_token.keyword);
70 i::Utf8ToUtf16CharacterStream stream(keyword, length);
80 // Removing characters will make keyword matching fail
    [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp 131 #define KEYWORD(Keyword,Conditions) .Case(#Keyword, true)
132 #define ALIAS(Keyword, AliasOf, Conditions) .Case(Keyword, true)
    [all...]
  /external/mksh/src/
sh.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 

Completed in 2402 milliseconds