Home
last modified time | relevance | path

Searched refs:variable_name (Results 1 - 25 of 31) sorted by relevance

12

/third_party/gn/src/base/
H A Denvironment.cc29 bool GetVar(std::string_view variable_name, std::string* result) override {
30 if (GetVarImpl(variable_name, result))
37 char first_char = variable_name[0];
40 alternate_case_var = ToUpperASCII(variable_name);
42 alternate_case_var = ToLowerASCII(variable_name);
48 bool SetVar(std::string_view variable_name,
50 return SetVarImpl(variable_name, new_value);
53 bool UnSetVar(std::string_view variable_name) override {
54 return UnSetVarImpl(variable_name);
58 bool GetVarImpl(std::string_view variable_name, st argument
84 SetVarImpl(std::string_view variable_name, const std::string& new_value) SetVarImpl() argument
97 UnSetVarImpl(std::string_view variable_name) UnSetVarImpl() argument
145 HasVar(std::string_view variable_name) HasVar() argument
[all...]
H A Denvironment.h34 virtual bool GetVar(std::string_view variable_name, std::string* result) = 0;
36 // Syntactic sugar for GetVar(variable_name, nullptr);
37 virtual bool HasVar(std::string_view variable_name);
40 virtual bool SetVar(std::string_view variable_name,
44 virtual bool UnSetVar(std::string_view variable_name) = 0;
/third_party/node/deps/v8/src/debug/
H A Ddebug-scopes.h80 bool SetVariableValue(Handle<String> variable_name, Handle<Object> new_value);
149 bool SetLocalVariableValue(Handle<String> variable_name,
151 bool SetContextVariableValue(Handle<String> variable_name,
153 bool SetContextExtensionValue(Handle<String> variable_name,
155 bool SetScriptVariableValue(Handle<String> variable_name,
157 bool SetModuleVariableValue(Handle<String> variable_name,
H A Ddebug-scopes.cc974 bool ScopeIterator::SetLocalVariableValue(Handle<String> variable_name, in SetLocalVariableValue() argument
979 if (String::Equals(isolate_, var->name(), variable_name)) { in SetLocalVariableValue()
986 *variable_name == ReadOnlyRoots(isolate_).arguments_string()); in SetLocalVariableValue()
1049 bool ScopeIterator::SetContextExtensionValue(Handle<String> variable_name, in SetContextExtensionValue() argument
1055 LookupIterator it(isolate_, ext, variable_name, LookupIterator::OWN); in SetContextExtensionValue()
1064 bool ScopeIterator::SetContextVariableValue(Handle<String> variable_name, in SetContextVariableValue() argument
1066 int slot_index = context_->scope_info().ContextSlotIndex(variable_name); in SetContextVariableValue()
1072 bool ScopeIterator::SetModuleVariableValue(Handle<String> variable_name, in SetModuleVariableValue() argument
1080 *variable_name, &mode, &init_flag, &maybe_assigned_flag); in SetModuleVariableValue()
1093 bool ScopeIterator::SetScriptVariableValue(Handle<String> variable_name, in SetScriptVariableValue() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dgen_vk_internal_shaders.py188 constexpr uint8_t {variable_name}[] = {{
327 def write_compressed_spirv_blob_as_c_array(output_path, variable_name, compressed_blob,
334 variable_name=variable_name,
346 def __init__(self, shader_file, preprocessor_args, output_path, variable_name):
352 self.variable_name = variable_name
373 write_compressed_spirv_blob_as_c_array(self.output_path, self.variable_name,
383 compile_args, preprocessor_args, variable_name):
394 self.variable_name
[all...]
/third_party/skia/gn/
H A Dgn_to_cmake.py60 def SetVariable(out, variable_name, value):
63 out.write(CMakeStringEscape(variable_name))
69 def SetVariableList(out, variable_name, values):
72 return SetVariable(out, variable_name, "")
74 return SetVariable(out, variable_name, values[0])
76 out.write(CMakeStringEscape(variable_name))
106 def WriteVariable(output, variable_name, prepend=None):
110 output.write(variable_name)
/third_party/alsa-utils/topology/
H A Dpre-processor.c438 const char *variable_name; in pre_process_include_conf() local
442 if (snd_config_get_id(variable, &variable_name) < 0) in pre_process_include_conf()
451 SNDERR("Invalid value for variable %s\n", variable_name); in pre_process_include_conf()
465 SNDERR("Invalid value for variable %s\n", variable_name); in pre_process_include_conf()
475 SNDERR("Invalid type for variable definition %s\n", variable_name); in pre_process_include_conf()
482 SNDERR("failed to create top-level node for include conf %s\n", variable_name); in pre_process_include_conf()
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dcmake.py183 def SetVariable(output, variable_name, value):
186 output.write(variable_name)
192 def SetVariableList(output, variable_name, values):
195 return SetVariable(output, variable_name, "")
197 return SetVariable(output, variable_name, values[0])
199 output.write(variable_name)
205 def UnsetVariable(output, variable_name):
208 output.write(variable_name)
212 def WriteVariable(output, variable_name, prepend=None):
216 output.write(variable_name)
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dcmake.py183 def SetVariable(output, variable_name, value):
186 output.write(variable_name)
192 def SetVariableList(output, variable_name, values):
195 return SetVariable(output, variable_name, "")
197 return SetVariable(output, variable_name, values[0])
199 output.write(variable_name)
205 def UnsetVariable(output, variable_name):
208 output.write(variable_name)
212 def WriteVariable(output, variable_name, prepend=None):
216 output.write(variable_name)
[all...]
/third_party/lwip/src/include/lwip/
H A Darch.h266 * \#define LWIP_DECLARE_MEMORY_ALIGNED(variable_name, size) u8_t variable_name[size] \_\_attribute\_\_((aligned(4)))\n
268 * \#define LWIP_DECLARE_MEMORY_ALIGNED(variable_name, size) u32_t variable_name[(size + sizeof(u32_t) - 1) / sizeof(u32_t)]
271 #define LWIP_DECLARE_MEMORY_ALIGNED(variable_name, size) u8_t variable_name[LWIP_MEM_ALIGN_BUFFER(size)]
/third_party/gn/src/gn/
H A Dc_tool.cc84 const char* variable_name, in ValidateLinkAndDependOutput()
92 "This tool specifies a " + std::string(variable_name) + ".", in ValidateLinkAndDependOutput()
83 ValidateLinkAndDependOutput(const SubstitutionPattern& pattern, const char* variable_name, Err* err) ValidateLinkAndDependOutput() argument
H A Dc_tool.h109 const char* variable_name,
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A Dgen_builtin_symbols.py1429 for variable_name, props in group['variables'].items():
1430 mangled_names.append(variable_name)
1860 def process_single_variable(shader_type, variable_name, props, symbols, variables,
1870 variable_name,
1872 variable_name + get_suffix(props),
1905 raise Exception('Missing precision for variable ' + variable_name)
1948 resources_key = variable_name[3:]
2019 for variable_name, props in group['variables'].items():
2020 process_single_variable(shader_type, variable_name, props, symbols, variables,
2035 process_single_variable(shader_type, variable_name, core_prop
[all...]
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cpp.cpp457 string variable_name = to_name(var.self); in argument_decl() local
458 remap_variable_type_name(type, variable_name, base); in argument_decl()
463 return join(constref ? "const " : "", base, " &", variable_name); in argument_decl()
H A Dmain.cpp598 string variable_name; member
606 string variable_name; member
780 "\t[--remap-variable-type <variable_name> <new_variable_type>]:\n\t\tRemaps a variable type based on name.\n" in print_help_glsl()
1172 if (name == remap.variable_name) in compile_iteration()
1382 rename.variable_name); in compile_iteration()
1385 rename.variable_name); in compile_iteration()
/third_party/icu/icu4c/source/test/testdata/
H A DBUILDRULES.py19 variable_name = "testdata_all_output_files",
/third_party/icu/icu4c/source/python/icutools/databuilder/
H A Drequest_types.py264 self.variable_name = None
281 name = self.variable_name,
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/
H A Drequest_types.py264 self.variable_name = None
281 name = self.variable_name,
/third_party/node/deps/v8/src/runtime/
H A Druntime-debug.cc435 Handle<String> variable_name, in SetScopeVariableValue()
443 return it->SetVariableValue(variable_name, new_value); in SetScopeVariableValue()
458 Handle<String> variable_name = args.at<String>(2); in RUNTIME_FUNCTION() local
461 bool res = SetScopeVariableValue(&it, index, variable_name, new_value); in RUNTIME_FUNCTION()
434 SetScopeVariableValue(ScopeIterator* it, int index, Handle<String> variable_name, Handle<Object> new_value) SetScopeVariableValue() argument
/third_party/node/tools/gyp/pylib/gyp/
H A Dinput.py1284 variable_name = key[:-1]
1285 if variable_name in variables:
1288 if the_dict_key == "variables" and variable_name in the_dict:
1292 value = the_dict[variable_name]
1294 variable_name = key
1296 variables[variable_name] = value
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dinput.py1274 variable_name = key[:-1]
1275 if variable_name in variables:
1278 if the_dict_key == "variables" and variable_name in the_dict:
1282 value = the_dict[variable_name]
1284 variable_name = key
1286 variables[variable_name] = value
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cShadingLanguage420PackTests.hpp399 const glw::GLchar* variable_name);
401 static std::string getBlockVariableReference(VARIABLE_FLAVOUR flavour, const glw::GLchar* variable_name,
405 const glw::GLchar* type_name, const glw::GLchar* variable_name);
411 const glw::GLchar* variable_name);
413 static std::string getVariableReference(VARIABLE_FLAVOUR flavour, const glw::GLchar* variable_name);
/third_party/node/deps/v8/src/parsing/
H A Dpreparser.h1161 const PreParserIdentifier& variable_name, in DeclareFunction()
1166 Variable* var = DeclareVariableName(variable_name.string_, mode, scope(), in DeclareFunction()
1180 const PreParserIdentifier& variable_name, in DeclareClass()
1186 DeclareVariableName(variable_name.string_, VariableMode::kLet, scope(), in DeclareClass()
1160 DeclareFunction( const PreParserIdentifier& variable_name, const PreParserExpression& function, VariableMode mode, VariableKind kind, int beg_pos, int end_pos, ZonePtrList<const AstRawString>* names) DeclareFunction() argument
1179 DeclareClass( const PreParserIdentifier& variable_name, const PreParserExpression& value, ZonePtrList<const AstRawString>* names, int class_token_pos, int end_pos) DeclareClass() argument
H A Dparser.cc1859 Statement* Parser::DeclareFunction(const AstRawString* variable_name, in DeclareFunction() argument
1866 Declare(declaration, variable_name, kind, mode, kCreatedInitialized, scope(), in DeclareFunction()
1873 if (names) names->Add(variable_name, zone()); in DeclareFunction()
1885 Statement* Parser::DeclareClass(const AstRawString* variable_name, in DeclareClass() argument
1890 DeclareBoundVariable(variable_name, VariableMode::kLet, class_token_pos); in DeclareClass()
1892 if (names) names->Add(variable_name, zone()); in DeclareClass()
/third_party/icu/icu4c/source/data/
H A DBUILDRULES.py106 variable_name = "icudata_all_output_files",

Completed in 37 milliseconds

12