HomeSort by relevance Sort by last modified time
    Searched refs:TOKEN (Results 1 - 25 of 26) sorted by null

1 2

  /developers/build/
github-upload 9 ##replace with auth token for google-automerger GitHub account
10 TOKEN=herpderp
45 CREATE="curl -H 'Authorization: token '$TOKEN \
57 -H 'Authorization: token '$TOKEN \
68 URL="https://$TOKEN@github.com/$repoName"
github-update 9 ##replace with auth token for google-automerger GitHub account
10 TOKEN=herpderp
56 git remote set-url origin "https://$TOKEN@github.com/googlesamples/android-$i.git"
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
lexer.py 23 from ply.lex import TOKEN
47 def _error(self, msg, token):
48 raise LexError(self.filename, msg, token.lineno)
199 @TOKEN(floating_constant)
203 @TOKEN(hex_constant)
207 @TOKEN(octal_constant_disallowed)
212 @TOKEN(decimal_constant)
218 @TOKEN(bad_string_literal)
224 @TOKEN(octal_or_hex_ordinal_disallowed)
229 @TOKEN(ordinal
    [all...]
  /external/e2fsprogs/lib/ss/
parse.c 24 enum parse_mode { WHITESPACE, TOKEN, QUOTED_STRING };
85 /* random-token mode */
86 parse_mode = TOKEN;
97 while (parse_mode == TOKEN) {
129 parse_mode = TOKEN;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
MediaType.java 28 private static final String TOKEN = "([a-zA-Z0-9-!#$%&'*+.^_`{|}~]+)";
30 private static final Pattern TYPE_SUBTYPE = Pattern.compile(TOKEN + "/" + TOKEN);
32 ";\\s*" + TOKEN + "=(?:" + TOKEN + "|" + QUOTED + ")");
66 ? parameter.group(2) // Value is a token.
  /cts/tests/tests/view/src/android/view/cts/
ChoreographerTest.java 26 private static final Object TOKEN = new Object();
84 // If the token matches, the the callback should be removed.
88 Choreographer.CALLBACK_ANIMATION, removedCallback, TOKEN);
90 Choreographer.CALLBACK_ANIMATION, null, TOKEN);
95 // If the action and token matches, then the callback should be removed.
96 // If only the token matches, then the callback should not be removed.
98 Choreographer.CALLBACK_ANIMATION, addedCallback1, TOKEN);
100 Choreographer.CALLBACK_ANIMATION, removedCallback, TOKEN);
102 Choreographer.CALLBACK_ANIMATION, removedCallback, TOKEN);
142 // If the token matches, the the callback should be removed
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/account/
StaticAccountAuthenticator.java 39 private static final String TOKEN = "asdlkjfslkjfdklj";
46 sAccountBundle.putString(AccountManager.KEY_AUTHTOKEN, TOKEN);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-java/
HelloLicenseServlet.java 33 /* TODO: The token from the Chrome Developer Dashboard. */
34 private static final String TOKEN = "[INSERT TOKEN HERE]";
36 /* TODO: The token secret from the Chrome Developer Dashboard. */
37 private static final String TOKEN_SECRET = "[INSERT TOKEN SECRET HERE]";
73 oauth.setTokenWithSecret(TOKEN, TOKEN_SECRET);
  /development/samples/devbytes/telephony/SmsSampleProject/SmsSample/src/main/java/com/example/android/smssample/
MainActivity.java 98 getSupportLoaderManager().initLoader(SmsQuery.TOKEN, null, this);
161 if (i == SmsQuery.TOKEN) {
171 if (cursorLoader.getId() == SmsQuery.TOKEN && cursor != null) {
187 int TOKEN = 1;
  /external/chromium_org/components/copresence/handlers/
directive_handler.cc 26 // We only handle Token directives; wifi/ble requests aren't implemented.
27 DCHECK_EQ(directive.instruction_type(), TOKEN);
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
config.cpp 155 TOKEN,
164 string token; local
205 token.erase();
207 state = TOKEN;
208 token.push_back(c);
211 case TOKEN:
214 token.push_back('\0');
218 token.push_back(c);
305 pParam = new CNfcParam(token.c_str(), strValue);
307 pParam = new CNfcParam(token.c_str(), numValue)
    [all...]
  /external/libnfc-nci/src/adaptation/
config.cpp 155 TOKEN,
164 string token; local
216 token.erase();
218 state = TOKEN;
219 token.push_back(c);
222 case TOKEN:
225 token.push_back('\0');
229 token.push_back(c);
316 pParam = new CNfcParam(token.c_str(), strValue);
318 pParam = new CNfcParam(token.c_str(), numValue)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 44 const TOKEN = '[REPLACE THIS WITH YOUR OAUTH TOKEN]';
45 const TOKEN_SECRET = '[REPLACE THIS WITH YOUR OAUTH TOKEN SECRET]';
47 public $token; variable
53 $this->token = new OAuthToken(self::TOKEN, self::TOKEN_SECRET); variable
108 $this->consumer, $this->token, 'GET', $url, array());
111 $this->token);
  /external/chromium_org/remoting/webapp/unittests/
