HomeSort by relevance Sort by last modified time
    Searched defs:token (Results 1 - 25 of 802) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebUserGestureTokenTest.cpp 47 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);
  /cts/tools/dasm/src/java_cup/runtime/
token.java 13 public class token extends symbol { class in inherits:symbol
16 public token(int term_num) method in class:token
  /external/chromium_org/third_party/angle_dx11/tests/preprocessor_tests/
token_test.cpp 9 #include "Token.h"
13 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
40 pp::Token token; local
68 pp::Token token; local
78 pp::Token token; local
81 out1 << token; local
87 out2 << token; local
    [all...]
PreprocessorTest.cpp 8 #include "Token.h"
15 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);
if_test.cpp 8 #include "Token.h"
619 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
675 pp::Token token; local
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...]
comment_test.cpp 8 #include "Token.h"
21 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)
67 pp::Token token; local
    [all...]
define_test.cpp 8 #include "Token.h"
855 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);
878 pp::Token token; local
889 pp::Token token; local
    [all...]
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_token_store.h 26 void SetToken(const std::string& token);
27 std::string token() const { function in class:cloud_print::CloudPrintTokenStore
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTree.h 32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTree.h 32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTree.h 32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTree.h 32 __strong ANTLRCommonToken *token; variable
79 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken:) ANTLRCommonToken *token;
86 @property (retain) ANTLRCommonToken *token; variable
  /external/chromium_org/chrome/third_party/mozilla_security_manager/
nsNSSCertificate.cpp 71 std::string token; local
73 token = PK11_GetTokenName(cert->slot);
75 return token;
  /external/chromium_org/sandbox/win/src/
integrity_level_test.cc 19 ATL::CAccessToken token; local
20 if (!token.GetEffectiveToken(TOKEN_READ))
25 if (!::GetTokenInformation(token.GetHandle(), TokenIntegrityLevel,
  /external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.h 20 int16_t token; member in struct:__anon23092
27 uint8_t token; member in struct:__anon23093
40 /* TODO: The Token field should be broken out into a separate char array to
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 7 type token = type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 7 type token = type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 7 type token = type
  /frameworks/base/core/java/android/content/pm/
KeySet.java 24 private Binder token; field in class:KeySet
27 public KeySet(Binder token) {
28 this.token = token;
32 return token;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 13 from ..fixer_util import token namespace
36 if arg.type == token.NAME and arg.value in names_inserted:
37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
42 if arg.type == token.NAME:
44 if new_args and new_args[-1].type == token.COMMA:
fix_itertools_imports.py 5 from lib2to3.fixer_util import BlankLine, syms, token namespace
21 if child.type == token.NAME:
24 elif child.type == token.STAR:
43 if remove_comma and child.type == token.COMMA:
48 while children and children[-1].type == token.COMMA:
fix_ne.py 8 from ..pgen2 import token namespace
15 _accept_type = token.NOTEQUAL
22 new = pytree.Leaf(token.NOTEQUAL, u"!=", prefix=node.prefix)
fix_numliterals.py 7 from ..pgen2 import token namespace
15 _accept_type = token.NUMBER
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 13 from ..fixer_util import token namespace
36 if arg.type == token.NAME and arg.value in names_inserted:
37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
42 if arg.type == token.NAME:
44 if new_args and new_args[-1].type == token.COMMA:
fix_itertools_imports.py 5 from lib2to3.fixer_util import BlankLine, syms, token namespace
21 if child.type == token.NAME:
24 elif child.type == token.STAR:
43 if remove_comma and child.type == token.COMMA:
48 while children and children[-1].type == token.COMMA:

Completed in 1950 milliseconds

1 2 3 4 5 6 7 8 91011>>