HomeSort by relevance Sort by last modified time
    Searched refs:token (Results 101 - 125 of 806) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
SupportedParser.java 82 Token token = lexer.getNextToken(); local
83 supported.setOptionTag(token.getTokenValue());
96 token = lexer.getNextToken();
97 supported.setOptionTag(token.getTokenValue());
UnsupportedParser.java 80 Token token = lexer.getNextToken(); local
81 unsupported.setOptionTag(token.getTokenValue());
94 token = lexer.getNextToken();
95 unsupported.setOptionTag(token.getTokenValue());
  /external/qemu/
json-streamer.c 21 static void json_message_process_token(JSONLexer *lexer, QString *token, JSONTokenType type, int x, int y)
27 switch (qstring_get_str(token)[0]) {
47 QINCREF(token);
48 qdict_put(dict, "token", token);
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
WebKitPluginAgent.defs 34 ServerAuditToken token :audit_token_t;
45 ServerAuditToken token :audit_token_t);
  /frameworks/base/core/java/com/google/android/util/
SmileyParser.java 64 ArrayList<Token> tokens = part.getTokens();
67 Token token = tokens.get(i); local
69 builder.append(token.getRawText());
70 if (token.getType() == AbstractMessageParser.Token.Type.SMILEY) {
71 int resid = mRes.getSmileyRes(token.getRawText());
  /hardware/ril/mock-ril/src/python/
tcs.py 68 """A fixed length message header; cmd, token, status and length of protobuf."""
71 self.token = 0
86 mh.token = self.token
102 self.token = mh.token
120 self.token = 0
123 def sendMsg(self, s, cmd, token, protobuf=''):
129 token: token to send, will be returned unmodifie
    [all...]
  /external/libxml2/include/libxml/
xmlautomata.h 59 const xmlChar *token,
65 const xmlChar *token,
72 const xmlChar *token,
80 const xmlChar *token,
88 const xmlChar *token,
97 const xmlChar *token,
105 const xmlChar *token,
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParser.java 38 private static int parseDigits(Token token) {
39 return Integer.parseInt(token.image, 10);
198 {if (true) return token.image;}
212 Token t;
277 Token t;
303 Token t;
310 Token t;
317 Token t;
324 Token t, u; int z
411 public Token token, jj_nt; field in class:DateTimeParser
    [all...]
  /external/llvm/lib/MC/MCDisassembler/
EDToken.cpp 10 // This file implements the Enhanced Disassembler library's token class. The
11 // token is responsible for vending information about the token, such as its
136 EDToken *token; local
141 token = new EDToken(tokenIterator->getString(),
151 token = new EDToken(tokenIterator->getString(),
158 token = new EDToken(tokenIterator->getString(),
166 token->makeLiteral(true, -intVal);
168 token->makeLiteral(false, intVal);
173 token = new EDToken(tokenIterator->getString()
    [all...]
  /external/bluetooth/bluez/tools/
parser.y 55 %token K_BIND K_DEVICE K_CHANNEL K_COMMENT
56 %token K_YES K_NO
58 %token <number> NUMBER RFCOMM
59 %token <string> STRING WORD
60 %token <bdaddr> BDADDR
  /external/harfbuzz/contrib/tables/
unicode_parse_common.py 18 def codepoints_parse(token):
21 def fromHex(token):
22 return int(token, 16)
23 parts = token.split('..')
29 raise ValueError(token)
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 153 int token; local
155 // Read the next token, which is either the type or EOF.
156 token = st.nextToken();
157 if (token == StreamTokenizer.TT_EOF) {
160 if (token != StreamTokenizer.TT_WORD) {
171 token = st.nextToken();
172 if (token != '(') {
178 token = st.nextToken();
179 if (token != StreamTokenizer.TT_WORD) {
190 token = st.nextToken()
234 final int token = st.nextToken(); local
    [all...]
  /external/quake/quake/src/QW/gas2masm/
gas2masm.c 38 char *token; variable
797 token[0] = c;
803 token[count++] = 'n';
804 token[count++] = 'o';
805 token[count++] = 't';
806 token[count++] = ' ';
819 token[count++] = c;
828 token[count] = 0;
840 token[count] = 0;
846 token[count] = 0;
    [all...]
  /external/quake/quake/src/WinQuake/gas2masm/
gas2masm.c 38 char *token; variable
797 token[0] = c;
803 token[count++] = 'n';
804 token[count++] = 'o';
805 token[count++] = 't';
806 token[count++] = ' ';
819 token[count++] = c;
828 token[count] = 0;
840 token[count] = 0;
846 token[count] = 0;
    [all...]
  /external/srec/srec/EventLog/include/
SR_EventLog.h 55 * Log a string token using the basic logging level.
59 log->token(log, tokenName, value) : ESR_SUCCESS ) \
62 * Log an integer token using the basic logging level.
69 * Log a uint16 token using the basic logging level.
76 * Log a size_t token using the basic logging level.
83 * Log a boolean token using the basic logging level.
90 * Log a float token using the basic logging level.
104 * Log a string token using the audio logging level.
108 log->token(log, tokenName, value) : ESR_SUCCESS ) \
111 * Log an integer token using the audio logging level
143 ESR_ReturnCode(*token)(struct SR_EventLog_t* self, const LCHAR* token, const LCHAR *value); member in struct:SR_EventLog_t
    [all...]
  /frameworks/base/services/java/com/android/server/
VibratorService.java 53 Vibration(IBinder token, long millis, int uid) {
54 this(token, millis, null, 0, uid);
57 Vibration(IBinder token, long[] pattern, int repeat, int uid) {
58 this(token, 0, pattern, repeat, uid);
61 private Vibration(IBinder token, long millis, long[] pattern,
63 mToken = token;
119 public void vibrate(long milliseconds, IBinder token) {
134 Vibration vib = new Vibration(token, milliseconds, uid);
136 removeVibrationLocked(token);
153 public void vibratePattern(long[] pattern, int repeat, IBinder token) {
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Lexer.cpp 721 JSTokenType token = ERRORTOK; local
754 token = URSHIFTEQUAL;
757 token = URSHIFT;
762 token = RSHIFTEQUAL;
765 token = RSHIFT;
770 token = GE;
773 token = GT;
781 token = STREQ;
784 token = EQEQ;
787 token = EQUAL
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php 31 * key = the token
32 * secret = the token secret
40 * generates the basic string serialization of a token that a server
73 * @param OAuthToken $token
76 abstract public function build_signature($request, $consumer, $token);
82 * @param OAuthToken $token
86 public function check_signature($request, $consumer, $token, $signature) {
87 $built = $this->build_signature($request, $consumer, $token);
95 * encoded per Parameter Encoding) of the Consumer Secret and Token Secret, separated by an '&'
104 public function build_signature($request, $consumer, $token) {
508 $token = NULL; variable
529 $token = $this->get_token($request, $consumer, "request"); variable
546 $token = $this->get_token($request, $consumer, "access"); variable
621 $token = $this->data_store->lookup_token( variable
    [all...]
  /external/webkit/Source/WebCore/css/
CSSGrammar.y 108 %token WHITESPACE SGML_CD
109 %token TOKEN_EOF 0
111 %token INCLUDES
112 %token DASHMATCH
113 %token BEGINSWITH
114 %token ENDSWITH
115 %token CONTAINS
117 %token <string> STRING
119 %token <string> NTH
130 %token IMPORT_SY
    [all...]
  /frameworks/base/core/java/android/speech/tts/
AudioPlaybackHandler.java 66 * Stops all synthesis for a given {@code token}. If the current token
70 * NOTE: This assumes that all other messages in the queue with {@code token}
75 private void stop(MessageParams token) {
76 if (token == null) {
80 if (DBG) Log.d(TAG, "Stopping token : " + token);
82 if (token.getType() == MessageParams.TYPE_SYNTHESIS) {
83 AudioTrack current = ((SynthesisMessageParams) token).getAudioTrack();
93 // audio for this token
    [all...]
  /external/chromium/chrome/browser/policy/
user_policy_identity_strategy.cc 29 // Responsible for managing the on-disk token cache.
38 void Store(const std::string& token, const std::string& device_id);
45 void NotifyOnUIThread(const std::string& token,
47 void StoreOnFileThread(const std::string& token,
71 const std::string& token,
79 token,
108 const std::string& token,
112 identity_strategy_->OnCacheLoaded(token, device_id);
116 const std::string& token,
120 device_credentials.set_device_token(token);
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
IInputMethodManager.aidl 59 void setInputMethod(in IBinder token, String id);
60 void setInputMethodAndSubtype(in IBinder token, String id, in InputMethodSubtype subtype);
61 void hideMySoftInput(in IBinder token, int flags);
62 void showMySoftInput(in IBinder token, int flags);
63 void updateStatusIcon(in IBinder token, String packageName, int iconId);
64 void setImeWindowStatus(in IBinder token, int vis, int backDisposition);
69 boolean switchToLastInputMethod(in IBinder token);
  /cts/tools/dasm/src/dasm/
Scanner.java 29 import java_cup.runtime.token;
201 * Read and recognize next token
203 public token next_token() throws IOException, DasmError {
210 // return single SEP token (skip multiple newlines
214 return new token(sym.SEP);
223 case -1: // EOF token
225 return new token(sym.EOF);
227 case '=': // EQUALS token
229 return new token(sym.EQ);
231 case ':': // COLON token
    [all...]
  /external/antlr/src/org/antlr/runtime/debug/
DebugEventRepeater.java 30 import org.antlr.runtime.Token;
57 public void consumeToken(Token token) { listener.consumeToken(token); }
58 public void consumeHiddenToken(Token token) { listener.consumeHiddenToken(token); }
59 public void LT(int i, Token t) { listener.LT(i, t); }
82 public void createNode(Object node, Token token) { listener.createNode(node, token);
    [all...]
  /external/chromium/chrome/common/
auto_start_linux.cc 80 std::string token = value_name + "="; local
82 if (tokenizer.token().substr(0, token.length()) == token) {
83 *value = tokenizer.token().substr(token.length());

Completed in 313 milliseconds

1 2 3 45 6 7 8 91011>>