HomeSort by relevance Sort by last modified time
    Searched refs:token_name (Results 1 - 22 of 22) sorted by null

  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-scheme.rb 38 @ts.token_name(5).should == 'B'
39 @ts.token_name(6).should == "'+'"
40 @ts.token_name(-1).should == '<EOF>'
41 @ts.token_name(7).should == '<UNKNOWN: 7>'
  /external/chromium_org/google_apis/
google_api_keys.py 22 def _GetTokenFromOfficialFile(token_name):
29 line_regexp = '^#define\s*%s\s*"([^"]+)"' % token_name
57 def _GetToken(token_name):
59 if token_name in os.environ:
60 return os.environ[token_name]
61 token = _GetTokenFromOfficialFile(token_name)
  /external/chromium_org/chrome/browser/extensions/token_cache/
token_cache_service.cc 23 void TokenCacheService::StoreToken(const std::string& token_name,
44 token_cache_[token_name] = token_data;
49 std::string TokenCacheService::RetrieveToken(const std::string& token_name) {
51 token_cache_.find(token_name);
token_cache_service_unittest.cc 26 bool HasMatch(const std::string& token_name) {
27 return cache_.RetrieveToken(token_name) != std::string();
30 void InsertExpiredToken(const std::string& token_name,
32 EXPECT_TRUE(!HasMatch(token_name));
43 cache_.token_cache_[token_name] = token_data;
token_cache_service.h 34 void StoreToken(const std::string& token_name, const std::string& token_value,
39 std::string RetrieveToken(const std::string& token_name);
  /external/chromium_org/components/signin/core/browser/
signin_internals_util.h 73 virtual void NotifyTokenReceivedSuccess(const std::string& token_name,
76 virtual void NotifyTokenReceivedFailure(const std::string& token_name,
78 virtual void NotifyClearStoredToken(const std::string& token_name) {}};
signin_internals_util.cc 51 std::string TokenPrefPath(const std::string& token_name) {
52 return std::string(kTokenPrefPrefix) + token_name;
  /external/bison/src/
reader.h 41 char const *token_name (int type);
parse-gram.y 777 token_name (int type)
parse-gram.c 3242 token_name (int type) function
    [all...]
  /external/chromium_org/chromeos/
tpm_token_loader.h 90 const std::string& token_name,
tpm_token_loader.cc 267 const std::string& token_name,
270 VLOG(1) << "OnPkcs11GetTpmTokenInfo: " << token_name;
277 tpm_token_name_ = token_name;
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BaseRecognizer.pm 177 my $token_name;
179 $token_name = 'EOF';
181 $token_name = $token_names->[$e->get_expecting];
185 . ' expecting ' . $token_name;
187 my $token_name;
189 $token_name = 'EOF';
191 $token_name = $token_names->[$e->get_expecting];
195 . ' expecting ' . $token_name;
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
token.rb 155 token_name( type )
208 def token_name( type ) method in class:ANTLR3.Token
252 def self.token_name( type ) singleton method in class:ANTLR3.CommonToken
468 TokenData.token_name(4) # => 'INT'
469 TokenData.token_name(5) # => "'='"
481 method <tt>token_name(type)</tt>, instances of the token class are now able to
483 <tt>token_name</tt> method to provide the type name as if it were a simple
515 define_method( :token_name ) do |type|
519 ::ANTLR3::CommonToken.token_name( type )
522 module_function :token_name, :token_name
    [all...]
recognizers.rb 436 token_name = token_name( e.expecting )
437 "extraneous input #{ token_error_display( e.unexpected_token ) } expecting #{ token_name }"
439 token_name = token_name( e.expecting )
440 "missing #{ token_name } at #{ token_error_display( e.symbol ) }"
442 token_name = token_name( e.expecting )
443 "mismatched input #{ token_error_display( e.symbol ) } expecting #{ token_name }"
445 token_name = token_name( e.expecting
    [all...]
tree.rb 124 name = token_name( expected_token_type ).to_s
    [all...]
  /external/chromium_org/base/threading/
sequenced_worker_pool.h 265 bool PostNamedSequencedWorkerTask(const std::string& token_name,
sequenced_worker_pool.cc     [all...]
  /external/chromium_org/base/
sequence_checker_unittest.cc 79 const std::string& token_name) {
81 token_name,
  /external/chromium_org/chrome/browser/chromeos/options/
cert_library.cc 227 std::string token_name = local
229 if (token_name != kRootCertificateTokenName)
  /external/chromium_org/net/cert/
x509_util_nss.cc 612 std::string token_name; local
618 token_name.assign(PK11_GetTokenName(slot));
619 token_name.append(":");
621 temp_nickname = token_name + new_name;
628 temp_nickname = token_name + new_name;
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 252 token_name = @tokenizer.text
254 token_name == 'nil' and return @adaptor.create_flat_list
256 text = token_name
264 node_type = @token_scheme[ token_name ] || INVALID_TOKEN_TYPE

Completed in 874 milliseconds