HomeSort by relevance Sort by last modified time
    Searched defs:Token (Results 101 - 125 of 176) sorted by null

1 2 3 45 6 7 8

  /external/deqp/modules/glshared/
glsShaderLibrary.cpp 97 enum Token
182 void advanceToken (Token assumed);
183 void assumeToken (Token token);
184 DataType mapDataTypeToken (Token token);
185 const char* getTokenName (Token token);
207 Token m_curToken;
347 // Skip old token
380 Token token; member in struct:deqp::gls::sl::Named
528 Token token; member in struct:deqp::gls::sl::SimpleToken
1086 const Token token = m_curToken; local
1176 const Token token = m_curToken; local
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 50 enum Token {
73 /// gettok - Return the next token from standard input.
261 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
262 /// token the parser is looking at. getNextToken reads another token from the
273 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
466 default: return Error("unknown token when expecting an expression");
480 // If the current token is not an operator, it must be a primary expr.
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 74 enum Token {
97 /// gettok - Return the next token from standard input.
285 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
286 /// token the parser is looking at. getNextToken reads another token from the
297 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
490 default: return Error("unknown token when expecting an expression");
504 // If the current token is not an operator, it must be a primary expr.
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 27 enum Token {
50 /// gettok - Return the next token from standard input.
238 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
239 /// token the parser is looking at. getNextToken reads another token from the
250 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
443 default: return Error("unknown token when expecting an expression");
457 // If the current token is not an operator, it must be a primary expr.
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 29 enum Token {
52 /// gettok - Return the next token from standard input.
240 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
241 /// token the parser is looking at. getNextToken reads another token from the
252 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
445 default: return Error("unknown token when expecting an expression");
459 // If the current token is not an operator, it must be a primary expr.
    [all...]
  /external/llvm/lib/CodeGen/
IfConversion.cpp 317 IfcvtToken *Token = Tokens.back();
319 BBInfo &BBI = Token->BBI;
320 IfcvtKind Kind = Token->Kind;
321 unsigned NumDups = Token->NumDups;
322 unsigned NumDups2 = Token->NumDups2;
324 delete Token;
414 IfcvtToken *Token = Tokens.back();
416 delete Token;
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 478 SmallString<128> Token;
481 if (Token.empty()) {
491 Token.push_back(Src[I]);
502 Token.push_back(Src[I]);
509 // End the token if this is whitespace.
511 if (!Token.empty())
512 NewArgv.push_back(Saver.SaveString(Token.c_str()));
513 Token.clear();
518 Token.push_back(Src[I]);
521 // Append the last token after hitting EOF with no whitespace
    [all...]
YAMLParser.cpp 108 /// Token - A single YAML token.
109 struct Token : ilist_node<Token> {
111 TK_Error, // Uninitialized token.
136 /// of the token in the input.
139 Token() : Kind(TK_Error) {}
146 struct ilist_sentinel_traits<Token> {
147 Token *createSentinel() const {
150 static void destroySentinel(Token*) {}
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 21 // end up with a single literal token (the instruction name) and some number of
152 /// The class for a particular token.
153 Token,
176 /// ClassName - The unadorned generic name for this class (e.g., Token).
179 /// ValueName - The name of the value this class represents; for a token this
180 /// is the literal token string, for an operand it is the TableGen class (or
185 /// operand matches this class; this is not valid for Token or register kinds.
189 /// MCInst; this is not valid for Token or register kinds.
216 if (Kind == Token || RHS.Kind == Token)
    [all...]
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 73 private ArrayList<Token> tokens;
105 this.tokens = new ArrayList<Token>();
130 // first token)
189 * Get a the appropriate Token for a given URL
195 public static Token tokenForUrl(String url, String text) {
235 Token token = tokens.get(i); local
236 if (token.isMedia() || (parts.size() == 0) || lastPart().isMedia()) {
239 lastPart().add(token);
453 // Figure out the appropriate token type
    [all...]
  /frameworks/base/media/java/android/media/session/
MediaSession.java 62 * {@link #getSessionToken() session token} to other processes to allow them to
108 private final MediaSession.Token mSessionToken;
155 mSessionToken = new Token(mBinder.getController());
368 * Retrieve a token object that can be used by apps to create a
372 * @return A token that can be used to create a MediaController for this
375 public @NonNull Token getSessionToken() {
585 public static final class Token implements Parcelable {
592 public Token(ISessionController binder) {
622 Token other = (Token) obj
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
hidpi.h 47 UCHAR Token;
http.h 158 HANDLE Token;
  /external/clang/lib/CodeGen/
CGObjC.cpp 2834 llvm::Value *token = EmitObjCAutoreleasePoolPush(); local
2837 llvm::Value *token = EmitObjCMRRAutoreleasePoolPush(); local
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 336 k_Token /// A simple token
347 struct Token {
372 struct Token Tok;
846 /// getStartLoc - Get the location of the first token of this operand.
848 /// getEndLoc - Get the location of the last token of this operand.
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityRecord.java 85 final IApplicationToken.Stub appToken; // window manager token
309 static class Token extends IApplicationToken.Stub {
312 Token(ActivityRecord activity) {
353 sb.append("Token{");
362 static ActivityRecord forToken(IBinder token) {
364 return token != null ? ((Token)token).weakActivity.get() : null;
366 Slog.w(ActivityManagerService.TAG, "Bad activity token: " + token, e)
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
jsoup-1.7.2.jar 
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1.c 189 * current token position and the previous token position and offset,
195 * the previous token to make the estimate a tiny bit more precise.
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasm-pp.c 53 typedef struct Token Token;
70 Token *expansion;
99 Token *dlist; /* All defaults as one list */
100 Token **defaults; /* Parameter default pointers */
106 Token **params; /* actual parameters */
107 Token *iline; /* invocation line */
134 * the token representing `x' will have its type changed to
138 * TOK_INTERNAL_STRING is a dirty hack: it's a single string token
143 struct Token
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c 95 ** token positions and offsets with docids.
119 ** memory. A "position" is an index of a token in the token stream
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
sqliteInt.h 629 typedef struct Token Token;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /prebuilts/tools/common/m2/repository/de/pdark/decentxml/1.3/
decentxml-1.3.jar 

Completed in 716 milliseconds

1 2 3 45 6 7 8