xmpp_login_handler_unittest.js 55 '<mechanism>X-GOOGLE-TOKEN</mechanism>' +
85 '<mechanism>X-GOOGLE-TOKEN</mechanism>' +
  /external/chromium_org/third_party/sqlite/src/src/
lempar.c 14 /* Next is all token values, in a form suitable for use by makeheaders.
42 ** original value of the token will not parse.
87 ** current state and lookahead token. These tables are used to implement
95 ** token onto the stack and goto state N.
140 ** appears in the grammar, then ID becomes a fallback token for X, Y,
142 ** but it does not parse, the type of the token is changed to ID and
156 ** + The value of the token stored at this level of the stack.
157 ** (In other words, the "major" token.)
161 ** It is sometimes called the "minor" token.
165 YYCODETYPE major; /* The major token value. This is the cod
    [all...]
parse.y 18 // All token codes are small integers with #defines that begin with "TK_"
21 // The type of the data attached to each token is Token. This is also the
24 %token_type {Token}
25 %default_type {Token}
34 assert( TOKEN.z[0] ); /* The tokenizer always gives us a token */
35 sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &TOKEN);
79 Token eOperator; /* "like" or "glob" or "regexp" */
97 struct AttachKey { int type; Token key; }
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
lempar.c 8 /* Next is all token values, in a form suitable for use by makeheaders.
36 ** original value of the token will not parse.
81 ** current state and lookahead token. These tables are used to implement
89 ** token onto the stack and goto state N.
134 ** appears in the grammar, then ID becomes a fallback token for X, Y,
136 ** but it does not parse, the type of the token is changed to ID and
150 ** + The value of the token stored at this level of the stack.
151 ** (In other words, the "major" token.)
155 ** It is sometimes called the "minor" token.
159 YYCODETYPE major; /* The major token value. This is the cod
    [all...]
  /external/chromium_org/third_party/ply/
lex.py 57 # This regular expression is used to match valid token names
60 # Exception thrown when invalid token encountered and no default error
68 # Token class. This class is used to represent the tokens produced.
107 # token() - Get the next token
298 # opttoken() - Return the next token from the Lexer
304 def token(self): member in class:Lexer
322 # Create a token for return
332 # If no token type was set, it's an ignored token
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
glslang.y 130 #define ES3_ONLY(TOKEN, LINE, REASON) { \
132 context->error(LINE, REASON " supported in GLSL ES 3.00 only ", TOKEN); \
138 %token <lex> INVARIANT HIGH_PRECISION MEDIUM_PRECISION LOW_PRECISION PRECISION
139 %token <lex> ATTRIBUTE CONST_QUAL BOOL_TYPE FLOAT_TYPE INT_TYPE UINT_TYPE
140 %token <lex> BREAK CONTINUE DO ELSE FOR IF DISCARD RETURN SWITCH CASE DEFAULT
141 %token <lex> BVEC2 BVEC3 BVEC4 IVEC2 IVEC3 IVEC4 VEC2 VEC3 VEC4 UVEC2 UVEC3 UVEC4
142 %token <lex> MATRIX2 MATRIX3 MATRIX4 IN_QUAL OUT_QUAL INOUT_QUAL UNIFORM VARYING
143 %token <lex> MATRIX2x3 MATRIX3x2 MATRIX2x4 MATRIX4x2 MATRIX3x4 MATRIX4x3
144 %token <lex> CENTROID FLAT SMOOTH
145 %token <lex> STRUCT VOID_TYPE WHIL
    [all...]
glslang_tab.cpp 386 #define ES3_ONLY(TOKEN, LINE, REASON) { \
388 context->error(LINE, REASON " supported in GLSL ES 3.00 only ", TOKEN); \
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 13 // copies from Token object for convenience in actions
54 * single token insertion or deletion error recovery. If
57 * To turn off single token insertion or deletion error
95 // a single token and hope for the best
106 // if current token is consistent with what could come after set
107 // then we know we're missing a token; error recovery is free to
108 // "insert" the missing token
122 /** Factor out what to do upon token mismatch so tree parsers can behave
124 * to get single token insertion and deletion. Use this to turn of
125 * single token insertion and deletion. Override mismatchRecove
    [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 59 /// or token type sequence (such as for interpretation).
74 /// Negative indexes are allowed. LA(-1) is previous token (token just matched).
75 /// LA(-i) where i is before first token should yield -1, invalid char or EOF.
248 /// <summary>The line number on which this token was matched; line=1..N</summary>
256 /// <summary>The line number on which this token was matched; line=1..N</summary>
260 /// An index from 0..N-1 of the token object in the input stream
267 /// <summary>The text of the token</summary>
281 /// to keep going or you do not upon token recognition error. If you do not
286 /// requested a token. Keep lexing until you get a valid one. Just repor
    [all...]
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 

Completed in 660 milliseconds

1 2