Searched refs:token_value (Results 1 – 7 of 7) sorted by relevance
/third_party/cef/tools/ |
D | gn_args.py | 105 token_value = tokens[1] 106 if token_value.lower() == 'true': 107 token_value = True 108 elif token_value.lower() == 'false': 109 token_value = False 113 token_value = int(token_value) 117 result[tokens[0]] = token_value
|
/third_party/gn/src/gn/ |
D | tokenizer.cc | 109 std::string_view token_value(&input_.data()[token_begin], in Run() local 113 type = GetSpecificOperatorType(token_value); in Run() 115 if (token_value == "if") in Run() 117 else if (token_value == "else") in Run() 119 else if (token_value == "true") in Run() 121 else if (token_value == "false") in Run() 151 tokens_.push_back(Token(location, type, token_value)); in Run()
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | __init__.py | 176 token_value = int(tokens[1]) 178 token_value = tokens[1] 180 result[tokens[0]] = token_value
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | __init__.py | 154 token_value = int(tokens[1]) 156 token_value = tokens[1] 158 result[tokens[0]] = token_value
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | ext.py | 520 for _, token_type, token_value in \ 524 prefix, comment = token_value.split(None, 1)
|
/third_party/skia/third_party/externals/jinja2/ |
D | ext.py | 596 for _, token_type, token_value in reversed( 601 prefix, comment = token_value.split(None, 1)
|
/third_party/jinja2/ |
D | ext.py | 740 for _, token_type, token_value in reversed( 745 prefix, comment = token_value.split(None, 1)
|