Searched refs:keyword (Results 1 - 25 of 34) sorted by relevance

12

/haiku-buildtools/gcc/gcc/go/gofrontend/
H A Dlex.h23 KEYWORD_INVALID, // Not a keyword.
64 // Token is a keyword.
101 // Make a keyword token.
103 make_keyword_token(Keyword keyword, Location location) argument
106 tok.u_.keyword = keyword;
194 // Return the keyword value for a keyword token.
196 keyword() const function in class:Token
199 return this->u_.keyword;
309 Keyword keyword; member in union:Token::__anon765
[all...]
H A Dlex.cc26 // KEYWORD_INVALID if it is not a keyword.
28 keyword_to_code(const char* keyword, size_t len) const;
30 // Return the string for a keyword.
39 // Mapping from keyword string to keyword code. This array must be
110 // Convert a string to a keyword code. Return KEYWORD_INVALID if the
111 // string is not a keyword.
114 Keywords::keyword_to_code(const char* keyword, size_t len) const argument
117 key.str = keyword;
130 // Convert a keyword cod
[all...]
/haiku-buildtools/isl/
H A Disl_stream.c26 const struct isl_keyword *keyword = (const struct isl_keyword *)entry; local
28 return !strcmp(keyword->name, val);
35 struct isl_keyword *keyword; local
52 keyword = entry->data;
53 return keyword->type;
56 keyword = isl_calloc_type(s->ctx, struct isl_keyword);
57 if (!keyword)
59 keyword->type = s->next_type++;
60 keyword->name = strdup(name);
61 if (!keyword
293 struct isl_keyword *keyword; local
743 struct isl_keyword *keyword = *p; local
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/
H A Dbug053.go10 var len int; // len should not be a keyword - this doesn't compile
/haiku-buildtools/gcc/libcpp/
H A DMakefile.in247 --keyword=_ --keyword=N_ \
248 --keyword=cpp_error:3 \
249 --keyword=cpp_warning:3 \
250 --keyword=cpp_pedwarning:3 \
251 --keyword=cpp_warning_syshdr:3 \
252 --keyword=cpp_error_with_line:5 \
253 --keyword=cpp_warning_with_line:5 \
254 --keyword=cpp_pedwarning_with_line:5 \
255 --keyword
[all...]
/haiku-buildtools/gcc/gcc/testsuite/lib/
H A Dfortran-modules.exp87 regexp "(\[0-9\]+)\[ \t\]+(?:(\[mM\]\[oO\]\[dD\]\[uU\]\[lL\]\[eE\]\[ \t\]+(?!\[pP\]\[rR\]\[oO\]\[cC\]\[eE\]\[dD\]\[uU\]\[rR\]\[eE\]\[ \t\]+)))(\[^ \t;\]*)" $i i lineno keyword mod
H A Dtarget-supports-dg.exp199 error "syntax error, need a single effective-target keyword with optional selector"
329 # The target list might be an effective-target keyword, so replace
391 # The target list might be an effective-target keyword. Replace
459 # support use of an effective-target keyword in place of a list of
462 # The argument to dg-process-target is the keyword "target" or "xfail"
465 # effective-target-keyword
478 # effective-target keyword, or a list of target triplets within quotes or
539 # Extract the 'what' keyword from the argument list.
549 # Extract the rest of the list, which might be a keyword.
553 if [is-effective-target-keyword
[all...]
/haiku-buildtools/gcc/gcc/po/
H A Dexgettext62 kopt=$pwd/$T/keyword-options
85 # Then generate keyword options for xgettext, by scanning for declarations
127 if (n == 1) { keyword = "--keyword=" name }
129 keyword = "--keyword=" name ":" n
131 keyword = keyword "," (n + 1)
134 keyword=keyword "\
[all...]
/haiku-buildtools/legacy/gcc/gcc/
H A Dcpplib.c532 * Decode the keyword and call the appropriate expansion
553 KEYWORD is the keyword-table entry for the directive. */
556 pass_thru_directive (buf, len, pfile, keyword)
560 struct directive *keyword;
562 register unsigned keyword_length = keyword->length;
566 CPP_PUTS_Q (pfile, keyword->name, keyword_length);
607 KEYWORD is the keyword-table entry for #define,
611 do_define (pfile, keyword)
613 struct directive *keyword;
633 mdef = create_definition (macro, end, pfile, keyword
[all...]
H A Dcccp.c609 /* different flavors of hash nodes --- also used in keyword table */
611 T_DEFINE = 1, /* the `#define' keyword */
612 T_INCLUDE, /* the `#include' keyword */
613 T_INCLUDE_NEXT, /* the `#include_next' keyword */
614 T_IMPORT, /* the `#import' keyword */
615 T_IFDEF, /* the `#ifdef' keyword */
616 T_IFNDEF, /* the `#ifndef' keyword */
617 T_IF, /* the `#if' keyword */
2679 /* # keyword: a # must be first nonblank char on the line */
3678 * keyword), plu
[all...]
/haiku-buildtools/gcc/libstdc++-v3/po/
H A DMakefile.am81 --join-existing -o po/$(PACKAGE).pot --keyword=__N \
H A DMakefile.in534 --join-existing -o po/$(PACKAGE).pot --keyword=__N \
/haiku-buildtools/gcc/gcc/cp/
H A Dparser.c782 token->keyword = RID_MAX;
794 /* Check to see if this token is a keyword. */
799 /* Mark this token as a keyword. */
801 /* Record which keyword. */
802 token->keyword = C_RID_CODE (token->u.value);
810 /* Warn about the C++0x keyword (but still treat it as
813 "identifier %qE is a keyword in C++11",
817 particular identifier-turned-keyword again. */
821 token->keyword = RID_MAX;
826 /* This only happens in Objective-C++; it must be a keyword
908 cp_lexer_next_token_is_keyword(cp_lexer* lexer, enum rid keyword) argument
920 cp_lexer_nth_token_is_keyword(cp_lexer* lexer, size_t n, enum rid keyword) argument
928 cp_lexer_next_token_is_not_keyword(cp_lexer* lexer, enum rid keyword) argument
2581 cp_parser_is_keyword(cp_token* token, enum rid keyword) argument
5836 enum rid keyword; local
7176 enum rid keyword = token->keyword; local
7333 enum rid keyword; local
8800 cp_parser_trait_expr(cp_parser* parser, enum rid keyword) argument
9688 enum rid keyword = token->keyword; local
10137 enum rid keyword; local
10806 enum rid keyword; local
10997 enum rid keyword; local
14677 enum rid keyword; local
20645 enum rid keyword; local
24452 cp_parser_sizeof_operand(cp_parser* parser, enum rid keyword) argument
24566 cp_parser_set_storage_class(cp_parser *parser, cp_decl_specifier_seq *decl_specs, enum rid keyword, cp_token *token) argument
24791 cp_parser_required_error(cp_parser *parser, required_token token_desc, bool keyword) argument
25066 cp_parser_require_keyword(cp_parser* parser, enum rid keyword, required_token token_desc) argument
27362 enum rid keyword; local
32648 cp_parser_transaction(cp_parser *parser, enum rid keyword) argument
32696 cp_parser_transaction_expression(cp_parser *parser, enum rid keyword) argument
32771 cp_parser_function_transaction(cp_parser *parser, enum rid keyword) argument
[all...]
H A Dparser.h45 /* If this token is a keyword, this value indicates which keyword.
47 ENUM_BITFIELD (rid) keyword : 8; member in struct:cp_token
55 CPP_NAME token that is not a keyword (i.e., for which KEYWORD is
/haiku-buildtools/gcc/gcc/
H A Dgengtype-parse.c90 "a C++ keyword to ignore"
565 parse_error ("expected an option keyword, have %s", print_cur_token ());
704 /* Any C++ keyword like 'operator' means that we are not looking
814 const char *keyword = advance ();
815 if (strcmp (keyword, "public:") != 0
816 && strcmp (keyword, "private:") != 0
817 && strcmp (keyword, "protected:") != 0)
899 should ignore everything following this keyword up to the
811 const char *keyword = advance (); local
/haiku-buildtools/jam/
H A Dscan.c31 struct keyword { struct
58 * Set parser mode: normal, string, or keyword
280 struct keyword *k;
307 /* keyword lookup when we can: $anything, "anything", \anything */
366 /* don't scan if it's obviously not a keyword or if its */
417 sprintf( buf, "keyword %s", s->string );
/haiku-buildtools/gcc/gcc/c/
H A Dc-parser.c99 /* Make sure RID_MAX hasn't grown past the 8 bits used to hold the keyword in
118 /* If a keyword is disabled, do not enter it into the table
119 and so create a canonical spelling that isn't a keyword. */
183 /* If this token is a keyword, this value indicates which keyword.
185 ENUM_BITFIELD (rid) keyword : 8;
264 token->keyword = RID_MAX;
285 "identifier %qE conflicts with C++ keyword",
292 token->keyword = rid_code;
297 /* We found an Objective-C "pq" keyword (i
468 c_parser_next_token_is_keyword(c_parser *parser, enum rid keyword) argument
888 c_parser_require_keyword(c_parser *parser, enum rid keyword, const char *msgid) argument
9376 enum rid keyword; local
15273 c_parser_transaction(c_parser *parser, enum rid keyword) argument
15321 c_parser_transaction_expression(c_parser *parser, enum rid keyword) argument
[all...]
/haiku-buildtools/legacy/binutils/binutils/
H A Dnlmheader.y191 keyword was given. */
587 const char *keyword;
754 a keyword. */
768 fprintf (stderr, _("%s:%d: illegal character in keyword: %c\n"),
777 if (lex_buf[0] == keyword_tokens[i].keyword[0]
778 && strcmp (lex_buf, keyword_tokens[i].keyword) == 0)
789 fprintf (stderr, _("%s:%d: unrecognized keyword: %s\n"),
H A Dnlmheader.c1391 keyword was given. */
2164 const char *keyword;
2331 a keyword. */
2345 fprintf (stderr, _("%s:%d: illegal character in keyword: %c\n"),
2354 if (lex_buf[0] == keyword_tokens[i].keyword[0]
2355 && strcmp (lex_buf, keyword_tokens[i].keyword) == 0)
2366 fprintf (stderr, _("%s:%d: unrecognized keyword: %s\n"),
2158 const char *keyword; member in struct:keyword_tokens_struct
/haiku-buildtools/binutils/binutils/
H A Dnlmheader.y190 keyword was given. */
586 const char *keyword;
753 a keyword. */
767 fprintf (stderr, _("%s:%d: illegal character in keyword: %c\n"),
776 if (lex_buf[0] == keyword_tokens[i].keyword[0]
777 && strcmp (lex_buf, keyword_tokens[i].keyword) == 0)
788 fprintf (stderr, _("%s:%d: unrecognized keyword: %s\n"),
H A Dnlmheader.c1472 keyword was given. */
2244 const char *keyword;
2411 a keyword. */
2425 fprintf (stderr, _("%s:%d: illegal character in keyword: %c\n"),
2434 if (lex_buf[0] == keyword_tokens[i].keyword[0]
2435 && strcmp (lex_buf, keyword_tokens[i].keyword) == 0)
2446 fprintf (stderr, _("%s:%d: unrecognized keyword: %s\n"),
2242 const char *keyword; member in struct:keyword_tokens_struct
/haiku-buildtools/gcc/gcc/testsuite/gcc.misc-tests/
H A Ddectest.exp426 set keyword [string tolower [string trim [lindex [split $line :] 0]]]
428 set directives($keyword) $value
/haiku-buildtools/gcc/contrib/
H A Dgcc_update97 gcc/java/keyword.h: gcc/java/keyword.gperf
376 # hg convert. Before hg 1.4.3, there's no template keyword
/haiku-buildtools/binutils/gold/
H A Dscript.cc1712 const char* keyword; member in struct:gold::Keyword_to_parsecode::Keyword_parsecode
1723 // keyword.
1725 keyword_to_parsecode(const char* keyword, size_t len) const;
1732 // Mapping from keyword string to keyword parsecode. This array must
1870 int i = strncmp(key->str, ktt->keyword, key->len);
1873 if (ktt->keyword[key->len] != '\0')
1881 Keyword_to_parsecode::keyword_to_parsecode(const char* keyword, argument
1885 key.str = keyword;
2596 // This is either a keyword o
[all...]
/haiku-buildtools/gcc/gcc/c-family/
H A Dc-common.c5170 /* Implement the __alignof keyword: Return the minimum required
11998 keyword_begins_type_specifier (enum rid keyword)
12000 switch (keyword)
12030 if (keyword >= RID_FIRST_INT_N
12031 && keyword < RID_FIRST_INT_N + NUM_INT_N_ENTS
12032 && int_n_enabled_p[keyword-RID_FIRST_INT_N])
12041 keyword_is_type_qualifier (enum rid keyword)
12043 switch (keyword) argument
12062 keyword_is_storage_class_specifier (enum rid keyword) argument
12064 switch (keyword)
11979 keyword_begins_type_specifier(enum rid keyword) argument
12022 keyword_is_type_qualifier(enum rid keyword) argument
12080 keyword_is_decl_specifier(enum rid keyword) argument
[all...]

Completed in 405 milliseconds

12