HomeSort by relevance Sort by last modified time
    Searched refs:token (Results 126 - 150 of 3503) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptParser.java 79 Token token = lexer.getNextToken(); local
80 accept.setContentType(token.getTokenValue());
83 token = lexer.getNextToken();
84 accept.setContentSubType(token.getTokenValue());
97 token = lexer.getNextToken();
98 accept.setContentType(token.getTokenValue());
101 token = lexer.getNextToken();
102 accept.setContentSubType(token.getTokenValue());
  /external/selinux/libsepol/cil/src/
cil_lexer.h 45 struct token { struct
53 int cil_lexer_next(struct token *tok);
  /external/swiftshader/src/Shader/
VertexShader.hpp 27 explicit VertexShader(const unsigned long *token);
31 static int validate(const unsigned long *const token); // Returns number of instructions if valid
  /frameworks/base/media/java/android/media/
IRingtonePlayer.aidl 29 oneway void play(IBinder token, in Uri uri, in AudioAttributes aa, float volume, boolean looping);
30 oneway void stop(IBinder token);
31 boolean isPlaying(IBinder token);
32 oneway void setPlaybackProperties(IBinder token, float volume, boolean looping);
  /frameworks/base/media/java/android/media/midi/
IMidiDeviceOpenCallback.aidl 24 void onDeviceOpened(in IMidiDeviceServer server, IBinder token);
  /frameworks/base/media/java/android/media/tv/
ITvRemoteProvider.aidl 26 void onInputBridgeConnected(IBinder token);
  /frameworks/base/core/java/android/util/
JsonReader.java 33 * Within JSON objects, name/value pairs are represented by a single token.
193 * long as the longest token that can be reported as a number.
211 * The type of the next token to be returned by {@link #peek} and {@link
214 private JsonToken token; field in class:JsonReader
273 * Consumes the next token from the JSON stream and asserts that it is the
281 * Consumes the next token from the JSON stream and asserts that it is the
289 * Consumes the next token from the JSON stream and asserts that it is the
297 * Consumes the next token from the JSON stream and asserts that it is the
309 if (token != expected) {
320 return token != JsonToken.END_OBJECT && token != JsonToken.END_ARRAY
352 JsonToken token = nextValue(); local
554 JsonToken token = advance(); local
    [all...]
  /external/libtextclassifier/smartselect/
token-feature-extractor.h 38 // Whether to extract the token case feature.
64 // Extracts features from a token.
65 // - is_in_span is a bool indicator whether the token is a part of the
70 // (depending on the options) for the token
71 bool Extract(const Token& token, bool is_in_span,
81 // Hashes given token to given number of buckets.
82 int HashToken(StringPiece token) const;
84 // Extracts the charactergram features from the token.
85 std::vector<int> ExtractCharactergramFeatures(const Token& token) const
    [all...]
  /frameworks/native/opengl/libagl/
TokenManager.cpp 27 // token 0 is always reserved
47 const GLuint token = *tokens++; local
48 if (token) {
49 mTokenizer.release(token);
54 bool TokenManager::isTokenValid(GLuint token) const
57 return mTokenizer.isAcquired(token);
Tokenizer.h 37 status_t reserve(uint32_t token);
38 status_t release(uint32_t token);
39 bool isAcquired(uint32_t token) const;
50 ssize_t _indexOrderOf(uint32_t token, size_t* order=0) const;
51 ssize_t _insertTokenAt(uint32_t token, size_t index);
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryService.java 69 public int token; field in class:AsyncQueryService.Operation
103 builder.append(", token=");
104 builder.append(token);
117 * returns a practically unique token for db operations
138 * @param token The token representing the operation to be canceled. If
139 * multiple operations have the same token they will all be
142 public final int cancelOperation(int token) {
143 return AsyncQueryServiceHelper.cancelOperation(token);
150 * @param token A token passed into {@link #onQueryComplete} to identify th
401 int token = msg.what; local
    [all...]
  /external/ImageMagick/MagickWand/tests/
script-token-test.sh 5 # script-token-test.sh | diff - script-token-test-results.txt
7 ./script-token-test script-token-test-data.txt
10 echo -n "\"Next token bad quotes\" \"unfinished quotes ->" |\
11 ./script-token-test
15 ./script-token-test
18 ( echo '"Very BIG Token Tests"'
27 ) | ./script-token-test
  /external/smali/smalidea/src/main/java/org/jf/smalidea/
SmaliLexer.java 45 private CommonToken token = null; field in class:SmaliLexer
59 this.token = null;
69 return token.getText();
81 return mapTokenTypeToElementType(token.getType());
100 return token.getStartIndex();
106 return token.getStopIndex()+1;
111 token = null;
125 if (token == null) {
126 token = (CommonToken)lexer.nextToken();
129 assert token != null
    [all...]
  /frameworks/base/core/jni/
android_util_XmlBlock.cpp 63 jlong token)
65 ResXMLTree* osb = reinterpret_cast<ResXMLTree*>(token);
75 jlong token)
77 ResXMLTree* osb = reinterpret_cast<ResXMLTree*>(token);
95 jlong token)
97 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token);
129 jlong token)
131 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token);
140 jlong token)
142 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token);
    [all...]
  /external/jsoncpp/src/lib_json/
