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

<<11121314151617181920>>

  /system/tools/aidl/tests/android/aidl/tests/
ITestService.aidl 42 boolean RepeatBoolean(boolean token);
43 byte RepeatByte(byte token);
44 char RepeatChar(char token);
45 int RepeatInt(int token);
46 long RepeatLong(long token);
47 float RepeatFloat(float token);
48 double RepeatDouble(double token);
49 String RepeatString(String token);
50 Map RepeatMap(in Map token);
100 @utf8InCpp String RepeatUtf8CppString(@utf8InCpp String token);
    [all...]
  /system/tools/hidl/docs/src/parser/files/
AbstractFileParser.kt 19 import lexer.Token
36 abstract class AbstractFileParser(tokens: List<Token>) {
74 private fun insertDocsForRequiredTypes(tokens: List<Token>): List<Token> {
75 val tokensCopy = mutableListOf<Token>()
77 var token: Token
81 token = iter.next()
82 tokensCopy.add(token)
84 if (token.identifier == TokenGrammar.DOC_START)
    [all...]
  /system/tools/aidl/tests/
aidl_test_service.cpp 110 void LogRepeatedStringToken(const String16& token) {
111 ALOGI("Repeating '%s' of length=%zu", android::String8(token).string(),
112 token.size());
116 void LogRepeatedToken(const T& token) {
118 token_str << token; local
119 ALOGI("Repeating token %s", token_str.str().c_str());
122 void LogRepeatedMapToken(const Map& token) {
123 ALOGI("Repeating Map with %d elements", (int)token.size());
126 Status RepeatBoolean(bool token, bool* _aidl_return) override {
127 LogRepeatedToken(token ? 1 : 0)
132 LogRepeatedToken(token); variable
142 LogRepeatedToken(token); variable
147 LogRepeatedToken(token); variable
152 LogRepeatedToken(token); variable
157 LogRepeatedToken(token); variable
162 LogRepeatedStringToken(token); variable
167 LogRepeatedMapToken(token); variable
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
tokenize.py 8 the token type (see token.py)
9 the token (a string)
10 the starting (row, column) indices of the token (a 2-tuple of ints)
11 the ending (row, column) indices of the token (a 2-tuple of ints)
23 each time a new token is found."""
31 from token import *
33 import token
34 __all__ = [x for x in dir(token) if not x.startswith("_")]
37 del token
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
tokenize.py 11 the token type (see token.py)
12 the token (a string)
13 the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
26 each time a new token is found."""
34 from lib2to3.pgen2.token import *
36 from . import token
37 __all__ = [x for x in dir(token) if x[0] != '_'] + ["tokenize",
39 del token
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
tokenize.py 11 the token type (see token.py)
12 the token (a string)
13 the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
26 each time a new token is found."""
34 from lib2to3.pgen2.token import *
36 from . import token
37 __all__ = [x for x in dir(token) if x[0] != '_'] + ["tokenize",
39 del token
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
tokenize.py 11 the token type (see token.py)
12 the token (a string)
13 the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
26 each time a new token is found."""
34 from lib2to3.pgen2.token import *
36 from . import token
37 __all__ = [x for x in dir(token) if x[0] != '_'] + ["tokenize",
39 del token
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 11 the token type (see token.py)
12 the token (a string)
13 the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
26 each time a new token is found."""
34 from lib2to3.pgen2.token import *
36 from . import token
37 __all__ = [x for x in dir(token) if x[0] != '_'] + ["tokenize",
39 del token
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 11 the token type (see token.py)
12 the token (a string)
13 the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
26 each time a new token is found."""
34 from lib2to3.pgen2.token import *
36 from . import token
37 __all__ = [x for x in dir(token) if x[0] != '_'] + ["tokenize",
39 del token
    [all...]
  /prebuilts/go/darwin-x86/src/go/parser/
parser.go 23 "go/token"
31 file *token.File
45 // Next token
46 pos token.Pos // token position
47 tok token.Token // one token look-ahead
48 lit string // token literal
54 syncPos token.Pos // last synchronization positio
    [all...]
  /prebuilts/go/linux-x86/src/go/parser/
parser.go 23 "go/token"
31 file *token.File
45 // Next token
46 pos token.Pos // token position
47 tok token.Token // one token look-ahead
48 lit string // token literal
54 syncPos token.Pos // last synchronization positio
    [all...]
  /external/python/cpython3/Lib/email/
_header_value_parser.py 55 possibly empty list all of the defects found while creating the token. Defects
56 may appear on any token in the tree, and a composite list of all defects in the
60 Each object in a parse tree is called a 'token', and each has a 'token_type'
67 XXX: provide complete list of token types.
130 def append_if_fits(self, token, stoken=None):
132 stoken = str(token)
144 if token.has_fws:
145 ws = token.pop_leading_fws()
149 token._fold(self)
239 # possible for encoded words to appear in the specialized token-list, sinc
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
InstantAppResolverConnection.java 89 int hashPrefix[], String token) throws ConnectionException {
94 target = getRemoteInstanceLazy(token);
102 .getInstantAppResolveInfoList(target, sanitizedIntent, hashPrefix, token);
116 String token, PhaseTwoCallback callback, Handler callbackHandler, final long startTime)
128 getRemoteInstanceLazy(token)
129 .getInstantAppIntentFilterList(sanitizedIntent, hashPrefix, token,
140 private IInstantAppResolver getRemoteInstanceLazy(String token)
144 return bind(token);
151 private void waitForBindLocked(String token) throws TimeoutException, InterruptedException {
160 throw new TimeoutException("[" + token + "] Didn't bind to resolver in time!")
    [all...]
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
ResetPasswordWithTokenTest.java 30 private static final byte[] token = "abcdefghijklmnopqrstuvwxyz0123456789".getBytes(); field in class:ResetPasswordWithTokenTest
43 * Set a reset password token and work challenge on the work profile. This is the preparation
51 token, 0));
63 token, 0));
71 assertTrue(mDevicePolicyManager.setResetPasswordToken(ADMIN_RECEIVER_COMPONENT, token));
  /cts/tools/dasm/src/dasm/tokens/
variant_token.java 22 public class variant_token extends java_cup.runtime.token {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
patcomp.py 18 from .pgen2 import driver, literals, token, tokenize, parse, grammar
35 skip = set((token.NEWLINE, token.INDENT, token.DEDENT))
102 if len(nodes) >= 3 and nodes[1].type == token.EQUAL:
117 if child.type == token.STAR:
120 elif child.type == token.PLUS:
123 elif child.type == token.LBRACE:
124 assert children[-1].type == token.RBRACE
143 if node.type == token.STRING:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
cleanfuture.py 166 type, token, (srow, scol), (erow, ecol), line = get()
170 type, token, (srow, scol), (erow, ecol), line = get()
174 type, token, (srow, scol), (erow, ecol), line = get()
180 type, token, (srow, scol), (erow, ecol), line = get()
182 if not (type is NAME and token == "from"):
185 type, token, (srow, scol), (erow, ecol), line = get()
187 if not (type is NAME and token == "__future__"):
189 type, token, (srow, scol), (erow, ecol), line = get()
191 if not (type is NAME and token == "import"):
193 type, token, (srow, scol), (erow, ecol), line = get()
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringTokenizer.cs 52 _tokens = EnumerableExtensions.ToArray(EnumerableExtensions.SelectMany(_tokens, delegate(string token, int i)
59 return new string[] { token };
66 return new string[] { token };
70 return new string[] { token, str[EnumerableExtensions.Sum(EnumerableExtensions.Select(EnumerableExtensions.Take(_tokens, i + 1),
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringTokenizer.cs 53 _tokens = _tokens.SelectMany( ( token, i ) =>
60 return new string[] { token };
67 return new string[] { token };
71 return new string[] { token, str[_tokens.Take( i + 1 ).Select( t => t.Length + 1 ).Sum() - 1].ToString() };
  /external/antlr/antlr-3.4/runtime/Python/tests/
t029synpredgate.py 14 token = lexer.nextToken()
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
syn-pred.rb 27 token = lexer.next_token
  /external/autotest/server/cros/
queue_barrier.py 16 hierarchy, the slaves and the master can exchange a token while passing
37 def master_barrier(self, token=None, timeout=None):
41 @param token: A value passed to every slave.
57 self.queue_slave_.put(token)
61 def slave_barrier(self, token=None, timeout=None):
65 @param token: A value passed to the master.
69 self.queue_master_.put(token)
  /external/iproute2/tc/
emp_ematch.y 10 %token-table
27 %token <i> ERROR
28 %token <b> ATTRIBUTE
29 %token <i> AND OR NOT
  /external/llvm/test/MC/ARM/
directive-object_arch-diagnostics.s 14 @ CHECK: error: unexpected token
20 @ CHECK: error: unexpected token
  /external/ltp/testcases/kernel/containers/share/
ns_create.c 82 char *token; local
90 while ((token = strsep(&argv[1], ","))) {
91 struct param *p = get_param(token);
94 tst_resm(TINFO, "Unknown namespace: %s", token);

Completed in 411 milliseconds

<<11121314151617181920>>