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

1 2 3 4 5 6 7 8 91011>>

  /external/tcpdump/
l2vpn.h 16 extern const struct tok l2vpn_encaps_values[];
17 extern const struct tok mpls_pw_types_values[];
gmpls.h 25 extern const struct tok gmpls_link_prot_values[];
26 extern const struct tok gmpls_switch_cap_values[];
27 extern const struct tok gmpls_switch_cap_tsc_indication_values[];
28 extern const struct tok gmpls_encoding_values[];
29 extern const struct tok gmpls_payload_values[];
30 extern const struct tok diffserv_te_bc_values[];
31 extern const struct tok lmp_sd_service_config_cpsa_link_type_values[];
32 extern const struct tok lmp_sd_service_config_cpsa_signal_type_sdh_values[];
33 extern const struct tok lmp_sd_service_config_cpsa_signal_type_sonet_values[];
gmpls.c 26 const struct tok gmpls_link_prot_values[] = {
39 const struct tok gmpls_switch_cap_values[] = {
52 const struct tok gmpls_switch_cap_tsc_indication_values[] = {
59 const struct tok gmpls_encoding_values[] = {
75 const struct tok gmpls_payload_values[] = {
143 const struct tok lmp_sd_service_config_cpsa_link_type_values[] = {
154 const struct tok lmp_sd_service_config_cpsa_signal_type_sdh_values[] = {
171 const struct tok lmp_sd_service_config_cpsa_signal_type_sonet_values[] = {
187 const struct tok diffserv_te_bc_values[] = {
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 18 prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
21 case tok::greater:
30 case tok::greatergreater:
42 case tok::comma: return prec::Comma;
43 case tok::equal:
44 case tok::starequal:
45 case tok::slashequal:
46 case tok::percentequal:
47 case tok::plusequal:
48 case tok::minusequal
    [all...]
  /external/libedit/src/
tokenizer.c 86 private void FUN(tok,finish)(TYPE(Tokenizer) *);
89 /* FUN(tok,finish)():
93 FUN(tok,finish)(TYPE(Tokenizer) *tok)
96 *tok->wptr = '\0';
97 if ((tok->flags & TOK_KEEP) || tok->wptr != tok->wstart) {
98 tok->argv[tok->argc++] = tok->wstart
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
tokenizer.c 32 static int tok_nextc(struct tok_state *tok);
33 static void tok_backup(struct tok_state *tok, int c);
100 struct tok_state *tok = (struct tok_state *)PyMem_MALLOC( local
102 if (tok == NULL)
104 tok->buf = tok->cur = tok->end = tok->inp = tok->start = NULL;
105 tok->done = E_OK;
712 struct tok_state *tok = tok_new(); local
732 struct tok_state *tok = tok_new(); local
    [all...]
  /external/python/cpython3/Parser/
tokenizer.c 44 static int tok_nextc(struct tok_state *tok);
45 static void tok_backup(struct tok_state *tok, int c);
118 struct tok_state *tok = (struct tok_state *)PyMem_MALLOC( local
120 if (tok == NULL)
122 tok->buf = tok->cur = tok->end = tok->inp = tok->start = NULL;
123 tok->done = E_OK
812 struct tok_state *tok = tok_new(); local
829 struct tok_state *tok = tok_new(); local
861 struct tok_state *tok = tok_new(); local
1920 struct tok_state *tok; local
    [all...]
  /external/python/cpython2/Parser/
tokenizer.c 32 static int tok_nextc(struct tok_state *tok);
33 static void tok_backup(struct tok_state *tok, int c);
100 struct tok_state *tok = (struct tok_state *)PyMem_MALLOC( local
102 if (tok == NULL)
104 tok->buf = tok->cur = tok->end = tok->inp = tok->start = NULL;
105 tok->done = E_OK
736 struct tok_state *tok = tok_new(); local
756 struct tok_state *tok = tok_new(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
tokenizer.c 32 static int tok_nextc(struct tok_state *tok);
33 static void tok_backup(struct tok_state *tok, int c);
100 struct tok_state *tok = (struct tok_state *)PyMem_MALLOC( local
102 if (tok == NULL)
104 tok->buf = tok->cur = tok->end = tok->inp = tok->start = NULL;
105 tok->done = E_OK;
732 struct tok_state *tok = tok_new(); local
752 struct tok_state *tok = tok_new(); local
    [all...]
  /external/clang/lib/Lex/
TokenConcatenation.cpp 48 bool TokenConcatenation::IsIdentifierStringPrefix(const Token &Tok) const {
51 if (!Tok.needsCleaning()) {
52 if (Tok.getLength() < 1 || Tok.getLength() > 3)
55 const char *Ptr = SM.getCharacterData(SM.getSpellingLoc(Tok.getLocation()));
56 return IsStringPrefix(StringRef(Ptr, Tok.getLength()),
60 if (Tok.getLength() < 256) {
63 unsigned length = PP.getSpelling(Tok, TokPtr);
67 return IsStringPrefix(StringRef(PP.getSpelling(Tok)), LangOpts.CPlusPlus11);
74 TokenInfo[tok::identifier ] |= aci_custom
    [all...]
  /external/clang/lib/Parse/
ParseTentative.cpp 51 switch (Tok.getKind()) {
53 case tok::kw_asm:
55 case tok::kw_namespace:
58 case tok::kw_using:
60 case tok::kw_static_assert:
61 case tok::kw__Static_assert:
149 switch (Tok.getKind()) {
150 case tok::kw__Atomic:
151 if (NextToken().isNot(tok::l_paren)) {
156 case tok::kw_typeof
    [all...]
  /external/clang/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]

Completed in 1194 milliseconds

1 2 3 4 5 6 7 8 91011>>