HomeSort by: relevance | last modified time | path
    Searched defs:spelling (Results 1 - 11 of 11) sorted by relevancy

  /src/external/lgpl3/gmp/dist/demos/
pexpr.c 691 char *spelling; member in struct:functions
756 cnt = matchp (fns[i].spelling, str);
776 cnt = matchp (fns[i].spelling, str);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 2303 StringRef spelling = "__attribute__((objc_method_family(none)))"; local
2306 spelling = macroName;
2309 << method->getDeclName() << spelling;
2312 fixItText += spelling;
  /src/external/gpl3/gcc/dist/libcpp/
macro.cc 86 /* The canonical (UTF-8) spelling of this identifier. */
1751 spelling location of the returned token. */
2605 replacement list), PARM_DEF_LOC is the spelling location of the
2983 related to macro expansion or a spelling location. */
3227 separate from the spelling location carried by the returned token.
3231 expansion; in that case the token's spelling location indicates the
3242 - the spelling location of the token
3262 location is just the same thing as its spelling location. */
3434 /* Save parameter NODE (spelling SPELLING) to the parameter list o
3627 cpp_hashnode *spelling = token->val.node.spelling; local
    [all...]
lex.cc 2246 struct normalize_state *nst, cpp_hashnode **spelling)
2280 *spelling = cpp_lookup (pfile, base, pfile->buffer->cur - base);
2289 *spelling = result;
2386 /* Create a token of type TYPE with a literal spelling. */
2554 /* Lexes a raw string. The stored string contains the spelling,
2563 The spelling is NUL-terminated, but it is not guaranteed that this
2861 name. The stored string contains the spelling, including opening
2867 The spelling is NUL-terminated, but it is not guaranteed that this
3976 &result->val.node.spelling);
4287 &result->val.node.spelling);
4457 const unsigned char *spelling; local
4536 const unsigned char *spelling; local
5675 location_t spelling; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libcpp/
macro.cc 86 /* The canonical (UTF-8) spelling of this identifier. */
1742 spelling location of the returned token. */
2596 replacement list), PARM_DEF_LOC is the spelling location of the
2974 related to macro expansion or a spelling location. */
3218 separate from the spelling location carried by the returned token.
3222 expansion; in that case the token's spelling location indicates the
3233 - the spelling location of the token
3253 location is just the same thing as its spelling location. */
3425 /* Save parameter NODE (spelling SPELLING) to the parameter list o
3618 cpp_hashnode *spelling = token->val.node.spelling; local
    [all...]
lex.cc 2015 struct normalize_state *nst, cpp_hashnode **spelling)
2049 *spelling = cpp_lookup (pfile, base, pfile->buffer->cur - base);
2058 *spelling = result;
2146 /* Create a token of type TYPE with a literal spelling. */
2277 /* Lexes a raw string. The stored string contains the spelling,
2286 The spelling is NUL-terminated, but it is not guaranteed that this
2592 name. The stored string contains the spelling, including opening
2598 The spelling is NUL-terminated, but it is not guaranteed that this
3687 &result->val.node.spelling);
3995 &result->val.node.spelling);
4137 const unsigned char *spelling; local
4216 const unsigned char *spelling; local
5355 location_t spelling; local
    [all...]
  /src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 221 _fields_ = [("spelling", c_char_p), ("free", c_int)]
403 def spelling(self): member in class:Diagnostic
495 return "<Diagnostic severity %r, location %r, spelling %r>" % (
496 self.severity, self.location, self.spelling)
716 # declaration; one can extract their location information, spelling, find their
893 # expression; one can extract their location information, spelling, children,
1091 # one can extract their location information, spelling, children, etc. However,
1544 def spelling(self): member in class:Cursor
1545 """Return the spelling of the entity pointed at by the cursor."""
2023 def spelling(self) member in class:TypeKind
2427 def spelling(self): member in class:Type
2510 def spelling(self): member in class:CompletionChunk
2883 def spelling(self): member in class:TranslationUnit
3287 def spelling(self): member in class:Token
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/c-index-test/
c-index-test.c 1115 CXString Spelling = clang_getCursorSpelling(Cursor);
1117 const char *CSpelling = clang_getCString(Spelling);
1121 clang_disposeString(Spelling);
1127 CXString Spelling = clang_getCursorSpelling(Cursor);
1129 const char *CSpelling = clang_getCString(Spelling);
1137 clang_disposeString(Spelling);
2916 CXString Spelling;
2923 Spelling = clang_getCursorSpelling(Cursor);
2924 cspell = clang_getCString(Spelling);
2927 printf(" Spelling=%s (", cspell)
4266 CXString spelling = clang_getTokenSpelling(TU, tokens[i]); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c/
c-typeck.cc 7095 The component name is taken from the spelling stack. */
7135 component name is taken from the spelling stack. */
7161 component name is taken from the spelling stack. */
8441 /* Implement a spelling stack that allows components of a name to be pushed
8444 struct spelling
8458 static struct spelling *spelling; /* Next stack element (unused). */
8459 static struct spelling *spelling_base; /* Spelling stack base. */
8460 static int spelling_size; /* Size of the spelling stack. *
8418 struct spelling struct
8432 static struct spelling *spelling; \/* Next stack element (unused). *\/ variable in typeref:struct:spelling
9229 struct spelling *spelling; member in struct:initializer_stack
    [all...]
c-parser.cc 143 and so create a canonical spelling that isn't a keyword. */
1069 the source spelling of some tokens but rather the
1070 canonical spelling. */
3098 tree spelling = c_parser_peek_token (parser)->value;
3102 "ISO C99 does not support %qE", spelling);
3105 "ISO C90 does not support %qE", spelling);
3138 "%qE", spelling);
4337 tree spelling = c_parser_peek_token (parser)->value;
4339 && strcmp (IDENTIFIER_POINTER (spelling), "typeof") == 0);
4345 tree spelling = c_parser_peek_token (parser)->value
3096 tree spelling = c_parser_peek_token (parser)->value; local
4335 tree spelling = c_parser_peek_token (parser)->value; local
4343 tree spelling = c_parser_peek_token (parser)->value; local
4423 tree spelling = c_parser_peek_token (parser)->value; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-typeck.cc 6578 The component name is taken from the spelling stack. */
6601 component name is taken from the spelling stack. */
6624 component name is taken from the spelling stack. */
7855 /* Implement a spelling stack that allows components of a name to be pushed
7858 struct spelling
7872 static struct spelling *spelling; /* Next stack element (unused). */
7873 static struct spelling *spelling_base; /* Spelling stack base. */
7874 static int spelling_size; /* Size of the spelling stack. *
7834 struct spelling struct
7848 static struct spelling *spelling; \/* Next stack element (unused). *\/ variable in typeref:struct:spelling
8435 struct spelling *spelling; member in struct:initializer_stack
    [all...]

Completed in 62 milliseconds