HomeSort by relevance Sort by last modified time
    Searched refs:token (Results 426 - 450 of 1832) sorted by null

<<11121314151617181920>>

  /external/llvm/test/MC/ARM/
thumb_set-diagnostics.s 22 @ CHECK: error: unknown token in expression
40 @ CHECK: error: unexpected token
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.c 80 * Get next 4-byte token, return it at address specified by 'token'
85 void *token )
88 copy_token(token, &ctx->Tokens[ctx->Position]);
97 struct tgsi_token token; local
100 next_token( ctx, &token );
102 switch( token.Type ) {
108 copy_token(&decl->Declaration, &token);
152 copy_token(&imm->Immediate, &token);
187 copy_token(&inst->Instruction, &token);
    [all...]
  /external/skia/experimental/PdfViewer/inc/
SkPdfTokenLooper.h 51 * Consume a token, and draw to fCanvas as directed.
53 virtual SkPdfResult consumeToken(PdfToken& token) = 0;
  /external/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeTokenizer.h 131 // Type of a parsed token.
167 // Reads one token. Returns false if there are no more tokens.
168 // If writeDiff is true, and a token was read, create a PNG highlighting
171 bool readToken(PdfToken* token, bool writeDiff = false);
173 // Put back a token to be read in the nextToken read. Only one token is allowed to be put
174 // back. Must not necesaarely be the last token read.
175 void PutBack(PdfToken token);
178 // token already.
182 bool readTokenCore(PdfToken* token);
    [all...]
  /frameworks/base/core/java/android/hardware/input/
IInputManager.aidl 64 void vibrate(int deviceId, in long[] pattern, int repeat, IBinder token);
65 void cancelVibrate(int deviceId, IBinder token);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 23 from ..pgen2 import token namespace
29 stmt.children[0].type == token.STRING
55 if suite[0].children[1].type == token.INDENT:
62 end = pytree.Leaf(token.INDENT, u"")
116 if inner.type == token.NAME:
129 if n.type == token.NAME and n.value in to_index:
140 if node.type in (syms.vfplist, token.NAME):
153 elif node.type == token.NAME:
155 return [find_params(c) for c in node.children if c.type != token.COMMA]
fix_types.py 23 from ..pgen2 import token namespace
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shlex.py 52 self.token = ''
60 "Push a token onto the stack popped by the get_token method"
62 print "shlex: pushing token " + repr(tok)
89 "Get a token from the input stream (or from stack if it's nonempty)"
93 print "shlex: popping token " + repr(tok)
95 # No pushback. Get a token.
115 print "shlex: token=" + repr(raw)
117 print "shlex: token=EOF"
131 self.token = '' # past end of file
140 if self.token or (self.posix and quoted)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 23 from ..pgen2 import token namespace
29 stmt.children[0].type == token.STRING
55 if suite[0].children[1].type == token.INDENT:
62 end = pytree.Leaf(token.INDENT, u"")
116 if inner.type == token.NAME:
129 if n.type == token.NAME and n.value in to_index:
140 if node.type in (syms.vfplist, token.NAME):
153 elif node.type == token.NAME:
155 return [find_params(c) for c in node.children if c.type != token.COMMA]
fix_types.py 23 from ..pgen2 import token namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shlex.py 52 self.token = ''
60 "Push a token onto the stack popped by the get_token method"
62 print "shlex: pushing token " + repr(tok)
89 "Get a token from the input stream (or from stack if it's nonempty)"
93 print "shlex: popping token " + repr(tok)
95 # No pushback. Get a token.
115 print "shlex: token=" + repr(raw)
117 print "shlex: token=EOF"
131 self.token = '' # past end of file
140 if self.token or (self.posix and quoted)
    [all...]
  /external/javassist/src/main/javassist/compiler/
CodeGen.java 311 int token = ((Keyword)target).get(); local
312 return token != THIS && token != SUPER;
865 int token = assignOps[op - MOD_E]; local
866 int k = lookupBinOp(token);
870 atArithBinExpr(expr, token, k, type);
946 static int lookupBinOp(int token) {
950 if (code[k] == token)
957 int token = expr.getOperator(); local
961 int k = lookupBinOp(token);
1151 int token = bexpr.getOperator(); local
1449 int token = expr.getOperator(); local
1857 int token = k.get(); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
ASTTreeParser.stg 38 * token, set, rule, wildcard
118 // TOKEN AST STUFF
123 tokenRefBang(token,label,elementIndex,terminalOptions) ::= <<
129 tokenRef(token,label,elementIndex,terminalOptions) ::= <<
148 /** label+=TOKEN auto construct */
149 tokenRefAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
155 tokenRefRuleRoot(token,label,elementIndex,terminalOptions) ::= <<
170 /** Match ^(label+=TOKEN ...) auto construct */
171 tokenRefRuleRootAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
177 wildcard(token,label,elementIndex,terminalOptions) ::= <
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/fixtures/
tokenizer_test.js 19 //NOTE: append current token to the output sequence in html5lib test suite compatible format
82 //NOTE: unescape token tagName (for StartTag and EndTag tokens), comment data (for Comment token),
83 //character token data (for Character token).
86 //NOTE: unescape token attributes(if we have them).
242 for (var token = tokenizer.getNextToken(), i = 0; token.type !== Tokenizer.EOF_TOKEN;) {
243 var chunk = html.substring(token.location.start, token.location.end)
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/common/
foreign_content.js 202 //Token adjustments
203 exports.adjustTokenMathMLAttrs = function (token) {
204 for (var i = 0; i < token.attrs.length; i++) {
205 if (token.attrs[i].name === DEFINITION_URL_ATTR) {
206 token.attrs[i].name = ADJUSTED_DEFINITION_URL_ATTR;
212 exports.adjustTokenSVGAttrs = function (token) {
213 for (var i = 0; i < token.attrs.length; i++) {
214 var adjustedAttrName = SVG_ATTRS_ADJUSTMENT_MAP[token.attrs[i].name];
217 token.attrs[i].name = adjustedAttrName;
221 exports.adjustTokenXMLAttrs = function (token) {
    [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 
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
MediaSessions.java 32 import android.media.session.MediaSession.Token;
64 private final Map<Token, MediaControllerRecord> mRecords = new HashMap<>();
106 public void setVolume(Token token, int level) {
107 final MediaControllerRecord r = mRecords.get(token);
109 Log.w(TAG, "setVolume: No record found for token " + token);
120 final Token token = controller.getSessionToken(); local
121 mCallbacks.onRemoteVolumeChanged(token, flags)
137 final Token token = controller.getSessionToken(); local
    [all...]
  /frameworks/base/tools/aidl/
aidl_language_y.y 15 %token IMPORT
16 %token PACKAGE
17 %token IDENTIFIER
18 %token IDVALUE
19 %token GENERIC
20 %token ARRAY
21 %token PARCELABLE
22 %token INTERFACE
23 %token FLATTENABLE
24 %token RP
    [all...]
  /art/cmdline/
token_range.h 27 // A range of tokens to make token matching algorithms easier.
34 // if it *actually* mutates the token).
36 // Short-hand for a vector of strings. A single string and a token is synonymous.
74 // Non-copying move-from-vector constructor. Takes over the token vector.
111 // Create a token range by splitting a string. Each separator gets their own token.
122 // Push back everything before the last separator as a new token.
123 // Push back the separator as a token.
130 // Build up the token with another character.
163 // Look up a token by it's offset
396 auto&& token = *it; local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3baserecognizer.c 229 // Free up any token factory we created (error recovery for instance)
246 * Creates a new Mismatched Token Exception and inserts in the recognizer
260 /* Now update it to indicate this is a Mismatched token exception
347 ex->token = cts->tstream->_LT (cts->tstream, 1); /* Current input token */
348 ex->line = ((pANTLR3_COMMON_TOKEN)(ex->token))->getLine (ex->token);
349 ex->charPositionInLine = ((pANTLR3_COMMON_TOKEN)(ex->token))->getCharPositionInLine (ex->token);
351 if (((pANTLR3_COMMON_TOKEN)(ex->token))->type == ANTLR3_TOKEN_EOF
2170 pANTLR3_COMMON_TOKEN token; local
    [all...]
  /external/openssh/
ssh-pkcs11.c 46 CK_TOKEN_INFO token; member in struct:pkcs11_slotinfo
256 if ((si->token.flags & CKF_LOGIN_REQUIRED) && !si->logged_in) {
262 si->token.label);
303 /* redirect private key operations for rsa key to pkcs11 token */
358 login_required = p->slotinfo[slotidx].token.flags & CKF_LOGIN_REQUIRED;
385 * lookup public keys for token in slot identified by slotidx,
557 CK_TOKEN_INFO *token; local
620 token = &p->slotinfo[i].token;
621 if ((rv = f->C_GetTokenInfo(p->slotlist[i], token))
    [all...]
  /frameworks/base/core/java/android/app/
ActivityThread.java 280 IBinder token; field in class:ActivityThread.ActivityClientRecord
344 + " token=" + token + " " + (componentName == null
368 IBinder token; field in class:ActivityThread.NewIntentData
370 return "NewIntentData{intents=" + intents + " token=" + token + "}";
376 boolean ordered, boolean sticky, IBinder token, int sendingUser) {
378 token, sendingUser, intent.getFlags());
405 IBinder token; field in class:ActivityThread.CreateServiceData
410 return "CreateServiceData{token=" + token + " className=
417 IBinder token; field in class:ActivityThread.BindServiceData
426 IBinder token; field in class:ActivityThread.ServiceArgsData
528 IBinder token; field in class:ActivityThread.DumpComponentInfo
534 IBinder token; field in class:ActivityThread.ResultData
3981 IBinder token = tmp.token; local
    [all...]
  /bootable/recovery/applypatch/
applypatch.h 73 SinkFn sink, void* token, SHA_CTX* ctx);
81 SinkFn sink, void* token, SHA_CTX* ctx,
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 57 /** Record every single token pulled from the source so we can reproduce
68 /** The index into the tokens list of the current token (next token
70 * to initialize with first token. The ctor doesn't get a token.
71 * First call to LT(1) or whatever gets the first token and sets p=0;
129 IToken token;
132 token = LB(i);
133 } while (token != null && token.Line <= 0)
    [all...]

Completed in 1330 milliseconds

<<11121314151617181920>>