Home
last modified time | relevance | path

Searched defs:token (Results 1 – 25 of 1925) sorted by relevance

12345678910>>...77

/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/lex/lexer/lexertl/
Dtoken.hpp124 struct token<Iterator, lex::omit, mpl::false_, Idtype> struct
126 typedef Iterator iterator_type;
127 typedef mpl::false_ has_state;
128 typedef Idtype id_type;
129 typedef unused_type token_value_type;
132 token() : id_(id_type(boost::lexer::npos)) {} in token() function
135 explicit token(int) : id_(id_type(0)) {} in token() function
137 token(id_type id, std::size_t) : id_(id) {} in token() function
139 token(id_type id, std::size_t, token_value_type) in token() function
142 token_value_type& value() { static token_value_type u; return u; } in value()
[all …]
/external/tink/java_src/src/test/java/com/google/crypto/tink/jwt/
DRawJwtTest.java40 RawJwt token = RawJwt.newBuilder().withoutExpiration().build(); in emptyToken_getRegisteredClaimShouldThrow() local
52 RawJwt token = RawJwt.newBuilder().withoutExpiration().build(); in emptyToken_hasShouldReturnFalse() local
64 RawJwt token = RawJwt.newBuilder().setIssuer("foo").withoutExpiration().build(); in setIssuer_success() local
71 RawJwt token = RawJwt.newBuilder().addAudience("foo").withoutExpiration().build(); in addAudience_success() local
78 RawJwt token = in addMulitpleAudiences_success() local
86 RawJwt token = RawJwt.newBuilder().setAudience("foo").withoutExpiration().build(); in setAudience_success() local
93 RawJwt token = in setAudiences_success() local
117 RawJwt token = in setAudiencesAndAddAudience_appendToList() local
162 RawJwt.Builder token = RawJwt.newBuilder(); in setInvalidStrings_fails() local
181 RawJwt token = RawJwt.newBuilder().setSubject("foo").withoutExpiration().build(); in setSubject_success() local
[all …]
DVerifiedJwtTest.java74 VerifiedJwt token = new VerifiedJwt(rawToken); in getIssuer_success() local
83 VerifiedJwt token = new VerifiedJwt(rawToken); in getSubject_success() local
92 VerifiedJwt token = new VerifiedJwt(rawToken); in getAudiences_success() local
102 VerifiedJwt token = new VerifiedJwt(rawToken); in getMultipleAudiences_success() local
111 VerifiedJwt token = new VerifiedJwt(rawToken); in getJwtId_success() local
120 VerifiedJwt token = new VerifiedJwt(rawToken); in getExpiration_success() local
133 VerifiedJwt token = new VerifiedJwt(rawToken); in getNotBefore_success() local
143 VerifiedJwt token = new VerifiedJwt(rawToken); in getIssuedAt_success() local
161 VerifiedJwt token = new VerifiedJwt(rawToken); in getRegisteredClaim_shouldThrow() local
187 VerifiedJwt token = new VerifiedJwt(rawToken); in getNotRegisteredSimpleClaims_success() local
[all …]
DJwtValidatorTest.java48 RawJwt token = in validate_expired_shouldThrow() local
68 VerifiedJwt token = validator.validate(unverified); in validate_notExpired_success() local
82 VerifiedJwt token = validator.validate(unverified); in validate_notExpired_clockSkew_success() local
103 RawJwt token = in validate_before_shouldThrow() local
121 VerifiedJwt token = validator.validate(unverified); in validate_notBefore_success() local
134 VerifiedJwt token = validator.validate(rawJwt); in validate_tokenWithNotBeforeIsNow_success() local
151 VerifiedJwt token = validator.validate(unverified); in validate_notBefore_clockSkew_success() local
226 VerifiedJwt token = validator.validate(tokenWithoutExpiration); in explicitlyAllowTokensWithoutExpiration() local
232 RawJwt token = RawJwt.newBuilder().withoutExpiration().build(); in requireTypeHeaderButNoTypeHeaderInToken_shouldThrow() local
241 RawJwt token = in wrongTypeHeaderInToken_shouldThrow() local
[all …]
/external/tink-java/src/test/java/com/google/crypto/tink/jwt/
DRawJwtTest.java40 RawJwt token = RawJwt.newBuilder().withoutExpiration().build(); in emptyToken_getRegisteredClaimShouldThrow() local
52 RawJwt token = RawJwt.newBuilder().withoutExpiration().build(); in emptyToken_hasShouldReturnFalse() local
64 RawJwt token = RawJwt.newBuilder().setIssuer("foo").withoutExpiration().build(); in setIssuer_success() local
71 RawJwt token = RawJwt.newBuilder().addAudience("foo").withoutExpiration().build(); in addAudience_success() local
78 RawJwt token = in addMulitpleAudiences_success() local
86 RawJwt token = RawJwt.newBuilder().setAudience("foo").withoutExpiration().build(); in setAudience_success() local
93 RawJwt token = in setAudiences_success() local
117 RawJwt token = in setAudiencesAndAddAudience_appendToList() local
162 RawJwt.Builder token = RawJwt.newBuilder(); in setInvalidStrings_fails() local
181 RawJwt token = RawJwt.newBuilder().setSubject("foo").withoutExpiration().build(); in setSubject_success() local
[all …]
DVerifiedJwtTest.java74 VerifiedJwt token = new VerifiedJwt(rawToken); in getIssuer_success() local
83 VerifiedJwt token = new VerifiedJwt(rawToken); in getSubject_success() local
92 VerifiedJwt token = new VerifiedJwt(rawToken); in getAudiences_success() local
102 VerifiedJwt token = new VerifiedJwt(rawToken); in getMultipleAudiences_success() local
111 VerifiedJwt token = new VerifiedJwt(rawToken); in getJwtId_success() local
120 VerifiedJwt token = new VerifiedJwt(rawToken); in getExpiration_success() local
133 VerifiedJwt token = new VerifiedJwt(rawToken); in getNotBefore_success() local
143 VerifiedJwt token = new VerifiedJwt(rawToken); in getIssuedAt_success() local
161 VerifiedJwt token = new VerifiedJwt(rawToken); in getRegisteredClaim_shouldThrow() local
187 VerifiedJwt token = new VerifiedJwt(rawToken); in getNotRegisteredSimpleClaims_success() local
[all …]
/external/pdfium/xfa/fxfa/formcalc/
Dcxfa_fmlexer_unittest.cpp15 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local
22 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local
30 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local
40 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local
46 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local
52 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local
58 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local
64 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local
72 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local
86 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local
[all …]
/external/antlr/runtime/C/src/
Dantlr3commontoken.c75 pANTLR3_COMMON_TOKEN token; in antlr3CommonTokenNew() local
207 pANTLR3_COMMON_TOKEN token; in newPoolToken() local
270 ANTLR3_UINT32 token; in factoryClose() local
329 pANTLR3_COMMON_TOKEN token; in newToken() local
349 antlr3SetTokenAPI(pANTLR3_COMMON_TOKEN token) in antlr3SetTokenAPI()
374 static pANTLR3_STRING getText (pANTLR3_COMMON_TOKEN token) in getText()
438 static void setText8 (pANTLR3_COMMON_TOKEN token, pANTLR3_UINT8 text) in setText8()
474 static void setText (pANTLR3_COMMON_TOKEN token, pANTLR3_STRING text) in setText()
487 static ANTLR3_UINT32 getType (pANTLR3_COMMON_TOKEN token) in getType()
492 static void setType (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 type) in setType()
[all …]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
DParserImpl.java187 private CommentEvent produceCommentEvent(CommentToken token) { in produceCommentEvent()
209 StreamStartToken token = (StreamStartToken) scanner.getToken(); in produce() local
226 Token token = scanner.peekToken(); in produce() local
249 Token token = scanner.peekToken(); in produce() local
272 StreamEndToken token = (StreamEndToken) scanner.getToken(); in produce() local
289 Token token = scanner.peekToken(); in produce() local
340 DirectiveToken token = (DirectiveToken) scanner.getToken(); in processDirectives() local
427 AliasToken token = (AliasToken) scanner.getToken(); in parseNode() local
434 AnchorToken token = (AnchorToken) scanner.getToken(); in parseNode() local
451 AnchorToken token = (AnchorToken) scanner.getToken(); in parseNode() local
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
DLexer.java11 protected Token token; field in Lexer
160 @SuppressWarnings("hiding") Token token = new0( in getToken() local
175 @SuppressWarnings("hiding") Token token = new1( in getToken() local
190 @SuppressWarnings("hiding") Token token = new2( in getToken() local
204 @SuppressWarnings("hiding") Token token = new3( in getToken() local
218 @SuppressWarnings("hiding") Token token = new4( in getToken() local
232 @SuppressWarnings("hiding") Token token = new5( in getToken() local
246 @SuppressWarnings("hiding") Token token = new6( in getToken() local
260 @SuppressWarnings("hiding") Token token = new7( in getToken() local
274 @SuppressWarnings("hiding") Token token = new8( in getToken() local
[all …]
/external/google-java-format/core/src/main/java/com/google/googlejavaformat/java/javadoc/
DJavadocWriter.java74 void requestMoeBeginStripComment(Token token) { in requestMoeBeginStripComment()
94 void writeFooterJavadocTagStart(Token token) { in writeFooterJavadocTagStart()
126 void writeListOpen(Token token) { in writeListOpen()
137 void writeListClose(Token token) { in writeListClose()
148 void writeListItemOpen(Token token) { in writeListItemOpen()
160 void writeHeaderOpen(Token token) { in writeHeaderOpen()
166 void writeHeaderClose(Token token) { in writeHeaderClose()
172 void writeParagraphOpen(Token token) { in writeParagraphOpen()
186 void writeBlockquoteOpenOrClose(Token token) { in writeBlockquoteOpenOrClose()
194 void writePreOpen(Token token) { in writePreOpen()
[all …]
/external/tensorflow/tensorflow/core/platform/
Dfile_system.h50 void* token; member
76 const std::string& fname, TransactionToken* token, in NewRandomAccessFile()
101 const std::string& fname, TransactionToken* token, in NewWritableFile()
123 const std::string& fname, TransactionToken* token, in NewAppendableFile()
144 const std::string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile()
155 TransactionToken* token) { in FileExists()
179 TransactionToken* token, in GetChildren()
212 TransactionToken* token, in GetMatchingPaths()
231 TransactionToken* token, in Stat()
242 TransactionToken* token) { in DeleteFile()
[all …]
Dnull_file_system.h42 const string& fname, TransactionToken* token, in NewRandomAccessFile()
47 Status NewWritableFile(const string& fname, TransactionToken* token, in NewWritableFile()
52 Status NewAppendableFile(const string& fname, TransactionToken* token, in NewAppendableFile()
58 const string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile()
64 Status FileExists(const string& fname, TransactionToken* token) override { in FileExists()
68 Status GetChildren(const string& dir, TransactionToken* token, in GetChildren()
73 Status GetMatchingPaths(const string& pattern, TransactionToken* token, in GetMatchingPaths()
78 Status DeleteFile(const string& fname, TransactionToken* token) override { in DeleteFile()
82 Status CreateDir(const string& dirname, TransactionToken* token) override { in CreateDir()
86 Status DeleteDir(const string& dirname, TransactionToken* token) override { in DeleteDir()
[all …]
Dretrying_file_system.h57 Status FileExists(const string& fname, TransactionToken* token) override { in FileExists()
65 Status GetChildren(const string& dir, TransactionToken* token, in GetChildren()
74 Status GetMatchingPaths(const string& pattern, TransactionToken* token, in GetMatchingPaths()
83 Status Stat(const string& fname, TransactionToken* token, in Stat()
92 Status DeleteFile(const string& fname, TransactionToken* token) override { in DeleteFile()
100 Status CreateDir(const string& dirname, TransactionToken* token) override { in CreateDir()
108 Status DeleteDir(const string& dirname, TransactionToken* token) override { in DeleteDir()
116 Status GetFileSize(const string& fname, TransactionToken* token, in GetFileSize()
126 TransactionToken* token) override { in RenameFile()
134 Status IsDirectory(const string& dirname, TransactionToken* token) override { in IsDirectory()
[all …]
Denv.h127 Status NewRandomAccessFile(const std::string& fname, TransactionToken* token, in NewRandomAccessFile()
150 Status NewWritableFile(const std::string& fname, TransactionToken* token, in NewWritableFile()
170 Status NewAppendableFile(const std::string& fname, TransactionToken* token, in NewAppendableFile()
189 const std::string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile()
197 Status FileExists(const std::string& fname, TransactionToken* token) { in FileExists()
207 bool FilesExist(const std::vector<string>& files, TransactionToken* token, in FilesExist()
218 Status GetChildren(const std::string& dir, TransactionToken* token, in GetChildren()
235 Status GetMatchingPaths(const std::string& pattern, TransactionToken* token, in GetMatchingPaths()
243 Status DeleteFile(const std::string& fname, TransactionToken* token) { in DeleteFile()
274 Status DeleteRecursively(const std::string& dirname, TransactionToken* token, in DeleteRecursively()
[all …]
/external/aws-sdk-java-v2/core/auth/src/main/java/software/amazon/awssdk/auth/signer/params/
DTokenSignerParams.java30 private final SdkToken token; field in TokenSignerParams
40 public SdkToken token() { in token() method in TokenSignerParams
53 B token(SdkToken token); in token() method
59 private SdkToken token; field in TokenSignerParams.BuilderImpl
65 public B token(SdkToken token) { in token() argument
70 public void setToken(SdkToken token) { in setToken()
/external/angle/util/capture/
Dtrace_interpreter.cpp165 void readToken(Token &token, char delim) in readToken()
236 Token &token = paramTokens[numParams++]; in readFunction() local
333 void PackResourceID(ParamBuffer &params, const Token &token) in PackResourceID()
397 void PackIntParameter(ParamBuffer &params, ParamType paramType, const Token &token) in PackIntParameter()
433 uint32_t GetStringArrayOffset(const Token &token, const char *prefixString) in GetStringArrayOffset()
447 void PackMutablePointerParameter(ParamBuffer &params, ParamType paramType, const Token &token) in PackMutablePointerParameter()
471 void PackConstPointerParameter(ParamBuffer &params, ParamType paramType, const Token &token) in PackConstPointerParameter()
670 void PackParameter<uint32_t>(ParamBuffer &params, const Token &token, const TraceStringMap &strings) in PackParameter()
683 void PackParameter<int32_t>(ParamBuffer &params, const Token &token, const TraceStringMap &strings) in PackParameter()
700 void PackParameter<void *>(ParamBuffer &params, const Token &token, const TraceStringMap &strings) in PackParameter()
[all …]
/external/kotlinx.serialization/formats/json-tests/jvmTest/src/kotlinx/serialization/features/
DSerializerByTypeTest.kt69 val token = myArr::class.java in testArray() constant
76 val token = object : ParameterizedType { in testList() constant
87 val token = object : ParameterizedType { in testListAsCollection() constant
99 val token = typeTokenOf<Array<String>>() in testReifiedArrayResolving() constant
106 val token = IntArray::class.java in testPrimitiveArrayResolving() constant
115 val token = typeTokenOf<List<String>>() in testReifiedListResolving() constant
122 val token = typeTokenOf<Set<String>>() in testReifiedSetResolving() constant
129 val token = typeTokenOf<Map<String, Data>>() in testReifiedMapResolving() constant
136 val token = typeTokenOf<List<List<List<Int>>>>() in testNestedListResolving() constant
143 val token = typeTokenOf<Array<Array<Array<Int>>>>() in testNestedArrayResolving() constant
[all …]
/external/libcxx/test/std/numerics/rand/rand.device/
Dctor.pass.cpp40 bool is_valid_random_device(const std::string &token) { in is_valid_random_device()
49 void check_random_device_valid(const std::string &token) { in check_random_device_valid()
53 void check_random_device_invalid(const std::string &token) { in check_random_device_invalid()
71 std::string token = "wrong file"; in main() local
75 std::string token = "/dev/urandom"; in main() local
82 std::string token = "/dev/random"; in main() local
/external/owasp/sanitizer/src/main/org/owasp/html/
DCssGrammar.java96 String token = it.token(); in parsePropertyValue() local
154 static String cssContent(String token) { in cssContent()
207 void quantity(String token); in quantity()
208 void identifier(String token); in identifier()
209 void hash(String token); in hash()
210 void quotedString(String token); in quotedString()
211 void url(String token); in url()
212 void punctuation(String token); in punctuation()
213 void startFunction(String token); in startFunction()
214 void endFunction(String token); in endFunction()
/external/angle/src/compiler/preprocessor/
DDirectiveParser.cpp45 DirectiveType getDirective(const pp::Token *token) in getDirective()
111 bool isEOD(const pp::Token *token) in isEOD()
116 void skipUntilEOD(pp::Lexer *lexer, pp::Token *token) in skipUntilEOD()
163 void DirectiveParser::lex(Token *token) in lex()
201 void DirectiveParser::parseDirective(Token *token) in parseDirective()
287 void DirectiveParser::parseDefine(Token *token) in parseDefine()
381 void DirectiveParser::parseUndef(Token *token) in parseUndef()
421 void DirectiveParser::parseIf(Token *token) in parseIf()
427 void DirectiveParser::parseIfdef(Token *token) in parseIfdef()
433 void DirectiveParser::parseIfndef(Token *token) in parseIfndef()
[all …]
/external/rust/android-crates-io/crates/tokio-util/tests/
Dsync_cancellation_token.rs14 let token = CancellationToken::new(); in cancel_token() localVariable
46 let token = CancellationToken::new(); in cancel_token_owned() localVariable
78 let token = CancellationToken::new(); in cancel_token_owned_drop_test() localVariable
96 let token = CancellationToken::new(); in cancel_child_token_through_parent() localVariable
134 let token = CancellationToken::new(); in cancel_grandchild_token_through_parent_if_child_was_dropped() localVariable
174 let token = CancellationToken::new(); in cancel_child_token_without_parent() localVariable
239 let token = CancellationToken::new(); in create_child_token_after_parent_was_cancelled() localVariable
275 let token = CancellationToken::new(); in drop_multiple_child_tokens() localVariable
303 let token = parent_token.child_token(); in cancel_only_all_descendants() localVariable
427 let token = CancellationToken::new(); in drop_parent_before_child_tokens() localVariable
[all …]
/external/deqp-deps/amber/src/amberscript/
Dparser.cc209 for (auto token = tokenizer->NextToken();; token = tokenizer->NextToken()) { in ParseBufferData() local
290 for (auto token = tokenizer_->NextToken(); !token->IsEOS(); in Parse() local
467 auto token = tokenizer_->NextToken(); in ValidateEndOfStatement() local
475 auto token = tokenizer_->NextToken(); in ParseShaderBlock() local
598 auto token = tokenizer_->NextToken(); in ParsePipelineBlock() local
624 std::unique_ptr<Token> token; in ParsePipelineBody() local
698 auto token = tokenizer_->NextToken(); in ParsePipelineAttach() local
780 auto token = tokenizer_->NextToken(); in ParseShaderSpecialization() local
829 auto token = tokenizer_->NextToken(); in ParsePipelineShaderOptimizations() local
865 auto token = tokenizer_->NextToken(); in ParsePipelineShaderCompileOptions() local
[all …]
/external/aws-sdk-java-v2/core/auth/src/test/java/software/amazon/awssdk/auth/token/
DTestBearerToken.java24 private String token; field in TestBearerToken
28 public String token() { in token() method in TestBearerToken
37 private TestBearerToken(String token, Instant expirationTime) { in TestBearerToken()
42 public static TestBearerToken create(String token, Instant expirationTime){ in create()
47 public static TestBearerToken create(String token){ in create()
/external/moshi/moshi/src/test/java/com/squareup/moshi/
DFlattenTest.java48 int token = writer.beginFlatten(); in flattenExample() local
65 int token = writer.beginFlatten(); in flattenObject() local
88 int token = writer.beginFlatten(); in flattenArray() local
140 int token = writer.beginFlatten(); in flattenMultipleNested() local
166 int token = writer.beginFlatten(); in flattenIsOnlyOneLevelDeep() local
193 int token = writer.beginFlatten(); in flattenOnlySomeChildren() local
299 int token = writer.beginFlatten(); in flattenDoesNotImpactOtherTypesInObjects() local
325 int token = writer.beginFlatten(); in flattenDoesNotImpactOtherTypesInArrays() local

12345678910>>...77