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

1 2 3 45 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/
DefaultConnectionReuseStrategy.java 56 * it's role. A token "close" indicates that the connection cannot
57 * be reused. If there is no such token, a token "keep-alive" indicates
58 * that the connection should be re-used. If neither token is found,
124 // documented in RFC 2068, section 19.7.1. A token "keep-alive" is
130 // RFC 2616 specifies "close" as the only connection token with a
134 // but is commonly used to carry one token, "close" or "keep-alive".
136 // sequence of tokens, where each token is a header name, and the
137 // token "close" has the above-mentioned additional meaning.
151 final String token = ti.nextToken() local
    [all...]
  /external/dagger2/producers/src/main/java/dagger/producers/internal/
AbstractProducer.java 38 @Nullable private final ProducerToken token; field in class:AbstractProducer
46 Provider<ProductionComponentMonitor> monitorProvider, @Nullable ProducerToken token) {
48 this.token = token;
62 ProducerMonitor monitor = monitorProvider.get().producerMonitorFor(token);
  /external/e2fsprogs/lib/support/
parse_qtype.c 20 char *buf, *token, *next, *tmp; local
33 for (token = buf, next = strtok_r(buf, PARSE_DELIM, &tmp);
34 token && *token; token = next) {
36 char *p = token;
59 *err_token = malloc(strlen(token) + 1);
61 strcpy(*err_token, token);
66 printf("word: %s\n", token);
  /external/jsmn/
jsmn.c 6 * Allocates a fresh unused token from the token pull.
24 * Fills token type and boundaries.
26 static void jsmn_fill_token(jsmntok_t *token, jsmntype_t type,
28 token->type = type;
29 token->start = start;
30 token->end = end;
31 token->size = 0;
35 * Fills next available token with JSON primitive.
39 jsmntok_t *token; local
88 jsmntok_t *token; local
157 jsmntok_t *token; local
    [all...]
  /external/libchrome/base/
sequence_token_unittest.cc 51 const SequenceToken token = SequenceToken::Create(); local
57 scoped_set_sequence_token_for_current_thread(token);
59 EXPECT_EQ(token, SequenceToken::GetForCurrentThread());
  /external/mesa3d/src/mesa/swrast/
s_feedback.c 80 GLenum token = GL_LINE_TOKEN; local
84 token = GL_LINE_RESET_TOKEN;
86 _mesa_feedback_token(ctx, (GLfloat) (GLint) token);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContentLanguageParser.java 78 Token token = lexer.getNextToken(); local
79 ContentLanguage cl = new ContentLanguage( token.getTokenValue() );
88 token = lexer.getNextToken();
89 cl = new ContentLanguage( token.getTokenValue() );
EventParser.java 76 Token token = lexer.getNextToken(); local
77 String value = token.getTokenValue();
Parser.java 30 import gov.nist.core.Token;
58 Token tok = lexer.match(SIP);
80 Token[] tokens = this.lexer.peekNextToken(1);
81 Token token = (Token) tokens[0]; local
82 if (token.getTokenType() == INVITE
83 || token.getTokenType() == ACK
84 || token.getTokenType() == OPTIONS
85 || token.getTokenType() == BY
    [all...]
ReasonParser.java 76 Token token = lexer.getNextToken(); local
77 String value = token.getTokenValue();
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssGrammarTest.java 56 String token = it.next(); local
57 if (!" ".equals(token)) {
58 actualTokens.add(token + ":" + type.name());
  /external/pdfium/core/fpdfapi/parser/
cpdf_simple_parser_unittest.cpp 67 const char* token; member in struct:FindTagTestStruct
75 // Empty token.
80 // Partial token match.
93 parser.FindTagParamFromStart(data.token, data.num_params))
  /external/perfetto/src/traced/probes/filesystem/
prefix_finder.cc 87 char* token = s.cur_token(); local
90 if (elem.first == token) {
96 elem.first = token;
101 state_.emplace_back(token, 1);
113 char* token = s.cur_token(); local
114 Node* next = cur->MaybeChild(token);
118 PERFETTO_DCHECK(cur->name_ == token);
  /external/python/cpython2/Include/
parsetok.h 16 int token; member in struct:__anon32599
  /external/python/cpython3/Include/
parsetok.h 19 int token; member in struct:__anon33166
  /external/selinux/libsepol/cil/src/
cil_lexer.h 45 struct token { struct
53 int cil_lexer_next(struct token *tok);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliArrayTypeElement.java 56 ASTNode token = findChildByType(SmaliTokens.ARRAY_TYPE_PREFIX); local
57 assert token != null;
62 int dimensions = token.getTextLength() - 1;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/tokens/
TagTokenTest.java 22 import org.yaml.snakeyaml.tokens.Token.ID;
28 TagToken token = new TagToken(new TagTuple("!foo", "!bar"), mark, mark); local
29 assertEquals("value=[!foo, !bar]", token.getArguments());
36 fail("Token without start mark should not be accepted.");
38 assertEquals("Token requires marks.", e.getMessage());
42 fail("Token without end mark should not be accepted.");
44 assertEquals("Token requires marks.", e.getMessage());
60 TagToken token = new TagToken(new TagTuple("!foo", "!bar"), mark, mark); local
61 assertEquals(ID.Tag, token.getTokenId());
  /external/swiftshader/third_party/LLVM/include/llvm-c/
EnhancedDisassembly.h 77 Encapsulates a token from the disassembly of an instruction.
254 Retrieves a token from an instruction. The token is valid until the
256 @param token A pointer to be filled in with the token.
258 @param index The index of the token in the instruction.
261 int EDGetToken(EDTokenRef *token,
267 Gets the disassembled text for a token.
269 string. (The string becomes invalid when the token is released.)
270 @param token The token to be queried
458 typedef int (^EDTokenVisitor_t)(EDTokenRef token); variable
    [all...]
  /external/tensorflow/tensorflow/core/platform/cloud/
google_auth_provider_test.cc 41 string* token, uint64* expiration_timestamp_sec) override {
43 *token = return_token;
48 /// Retrieves a bearer token using a refresh token.
50 Json::Value json, StringPiece oauth_server_uri, string* token,
53 *token = return_token;
97 oauth_client->return_token = "fake-token";
100 string token; local
101 TF_EXPECT_OK(provider.GetToken(&token));
102 EXPECT_EQ("fake-token", token)
134 string token; local
178 string token; local
204 string token; local
224 string token; local
    [all...]
  /external/turbine/javatests/com/google/turbine/parse/
JavacLexer.java 36 List<Tokens.Token> tokens = new ArrayList<>();
39 tokens.add(scanner.token());
40 } while (scanner.token().kind != Tokens.TokenKind.EOF);
43 new Function<Tokens.Token, String>() {
45 public String apply(Tokens.Token token) {
46 return printToken(input, token);
51 private static String printToken(String input, Tokens.Token token) {
52 switch (token.kind)
    [all...]
  /frameworks/av/media/libmediaplayer2/nuplayer2/
JWakeLock.cpp 62 int64_t token = IPCThreadState::self()->clearCallingIdentity(); local
66 IPCThreadState::self()->restoreCallingIdentity(token);
91 int64_t token = IPCThreadState::self()->clearCallingIdentity(); local
93 IPCThreadState::self()->restoreCallingIdentity(token);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
AWakeLock.cpp 61 int64_t token = IPCThreadState::self()->clearCallingIdentity(); local
65 IPCThreadState::self()->restoreCallingIdentity(token);
90 int64_t token = IPCThreadState::self()->clearCallingIdentity(); local
92 IPCThreadState::self()->restoreCallingIdentity(token);
  /frameworks/av/media/libstagefright/include/media/stagefright/
PersistentSurface.h 67 HalToken token; local
68 bool result = createHalToken(mHidlTarget, &token);
71 parcel->writeByteArray(token.size(), token.data());
89 HalToken token = HalToken(tokenVector); local
90 mHidlTarget = retrieveHalInterface(token);
91 deleteHalToken(token);
  /frameworks/base/cmds/incident_helper/src/parsers/
CpuFreqParser.cpp 68 uint64_t token = proto.start(CpuFreqProto::CPU_FREQS); local
76 proto.end(token);

Completed in 346 milliseconds

1 2 3 45 6 7 8 91011>>