json_reader.cpp 131 Token token; local
132 skipCommentTokens(token);
137 // Set error location to start of doc, ideally should be first token found
139 token.type_ = tokenError;
140 token.start_ = beginDoc;
141 token.end_ = endDoc;
144 token);
152 Token token; local
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONML.java 56 Object token; local
66 token = x.nextContent();
67 if (token == XML.LT) {
68 token = x.nextToken();
69 if (token instanceof Character) {
70 if (token == XML.SLASH) {
74 token = x.nextToken();
75 if (!(token instanceof String)) {
78 token + "'.");
83 return token;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/
ElementPath.py 74 for token in xpath_tokenizer_re.findall(pattern):
75 tag = token[1]
81 yield token[0], "{%s}%s" % (namespaces[prefix], uri)
85 yield token
96 def prepare_child(next, token):
97 tag = token[1]
105 def prepare_star(next, token):
112 def prepare_self(next, token):
118 def prepare_descendant(next, token):
119 token = next()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/
ElementPath.py 74 for token in xpath_tokenizer_re.findall(pattern):
75 tag = token[1]
81 yield token[0], "{%s}%s" % (namespaces[prefix], uri)
85 yield token
96 def prepare_child(next, token):
97 tag = token[1]
105 def prepare_star(next, token):
112 def prepare_self(next, token):
118 def prepare_descendant(next, token):
119 token = next()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/etree/
ElementPath.py 74 for token in xpath_tokenizer_re.findall(pattern):
75 tag = token[1]
81 yield token[0], "{%s}%s" % (namespaces[prefix], uri)
85 yield token
96 def prepare_child(next, token):
97 tag = token[1]
105 def prepare_star(next, token):
112 def prepare_self(next, token):
118 def prepare_descendant(next, token):
119 token = next(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/etree/
ElementPath.py 74 for token in xpath_tokenizer_re.findall(pattern):
75 tag = token[1]
81 yield token[0], "{%s}%s" % (namespaces[prefix], uri)
85 yield token
96 def prepare_child(next, token):
97 tag = token[1]
105 def prepare_star(next, token):
112 def prepare_self(next, token):
118 def prepare_descendant(next, token):
119 token = next(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementPath.py 74 for token in xpath_tokenizer_re.findall(pattern):
75 tag = token[1]
81 yield token[0], "{%s}%s" % (namespaces[prefix], uri)
85 yield token
96 def prepare_child(next, token):
97 tag = token[1]
105 def prepare_star(next, token):
112 def prepare_self(next, token):
118 def prepare_descendant(next, token):
119 token = next(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementPath.py 74 for token in xpath_tokenizer_re.findall(pattern):
75 tag = token[1]
81 yield token[0], "{%s}%s" % (namespaces[prefix], uri)
85 yield token
96 def prepare_child(next, token):
97 tag = token[1]
105 def prepare_star(next, token):
112 def prepare_self(next, token):
118 def prepare_descendant(next, token):
119 token = next(
    [all...]
  /frameworks/base/core/java/android/app/
InstantAppResolverService.java 61 int digestPrefix[], String token, InstantAppResolutionCallback callback) {
71 int digestPrefix[], String token, InstantAppResolutionCallback callback) {
93 int digestPrefix[], String token, int sequence, IRemoteCallback callback) {
95 Slog.v(TAG, "[" + token + "] Phase1 called; posting");
100 args.arg3 = token;
108 int digestPrefix[], String token, String hostName, IRemoteCallback callback) {
110 Slog.v(TAG, "[" + token + "] Phase2 called; posting");
115 args.arg3 = token;
146 void _onGetInstantAppResolveInfo(int[] digestPrefix, String token,
149 Slog.d(TAG, "[" + token + "] Phase1 request;
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallAdapter.java 52 long token = Binder.clearCallingIdentity(); local
64 Binder.restoreCallingIdentity(token);
75 long token = Binder.clearCallingIdentity(); local
87 Binder.restoreCallingIdentity(token);
98 long token = Binder.clearCallingIdentity(); local
110 Binder.restoreCallingIdentity(token);
121 long token = Binder.clearCallingIdentity(); local
133 Binder.restoreCallingIdentity(token);
144 long token = Binder.clearCallingIdentity(); local
156 Binder.restoreCallingIdentity(token);
167 long token = Binder.clearCallingIdentity(); local
190 long token = Binder.clearCallingIdentity(); local
212 long token = Binder.clearCallingIdentity(); local
235 long token = Binder.clearCallingIdentity(); local
257 long token = Binder.clearCallingIdentity(); local
274 long token = Binder.clearCallingIdentity(); local
291 long token = Binder.clearCallingIdentity(); local
314 long token = Binder.clearCallingIdentity(); local
336 long token = Binder.clearCallingIdentity(); local
358 long token = Binder.clearCallingIdentity(); local
380 long token = Binder.clearCallingIdentity(); local
402 long token = Binder.clearCallingIdentity(); local
424 long token = Binder.clearCallingIdentity(); local
446 long token = Binder.clearCallingIdentity(); local
468 long token = Binder.clearCallingIdentity(); local
485 long token = Binder.clearCallingIdentity(); local
502 long token = Binder.clearCallingIdentity(); local
524 long token = Binder.clearCallingIdentity(); local
546 long token = Binder.clearCallingIdentity(); local
568 long token = Binder.clearCallingIdentity(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t001lexer.py 27 token = lexer.nextToken()
28 self.failUnlessEqual(token.type, self.lexerModule.ZERO)
30 token = lexer.nextToken()
31 self.failUnlessEqual(token.type, self.lexerModule.EOF)
38 types = [token.type for token in lexer]
48 token = lexer.nextToken()

Completed in 2029 milliseconds

1 2 3 4 56 7 8 91011>>