HomeSort by: relevance | last modified time | path
    Searched refs:KEYWORD (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLLexer.cpp 447 /// Lex a label, integer type, keyword, or hexadecimal integer constant.
450 /// Keyword sdiv, float, ...
488 // Otherwise, this was a letter sequence. See which keyword this is.
492 StringRef Keyword(StartChar, CurPtr - StartChar);
494 #define KEYWORD(STR) \
496 if (Keyword == #STR) \
500 KEYWORD(true); KEYWORD(false);
501 KEYWORD(declare); KEYWORD(define)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Basic/
TokenKinds.cpp 19 #define KEYWORD(X,Y) #X,
42 #define KEYWORD(X,Y) case kw_ ## X: return #X;
IdentifierTable.cpp 79 // Language Keyword Implementation
115 /// How a keyword is treated in the selected standard.
120 KS_Future // Is a keyword in future standard
125 /// Translates flags as specified in TokenKinds.def into keyword status
164 static void AddKeyword(StringRef Keyword,
169 // Don't add this keyword under MSVCCompat.
174 // Don't add this keyword under OpenCL.
178 // Don't add this keyword if disabled in this language.
182 Table.get(Keyword, AddResult == KS_Future ? tok::identifier : TokenCode);
187 /// AddCXXOperatorKeyword - Register a C++ operator keyword alternativ
    [all...]
  /src/sbin/chkconfig/
chkconfig.sh 92 elif ! grep -s '# KEYWORD:' ${fqp} > /dev/null 2>&1; then
94 usage "${fqp} doesn't contain a KEYWORD directive. Use -f"
99 is_chkconfig=`grep -s '# KEYWORD:' ${fqp}|grep -s ${KEYWORD}`
115 # Adds the 'chkconfig' keyword to $1 if it is not
124 echo '# KEYWORD: chkconfig' >> ${fqp}
171 KEYWORD='chkconfig'
208 for i in `(cd /etc/rc.d; rcorder -k ${KEYWORD} *)`; do
  /src/bin/ksh/
syn.c 203 musthave(emark, KEYWORD|ALIAS);
223 syniocf = KEYWORD|ALIAS;
224 switch (c = token(cf|KEYWORD|ALIAS|VARASN)) {
235 syniocf &= ~(KEYWORD|ALIAS);
304 /* Leave KEYWORD in syniocf (allow if (( 1 )) then ...) */
317 /* Leave KEYWORD in syniocf (allow if [[ -n 1 ]] then ...) */
372 musthave(FI, KEYWORD|ALIAS);
377 syniocf &= ~(KEYWORD|ALIAS);
385 syniocf &= ~(KEYWORD|ALIAS);
431 c = token(CONTIN|KEYWORD|ALIAS)
    [all...]
lex.h 111 #define KEYWORD BIT(3) /* recognize keywords */
115 #define ESACONLY BIT(7) /* only accept esac keyword */
lex.c 732 if (*ident != '\0' && (cf&(KEYWORD|ALIAS))) {
737 if ((cf & KEYWORD) && (p = mytsearch(&keywords, ident, h))
  /src/external/gpl3/binutils/dist/gas/config/
bfin-lex.l 41 and <INITIAL> would match some keyword rules only with
43 %s KEYWORD
292 <KEYWORD>[pP][rR][eE][fF][eE][tT][cC][hH] return PREFETCH;
293 <KEYWORD>[uU][nN][lL][iI][nN][kK] return UNLINK;
294 <KEYWORD>[lL][iI][nN][kK] return LINK;
295 <KEYWORD>[iI][dD][lL][eE] return IDLE;
296 <KEYWORD>[iI][fF][lL][uU][sS][hH] return IFLUSH;
297 <KEYWORD>[fF][lL][uU][sS][hH][iI][nN][vV] return FLUSHINV;
298 <KEYWORD>[fF][lL][uU][sS][hH] return FLUSH;
542 /* Our start state is KEYWORD as we hav
    [all...]
bfin-lex.c 829 and <INITIAL> would match some keyword rules only with
835 #define KEYWORD 1
2338 case YY_STATE_EOF(KEYWORD):
3546 /* Our start state is KEYWORD as we have
3552 BEGIN KEYWORD;
  /src/external/gpl3/binutils.old/dist/gas/config/
bfin-lex.l 41 and <INITIAL> would match some keyword rules only with
43 %s KEYWORD
292 <KEYWORD>[pP][rR][eE][fF][eE][tT][cC][hH] return PREFETCH;
293 <KEYWORD>[uU][nN][lL][iI][nN][kK] return UNLINK;
294 <KEYWORD>[lL][iI][nN][kK] return LINK;
295 <KEYWORD>[iI][dD][lL][eE] return IDLE;
296 <KEYWORD>[iI][fF][lL][uU][sS][hH] return IFLUSH;
297 <KEYWORD>[fF][lL][uU][sS][hH][iI][nN][vV] return FLUSHINV;
298 <KEYWORD>[fF][lL][uU][sS][hH] return FLUSH;
542 /* Our start state is KEYWORD as we hav
    [all...]
bfin-lex.c 829 and <INITIAL> would match some keyword rules only with
835 #define KEYWORD 1
2338 case YY_STATE_EOF(KEYWORD):
3546 /* Our start state is KEYWORD as we have
3552 BEGIN KEYWORD;
  /src/external/bsd/pcc/dist/pcc/cc/ccom/
scan.l 99 s->sclass == KEYWORD)
278 s->sclass = KEYWORD;
330 cerror("keyword %s not found", kw->name);
pass1.h 65 #define KEYWORD 7
  /src/external/gpl3/gdb.old/dist/gdb/
linespec.c 74 /* A linespec keyword ("if"/"thread"/"task"/"-force-condition").
76 KEYWORD,
231 /* A keyword */
272 /* A keyword */
273 const char *keyword; member in union:linespec_token::__anon234
472 whitespace, we may have found a keyword. It is only a
473 keyword if it is not followed by another keyword.
476 since this keyword does not take any arguments. Otherwise,
477 it should be followed by a keyword
892 const char *keyword; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
linespec.c 74 /* A linespec keyword ("if"/"thread"/"task"/"-force-condition").
76 KEYWORD,
259 /* A keyword */
300 /* A keyword */
301 const char *keyword; member in union:linespec_token::__anon316
498 whitespace, we may have found a keyword. It is only a
499 keyword if it is not followed by another keyword.
502 since this keyword does not take any arguments. Otherwise,
503 it should be followed by a keyword
918 const char *keyword; local
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
FormatToken.h 577 /// Returns \c true if this is a keyword that can be used
1046 /// \c false if it is a keyword or a pseudo keyword.
1104 #define KEYWORD(X, Y) case tok::kw_##X:
1106 // #undef KEYWORD is not needed -- it's #undef-ed at the end of
1115 /// Returns \c true if \p Tok is a C# keyword, returns
1172 /// The JavaScript keywords beyond the C++ keyword set.
1175 /// The C# keywords beyond the C++ keyword set
  /src/external/apache2/llvm/dist/clang/lib/Lex/
ModuleMap.cpp 233 // The lack of 'framework' keyword in a module declaration it's a simple
359 #define KEYWORD(Keyword,Conditions) .Case(#Keyword, true)
360 #define ALIAS(Keyword, AliasOf, Conditions) .Case(Keyword, true)
1844 // Parse 'explicit' or 'framework' keyword, if present.
1850 // Parse 'explicit' keyword, if present.
1856 // Parse 'framework' keyword, if present.
1862 // Parse 'module' keyword
    [all...]

Completed in 39 milliseconds