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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/hardware/fingerprint/
IFingerprintService.aidl 32 void authenticate(IBinder token, long sessionId, int userId,
37 void cancelAuthentication(IBinder token, String opPackageName);
40 void enroll(IBinder token, in byte [] cryptoToken, int groupId, IFingerprintServiceReceiver receiver,
44 void cancelEnrollment(IBinder token);
47 void remove(IBinder token, int fingerId, int groupId, int userId,
59 // Get a pre-enrollment authentication token
60 long preEnroll(IBinder token);
62 // Finish an enrollment sequence and invalidate the authentication token
63 int postEnroll(IBinder token);
87 void enumerate(IBinder token, int userId, IFingerprintServiceReceiver receiver)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/method/
EditorState.java 81 for (String token : tokens) {
82 if (token.startsWith("'") && token.endsWith("'")) {
83 for (int i = 1; i < token.length() - 1; ++i) {
84 final char ch = token.charAt(1);
91 sb.append(token.substring(1, token.length() - 1));
92 } else if (token.startsWith("U+")) {
93 final int codePoint = Integer.parseInt(token.substring(2), 16);
95 throw new IllegalArgumentException("Invalid code point is specified:" + token);
    [all...]
  /frameworks/base/services/autofill/java/com/android/server/autofill/ui/
PendingUi.java 44 * @param token token used to identify this pending UI.
46 public PendingUi(@NonNull IBinder token, int sessionId,
48 mToken = token;
55 * Gets the token used to identify this pending UI.
77 * Determines whether the given token matches the token used to identify this pending UI.
79 public boolean matches(IBinder token) {
80 return mToken.equals(token);
85 return "PendingUi: [token=" + mToken + ", sessionId=" + sessionId + ", state=
    [all...]
  /hardware/interfaces/tests/memory/1.0/
IMemoryTest.hal 19 import android.hidl.memory.token@1.0::IMemoryToken;
27 get()generates(IMemoryToken token);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParser.java 65 Token type;
66 Token subtype;
88 Token attrib;
98 Token t;
117 public Token token, jj_nt; field in class:ContentTypeParser
135 token = new Token();
147 token = new Token();
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
InputMethodManagerCompatWrapper.java 43 public boolean switchToNextInputMethod(final IBinder token, final boolean onlyCurrentIme) {
45 METHOD_switchToNextInputMethod, token, onlyCurrentIme);
48 public boolean shouldOfferSwitchingToNextInputMethod(final IBinder token) {
50 METHOD_shouldOfferSwitchingToNextInputMethod, token);
  /packages/services/Car/car-lib/src/android/car/vms/
IVmsPublisherService.aidl 32 oneway void publish(in IBinder token, in VmsLayer layer, int publisherId, in byte[] message) = 0;
42 oneway void setLayersOffering(in IBinder token, in VmsLayersOffering offering) = 2;
  /packages/services/Car/car-systemtest-lib/src/android/car/test/
CarTestManager.java 51 public void stopCarService(IBinder token) {
53 mService.stopCarService(token);
65 public void startCarService(IBinder token) {
67 mService.startCarService(token);
  /system/libhidl/libhidlcache/
libhidlcache_test.cpp 21 #include <android/hidl/memory/token/1.0/IMemoryToken.h>
45 using ::android::hidl::memory::token::V1_0::IMemoryToken;
60 sp<IMemoryToken> token = new HidlMemoryToken(mem); local
62 MemoryBlock blk = {token, 0x200 /* size */, 0x100 /* offset */};
63 sp<IMemoryToken> mtoken = blk.token;
67 EXPECT_FALSE(cache->cached(token));
69 MemoryBlock blk2 = {token, 0x200 /* size */, 0x300 /* offset */};
71 EXPECT_FALSE(cache->cached(token));
74 sp<IMemory> mem1 = cache->fetch(token);
75 EXPECT_TRUE(cache->cached(token));
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/
JavaTokenTest.java 52 private void assertToken(String image, Range range, int kind, JavaToken.Category category, JavaToken token) {
53 assertEquals(image, token.getText());
54 assertEquals(range, token.getRange().get());
55 assertEquals(kind, token.getKind());
56 assertEquals(category, token.getCategory());
57 token.getNextToken().ifPresent(nt -> assertEquals(token, nt.getPreviousToken().get()));
58 token.getPreviousToken().ifPresent(pt -> assertEquals(token, pt.getNextToken().get()));
59 assertTrue(token.getNextToken().isPresent() || token.getPreviousToken().isPresent())
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.h 32 int16_t token; member in struct:__anon26273
38 int16_t token; member in struct:__anon26274
63 // indexed by token value
71 /* TODO: The Token field should be broken out into a separate char array to
96 static INLINE void vp9_get_token_extra(int v, int16_t *token, EXTRABIT *extra) {
98 *token = CATEGORY6_TOKEN;
105 *token = vp9_dct_cat_lt_10_value_tokens[v].token;
110 return vp9_dct_cat_lt_10_value_tokens[v].token;
113 static INLINE int vp9_get_token_cost(int v, int16_t *token,
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlSanitizer.java 135 HtmlToken token = lexer.next(); local
136 switch (token.type) {
139 Encoding.decodeHtml(html.substring(token.start, token.end)));
143 html.substring(token.start, token.end)));
146 if (html.charAt(token.start + 1) == '/') { // A close tag.
148 html.substring(token.start + 2, token.end)));
187 html.substring(token.start + 1, token.end))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pyclbr.py 45 from token import NAME, DEDENT, OP
153 for tokentype, token, start, _end, _line in g:
159 elif token == 'def':
178 elif token == 'class':
187 tokentype, token, start = g.next()[0:3]
189 if token == '(':
195 tokentype, token, start = g.next()[0:3]
196 if token in (')', ',') and level == 1:
215 if token == '(':
217 elif token == ')':
    [all...]
  /external/icu/icu4c/source/test/intltest/
tokiter.h 41 * Return the next token from this iterator.
42 * @return TRUE if a token was read, or FALSE if no more tokens
45 UBool next(UnicodeString& token, UErrorCode& ec);
48 * Return the one-based line number of the line of the last token
63 UBool nextToken(UnicodeString& token, UErrorCode& ec);
  /external/python/cpython2/Lib/
pyclbr.py 45 from token import NAME, DEDENT, OP
155 for tokentype, token, start, _end, _line in g:
161 elif token == 'def':
180 elif token == 'class':
189 tokentype, token, start = g.next()[0:3]
191 if token == '(':
197 tokentype, token, start = g.next()[0:3]
198 if token in (')', ',') and level == 1:
217 if token == '(':
219 elif token == ')'
    [all...]
  /external/python/cpython3/Lib/
pyclbr.py 46 from token import NAME, DEDENT, OP
163 for tokentype, token, start, _end, _line in g:
169 elif token == 'def':
188 elif token == 'class':
197 tokentype, token, start = next(g)[0:3]
199 if token == '(':
205 tokentype, token, start = next(g)[0:3]
206 if token in (')', ',') and level == 1:
225 if token == '(':
227 elif token == ')'
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/tokens/
BlockEntryTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 BlockEntryToken token = new BlockEntryToken(mark, mark); local
28 assertEquals(ID.BlockEntry, token.getTokenId());
BlockSequenceStartTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 BlockSequenceStartToken token = new BlockSequenceStartToken(mark, mark); local
28 assertEquals(ID.BlockSequenceStart, token.getTokenId());
DirectiveTokenTest.java 24 import org.yaml.snakeyaml.tokens.Token.ID;
30 DirectiveToken<Integer> token = new DirectiveToken<Integer>("YAML", null, mark, mark); local
31 assertEquals("name=YAML", token.getArguments());
51 DirectiveToken<String> token = new DirectiveToken<String>("TAG", list, mark, mark); local
52 assertEquals("name=TAG, value=[!foo, !bar]", token.getArguments());
60 DirectiveToken<Integer> token = new DirectiveToken<Integer>("YAML", list, mark, mark); local
61 assertEquals("name=YAML, value=[1, 1]", token.getArguments());
66 DirectiveToken<Integer> token = new DirectiveToken<Integer>("YAML", null, mark, mark); local
67 assertEquals(ID.Directive, token.getTokenId());
DocumentEndTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 DocumentEndToken token = new DocumentEndToken(mark, mark); local
28 assertEquals(ID.DocumentEnd, token.getTokenId());
DocumentStartTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 DocumentStartToken token = new DocumentStartToken(mark, mark); local
28 assertEquals(ID.DocumentStart, token.getTokenId());
FlowEntryTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 FlowEntryToken token = new FlowEntryToken(mark, mark); local
28 assertEquals(ID.FlowEntry, token.getTokenId());
FlowMappingStartTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 FlowMappingStartToken token = new FlowMappingStartToken(mark, mark); local
28 assertEquals(ID.FlowMappingStart, token.getTokenId());
FlowSequenceStartTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 FlowSequenceStartToken token = new FlowSequenceStartToken(mark, mark); local
28 assertEquals(ID.FlowSequenceStart, token.getTokenId());
StreamStartTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 StreamStartToken token = new StreamStartToken(mark, mark); local
28 assertEquals(ID.StreamStart, token.getTokenId());

Completed in 547 milliseconds

1 2 3 4 5 6 7 8 91011>>