OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TokenList
(Results
1 - 2
of
2
) sorted by null
/external/clang/include/clang/Rewrite/
TokenRewriter.h
29
///
TokenList
- This is the list of raw tokens that make up this file. Each
31
std::list<Token>
TokenList
;
33
/// TokenRefTy - This is the type used to refer to a token in the
TokenList
.
55
token_iterator token_begin() const { return
TokenList
.begin(); }
56
token_iterator token_end() const { return
TokenList
.end(); }
/packages/apps/Email/src/com/android/email/provider/
ContentCache.java
101
/*package*/
TokenList
mTokenList;
178
/*package*/ static class
TokenList
extends ArrayList<CacheToken> {
182
/*package*/
TokenList
(String name) {
183
mLogTag = "
TokenList
-" + name;
425
mTokenList = new
TokenList
(mName);
Completed in 165 milliseconds