Searched refs:token_value (Results 1 – 6 of 6) sorted by relevance
/external/autotest/client/common_lib/cros/ |
D | dbus_send.py | 55 token_value = token_stream.pop(0) 59 return int(token_value) 61 return token_value # shlex removed surrounding " chars. 63 return token_value == 'true' 65 return float(token_value) 75 assert token_value == 'entry('
|
/external/libtextclassifier/annotator/duration/ |
D | duration.cc | 246 const std::string& token_value = feature_processor_->StripBoundaryCodepoints( in ParseQuantityToken() local 249 if (half_expressions_.find(token_value) != half_expressions_.end()) { in ParseQuantityToken() 255 if (ParseInt32(token_value.c_str(), &parsed_value)) { in ParseQuantityToken() 266 const std::string& token_value = feature_processor_->StripBoundaryCodepoints( in ParseDurationUnitToken() local 269 const auto it = token_value_to_duration_unit_.find(token_value); in ParseDurationUnitToken() 280 const std::string& token_value = feature_processor_->StripBoundaryCodepoints( in ParseFillerToken() local 283 if (filler_expressions_.find(token_value) == filler_expressions_.end()) { in ParseFillerToken()
|
/external/yapf/yapftests/ |
D | unwrapped_line_test.py | 84 def _MakeFormatTokenLeaf(token_type, token_value): argument 85 return format_token.FormatToken(pytree.Leaf(token_type, token_value)) 90 _MakeFormatTokenLeaf(token_type, token_value) 91 for token_type, token_value in token_type_values
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | gcs_file_system.cc | 781 int64 token_value; in GcsFileSystem() local 782 if (GetEnvVar(kThrottleRate, strings::safe_strto64, &token_value)) { in GcsFileSystem() 785 config.token_rate = token_value; in GcsFileSystem() 787 if (GetEnvVar(kThrottleBucket, strings::safe_strto64, &token_value)) { in GcsFileSystem() 788 config.bucket_size = token_value; in GcsFileSystem() 791 if (GetEnvVar(kTokensPerRequest, strings::safe_strto64, &token_value)) { in GcsFileSystem() 792 config.tokens_per_request = token_value; in GcsFileSystem() 795 if (GetEnvVar(kInitialTokens, strings::safe_strto64, &token_value)) { in GcsFileSystem() 796 config.initial_tokens = token_value; in GcsFileSystem()
|
/external/antlr/runtime/Ruby/lib/antlr3/ |
D | token.rb | 557 for token_name, token_value in token_map 558 define_token( token_name, token_value )
|
/external/libchrome/third_party/jinja2/ |
D | ext.py | 520 for _, token_type, token_value in \ 524 prefix, comment = token_value.split(None, 1)
|