HomeSort by relevance Sort by last modified time
    Searched refs:token (Results 326 - 350 of 4235) sorted by null

<<11121314151617181920>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_apply.py 10 from ..pgen2 import token
39 if (func.type not in (token.NAME, syms.atom) and
41 func.children[-2].type == token.DOUBLESTAR)):
50 l_newargs = [pytree.Leaf(token.STAR, u"*"), args]
53 pytree.Leaf(token.DOUBLESTAR, u"**"),
55 l_newargs[-2].prefix = u" " # that's the ** token
fix_isinstance.py 13 from ..fixer_util import token
36 if arg.type == token.NAME and arg.value in names_inserted:
37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
42 if arg.type == token.NAME:
44 if new_args and new_args[-1].type == token.COMMA:
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_apply.py 10 from ..pgen2 import token
39 if (func.type not in (token.NAME, syms.atom) and
41 func.children[-2].type == token.DOUBLESTAR)):
50 l_newargs = [pytree.Leaf(token.STAR, u"*"), args]
53 pytree.Leaf(token.DOUBLESTAR, u"**"),
55 l_newargs[-2].prefix = u" " # that's the ** token
fix_isinstance.py 13 from ..fixer_util import token
36 if arg.type == token.NAME and arg.value in names_inserted:
37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
42 if arg.type == token.NAME:
44 if new_args and new_args[-1].type == token.COMMA:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_apply.py 10 from ..pgen2 import token
39 if (func.type not in (token.NAME, syms.atom) and
41 func.children[-2].type == token.DOUBLESTAR)):
50 l_newargs = [pytree.Leaf(token.STAR, u"*"), args]
53 pytree.Leaf(token.DOUBLESTAR, u"**"),
55 l_newargs[-2].prefix = u" " # that's the ** token
fix_isinstance.py 13 from ..fixer_util import token
36 if arg.type == token.NAME and arg.value in names_inserted:
37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
42 if arg.type == token.NAME:
44 if new_args and new_args[-1].type == token.COMMA:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_apply.py 10 from ..pgen2 import token
39 if (func.type not in (token.NAME, syms.atom) and
41 func.children[-2].type == token.DOUBLESTAR)):
50 l_newargs = [pytree.Leaf(token.STAR, u"*"), args]
53 pytree.Leaf(token.DOUBLESTAR, u"**"),
55 l_newargs[-2].prefix = u" " # that's the ** token
fix_isinstance.py 13 from ..fixer_util import token
36 if arg.type == token.NAME and arg.value in names_inserted:
37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
42 if arg.type == token.NAME:
44 if new_args and new_args[-1].type == token.COMMA:
  /external/python/cpython3/Lib/test/
test_tokenize.py 10 import token
25 for type, token, start, end, line in tokenize(f.readline):
29 result.append(f" {type:10} {token!r:13} {start} {end}")
193 for toktype, token, start, end, line in tokenize(f.readline):
195 return token
196 return 'invalid token'
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
ASTParser.java 65 public int addModifier(int modifiers, int mod, Token token) {
67 throwParseException(token, "Duplicated modifier");
72 private void throwParseException(Token token, String message) {
76 buf.append(token.image);
78 buf.append(token.beginLine);
80 buf.append(token.beginColumn);
82 e.currentToken = token;
110 static final class GTToken extends Token {
8794 public Token token; field in class:ASTParser
    [all...]
  /prebuilts/go/darwin-x86/src/go/printer/testdata/
parser.go 16 "go/token"
33 file *token.File
47 // Next token
48 pos token.Pos // token position
49 tok token.Token // one token look-ahead
50 lit string // token literal
76 func (p *parser) init(fset *token.FileSet, filename string, src []byte, mode uint)
    [all...]
  /prebuilts/go/linux-x86/src/go/printer/testdata/
parser.go 16 "go/token"
33 file *token.File
47 // Next token
48 pos token.Pos // token position
49 tok token.Token // one token look-ahead
50 lit string // token literal
76 func (p *parser) init(fset *token.FileSet, filename string, src []byte, mode uint)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_unicode.py 6 from ..pgen2 import token
17 if node.type == token.NAME:
21 elif node.type == token.STRING:
fix_ws_comma.py 9 from ..pgen2 import token
20 COMMA = pytree.Leaf(token.COMMA, u",")
21 COLON = pytree.Leaf(token.COLON, u":")
  /external/e2fsprogs/misc/
util.c 154 char *buf, *token, *next, *p, *arg; local
166 for (token = buf; token && *token; token = next) {
167 p = strchr(token, ',');
173 arg = strchr(token, '=');
179 printf("Journal option=%s, argument=%s\n", token,
182 if (strcmp(token, "device") == 0) {
192 } else if (strcmp(token, "size") == 0)
    [all...]
  /external/libmojo/mojo/edk/embedder/
pending_process_connection.cc 27 std::string* token) {
30 *token = GenerateRandomToken();
31 return internal::g_core->CreateParentMessagePipe(*token, process_token_);
  /external/libvpx/libvpx/vp9/encoder/
vp9_treewriter.h 43 const struct vp9_token *token) {
44 vp9_write_tree(w, tree, probs, token->value, token->len, 0);
  /external/llvm/test/MC/AsmParser/
at-pseudo-variable-bad.s 4 # CHECK: :[[@LINE-1]]:8: error: unexpected token in argument list
14 # CHECK: error: unknown token in expression
21 # CHECK: error: unknown token in expression
  /external/mesa3d/src/mesa/main/
feedback.h 36 _mesa_PassThrough( GLfloat token );
58 _mesa_feedback_token( struct gl_context *ctx, GLfloat token )
61 ctx->Feedback.Buffer[ctx->Feedback.Count] = token;
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_unicode.py 11 from ..pgen2 import token
25 if node.type == token.NAME:
29 elif node.type == token.STRING:
fix_ws_comma.py 9 from ..pgen2 import token
20 COMMA = pytree.Leaf(token.COMMA, u",")
21 COLON = pytree.Leaf(token.COLON, u":")
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_unicode.py 11 from ..pgen2 import token
25 if node.type == token.NAME:
29 elif node.type == token.STRING:
fix_ws_comma.py 9 from ..pgen2 import token
20 COMMA = pytree.Leaf(token.COMMA, ",")
21 COLON = pytree.Leaf(token.COLON, ":")
  /external/tensorflow/tensorflow/core/platform/cloud/
oauth_client.h 35 /// \brief Retrieves a bearer token using a private key.
37 /// Retrieves the authentication bearer token using a JSON file
41 string* token, uint64* expiration_timestamp_sec);
43 /// Retrieves a bearer token using a refresh token.
46 string* token,
49 /// Parses the JSON response with the token from an OAuth 2.0 server.
51 uint64 request_timestamp_sec, string* token,
  /frameworks/base/core/java/android/view/inputmethod/
ExtractedTextRequest.java 31 public int token; field in class:ExtractedTextRequest
57 dest.writeInt(token);
70 res.token = source.readInt();

Completed in 464 milliseconds

<<11121314151617181920>>