Searched defs:token (Results 1 - 25 of 657) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebUserGestureTokenTest.cpp47 WebUserGestureToken token; local
48 EXPECT_FALSE(token.hasGestures());
51 WebScopedUserGesture indicator(token);
58 token = WebUserGestureIndicator::currentUserGestureToken();
61 EXPECT_TRUE(token.hasGestures());
65 WebScopedUserGesture indicator(token);
71 EXPECT_FALSE(token.hasGestures());
74 WebScopedUserGesture indicator(token);
/external/chromium_org/third_party/angle_dx11/tests/preprocessor_tests/
H A Dtoken_test.cpp13 pp::Token token; local
14 EXPECT_EQ(0, token.type);
15 EXPECT_EQ(0, token.flags);
16 EXPECT_EQ(0, token.location.line);
17 EXPECT_EQ(0, token.location.file);
18 EXPECT_EQ("", token.text);
23 pp::Token token; local
24 token.type = 1;
25 token.flags = 1;
26 token
40 pp::Token token; local
68 pp::Token token; local
78 pp::Token token; local
81 out1 << token; local
87 out2 << token; local
[all...]
H A Dif_test.cpp619 pp::Token token; local
620 mPreprocessor.lex(&token);
633 pp::Token token; local
634 mPreprocessor.lex(&token);
647 pp::Token token; local
648 mPreprocessor.lex(&token);
661 pp::Token token; local
662 mPreprocessor.lex(&token);
675 pp::Token token; local
676 mPreprocessor.lex(&token);
689 pp::Token token; local
708 pp::Token token; local
742 pp::Token token; local
756 pp::Token token; local
770 pp::Token token; local
787 pp::Token token; local
804 pp::Token token; local
818 pp::Token token; local
832 pp::Token token; local
[all...]
H A DPreprocessorTest.cpp15 pp::Token token; local
19 mPreprocessor.lex(&token);
20 for (; line < token.location.line; ++line)
24 stream << token; local
25 } while (token.type != pp::Token::LAST);
H A Dcomment_test.cpp21 pp::Token token; local
22 mPreprocessor.lex(&token);
23 EXPECT_EQ(pp::Token::LAST, token.type);
51 pp::Token token; local
52 mPreprocessor.lex(&token);
53 EXPECT_EQ(pp::Token::IDENTIFIER, token.type);
54 EXPECT_EQ("bar", token.text);
55 EXPECT_TRUE(token.hasLeadingSpace());
67 pp::Token token; local
68 mPreprocessor.lex(&token);
[all...]
H A Ddefine_test.cpp855 pp::Token token; local
856 mPreprocessor.lex(&token);
857 EXPECT_EQ(pp::Token::CONST_INT, token.type);
858 EXPECT_EQ("3", token.text);
867 pp::Token token; local
868 mPreprocessor.lex(&token);
869 EXPECT_EQ(pp::Token::CONST_INT, token.type);
870 EXPECT_EQ("10", token.text);
878 pp::Token token; local
879 mPreprocessor.lex(&token);
889 pp::Token token; local
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebScopedUserGesture.cpp44 void WebScopedUserGesture::initializeWithToken(const WebUserGestureToken& token) argument
46 if (!token.isNull())
47 m_indicator.reset(new WebCore::UserGestureIndicator(token));
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCommonTree.h32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
H A DANTLRRecognitionException.h37 id<ANTLRToken> token; variable
45 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCommonTree.h32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
H A DANTLRRecognitionException.h37 id<ANTLRToken> token; variable
45 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCommonTree.h32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
H A DANTLRRecognitionException.h37 id<ANTLRToken> token; variable
45 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonTree.h32 __strong ANTLRCommonToken *token; variable
79 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken:) ANTLRCommonToken *token;
86 @property (retain) ANTLRCommonToken *token; variable
H A DANTLRRecognitionException.h37 id<ANTLRToken> token; variable
46 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token; variable
/external/chromium_org/chrome/service/cloud_print/
H A Dcloud_print_token_store.h26 void SetToken(const std::string& token);
27 std::string token() const { function in class:cloud_print::CloudPrintTokenStore
H A Dcloud_print_token_store.cc29 void CloudPrintTokenStore::SetToken(const std::string& token) { argument
31 token_ = token;
/external/chromium_org/chrome/third_party/mozilla_security_manager/
H A DnsNSSCertificate.cpp71 std::string token; local
73 token = PK11_GetTokenName(cert->slot);
75 return token;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_tokenize.h20 int16_t token; member in struct:__anon20704
27 uint8_t token; member in struct:__anon20705
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml7 type token = type
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml7 type token = type
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml7 type token = type
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DOutputTest.java36 private final Token token; field in class:OutputTest
38 public OutputTest(Token token) { argument
39 this.token = token;
44 return token.getText();
49 return token.getType();
65 return token.getText();
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognitionException.as40 * exceptions are built with the expected token type.
57 * state can change before the exception is reported so current token index
59 * perhaps print an entire line of input not just a single token, for example.
67 /** What is index of token/char were we looking at when the error occurred? */
72 * For parsers. Even when it's a tree parser, token might be set.
74 public var token:Token; variable
94 * for most recent token with line/col info, but notify getErrorHeader()
106 this.token = TokenStream(input).LT(1);
107 this.line = token.line;
108 this.charPositionInLine = token
[all...]
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dx_privet_token_unittest.cc34 std::string token = base64_val + ":" + issue_time_str; local
36 ASSERT_EQ(token, xtoken.GenerateXTokenWithTime(issue_time));
46 std::string token = xtoken.GenerateXTokenWithTime(gen_time.ToTimeT()); local
47 EXPECT_TRUE(xtoken.CheckValidXToken(token));
49 token = xtoken.GenerateXTokenWithTime(gen_time.ToTimeT() + 1);
50 EXPECT_TRUE(xtoken.CheckValidXToken(token));
52 token = xtoken.GenerateXTokenWithTime(gen_time.ToTimeT() + 55);
53 EXPECT_TRUE(xtoken.CheckValidXToken(token));
55 token = xtoken.GenerateXTokenWithTime(gen_time.ToTimeT() + 60*60 - 5);
56 EXPECT_TRUE(xtoken.CheckValidXToken(token));
71 std::string token = "CEEA1AD9CEEA1AD9CEEA1AD9CEEA1AD"; local
[all...]

Completed in 420 milliseconds

1234567891011>>