OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TokenInfo
(Results
1 - 9
of
9
) sorted by null
/external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp
28
struct Parser::
TokenInfo
{
45
TokenInfo
() : Text(), Kind(TK_Eof), Range(), Value() {}
53
const char* const Parser::
TokenInfo
::ID_Bind = "bind";
64
const
TokenInfo
&peekNextToken() const { return NextToken; }
67
TokenInfo
consumeNextToken() {
68
TokenInfo
ThisToken = NextToken;
73
TokenInfo
::TokenKind nextTokenKind() const { return NextToken.Kind; }
76
TokenInfo
getNextToken() {
78
TokenInfo
Result;
82
Result.Kind =
TokenInfo
::TK_Eof
[
all
...]
/external/clang/lib/Lex/
TokenConcatenation.cpp
71
memset(
TokenInfo
, 0, sizeof(
TokenInfo
));
74
TokenInfo
[tok::identifier ] |= aci_custom;
75
TokenInfo
[tok::numeric_constant] |= aci_custom_firstchar;
76
TokenInfo
[tok::period ] |= aci_custom_firstchar;
77
TokenInfo
[tok::amp ] |= aci_custom_firstchar;
78
TokenInfo
[tok::plus ] |= aci_custom_firstchar;
79
TokenInfo
[tok::minus ] |= aci_custom_firstchar;
80
TokenInfo
[tok::slash ] |= aci_custom_firstchar;
81
TokenInfo
[tok::less ] |= aci_custom_firstchar
[
all
...]
/external/clang/include/clang/Lex/
TokenConcatenation.h
54
///
TokenInfo
- This array contains information for each token on what
57
char
TokenInfo
[tok::NUM_TOKENS];
/external/chromium_org/chrome/browser/signin/
signin_internals_util.h
61
struct
TokenInfo
{
68
TokenInfo
(const std::string& truncated_token,
73
TokenInfo
();
74
~
TokenInfo
();
80
typedef std::map<std::string,
TokenInfo
> TokenInfoMap;
signin_internals_util.cc
24
TokenInfo
::
TokenInfo
(const std::string& truncated_token,
38
TokenInfo
::
TokenInfo
() {
41
TokenInfo
::~
TokenInfo
() {
44
DictionaryValue*
TokenInfo
::ToValue() {
234
for (std::map<std::string,
TokenInfo
>::iterator it = token_info_map.begin();
/external/clang/include/clang/ASTMatchers/Dynamic/
Parser.h
133
struct
TokenInfo
;
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
indentation.py
59
class
TokenInfo
(object):
67
overridden_by:
TokenInfo
for a token that overrides the indentation that
82
"""Initializes a
TokenInfo
object.
187
info =
TokenInfo
(token)
233
self._Add(
TokenInfo
(token=token,
237
self._Add(
TokenInfo
(token=token, is_block=True))
240
self._Add(
TokenInfo
(token=token, is_block=False))
243
self._Add(
TokenInfo
(token))
247
self._Add(
TokenInfo
(token=token))
262
self._Add(
TokenInfo
(token)
[
all
...]
/external/chromium_org/third_party/closure_linter/closure_linter/
indentation.py
59
class
TokenInfo
(object):
67
overridden_by:
TokenInfo
for a token that overrides the indentation that
82
"""Initializes a
TokenInfo
object.
187
info =
TokenInfo
(token)
233
self._Add(
TokenInfo
(token=token,
237
self._Add(
TokenInfo
(token=token, is_block=True))
240
self._Add(
TokenInfo
(token=token, is_block=False))
243
self._Add(
TokenInfo
(token))
247
self._Add(
TokenInfo
(token=token))
262
self._Add(
TokenInfo
(token)
[
all
...]
/external/chromium_org/gpu/config/
gpu_test_expectations_parser.cc
69
struct
TokenInfo
{
74
const
TokenInfo
kTokenData[] = {
Completed in 856 milliseconds