/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | export_targets.py | 134 def flattened_target(target_name: str, descs: dict, stop_at_lib: bool =True) -> dict: 135 flattened = dict(descs[target_name]) 148 assert not deps, (target_name, dep['deps']) 165 dag_traverse(descs[target_name]['deps'], pre) 266 def has_all_includes(target_name: str, descs: dict) -> bool: 268 if target_name.startswith(ignored_directory): 271 flat = flattened_target(target_name, descs, stop_at_lib=False) 276 desc = descs[target_name] 301 print('Warning in {}: {}: Invalid include: {}'.format(target_name, cur_file, include), file=sys.stderr) 313 def fn(target_name) [all...] |
H A D | gen_angle_gn_info_json.py | 32 def get_json_description(gn_out, target_name): 34 text_desc = subprocess.check_output(['gn', 'desc', '--format=json', gn_out, target_name]) 43 ['gn', 'desc', '--format=json', gn_out, target_name]), text_desc)) 48 def load_json_deps(desc, gn_out, target_name, all_desc, indent=" "): 52 desc: json description for target_name that includes dependencies 54 target_name: name of target in desc to lookup deps 58 target = desc[target_name]
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | analyzer.py | 319 def _GetOrCreateTargetByName(targets, target_name): 320 """Creates or returns the Target at targets[target_name]. If there is no 321 Target for |target_name| one is created. Returns a tuple of whether a new 323 if target_name in targets: 324 return False, targets[target_name] 325 target = Target(target_name) 326 targets[target_name] = target 369 target_name = targets_to_visit.pop() 370 created_target, target = _GetOrCreateTargetByName(name_to_target, target_name) 377 target.requires_build = _DoesTargetTypeRequireBuild(target_dicts[target_name]) [all...] |
H A D | eclipse.py | 130 for target_name in target_list: 131 target = target_dicts[target_name] 159 base_dir = os.path.dirname(target_name) 214 for target_name in target_list: 215 target = target_dicts[target_name] 411 for target_name in target_list: 412 target = target_dicts[target_name] 419 yield os.path.join(os.path.dirname(target_name), input_) 424 for target_name in target_list: 425 target = target_dicts[target_name] [all...] |
H A D | xcode.py | 239 target_name = target["target_name"] 242 self.gyp_path, target_name, toolset 257 if target_name.lower() == "all": 268 "name": "Run " + target_name, 402 tgt_name = bf_tgt["target_name"] 699 [build_file, target_name, toolset] = gyp.common.ParseQualifiedTarget( 745 "name": target_name, 761 "(target %s)" % target_name 767 "(target %s)" % target_name [all...] |
H A D | cmake.py | 170 def SetTargetProperty(output, target_name, property_name, values, sep=""): 173 output.write(target_name) 247 def WriteActions(target_name, actions, extra_sources, extra_deps, path_to_gyp, output): 251 target_name: the name of the CMake target being generated. 260 action_target_name = f"{target_name}__{action_name}" 336 def WriteRules(target_name, rules, extra_sources, extra_deps, path_to_gyp, output): 340 target_name: the name of the CMake target being generated. 348 rule_name = StringToCMakeTargetName(target_name + "__" + rule["rule_name"]) 454 def WriteCopies(target_name, copies, extra_deps, path_to_gyp, output): 458 target_name [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | analyzer.py | 319 def _GetOrCreateTargetByName(targets, target_name): 320 """Creates or returns the Target at targets[target_name]. If there is no 321 Target for |target_name| one is created. Returns a tuple of whether a new 323 if target_name in targets: 324 return False, targets[target_name] 325 target = Target(target_name) 326 targets[target_name] = target 369 target_name = targets_to_visit.pop() 370 created_target, target = _GetOrCreateTargetByName(name_to_target, target_name) 377 target.requires_build = _DoesTargetTypeRequireBuild(target_dicts[target_name]) [all...] |
H A D | eclipse.py | 130 for target_name in target_list: 131 target = target_dicts[target_name] 159 base_dir = os.path.dirname(target_name) 214 for target_name in target_list: 215 target = target_dicts[target_name] 408 for target_name in target_list: 409 target = target_dicts[target_name] 416 yield os.path.join(os.path.dirname(target_name), input_) 421 for target_name in target_list: 422 target = target_dicts[target_name] [all...] |
H A D | xcode.py | 239 target_name = target["target_name"] 242 self.gyp_path, target_name, toolset 257 if target_name.lower() == "all": 268 "name": "Run " + target_name, 402 tgt_name = bf_tgt["target_name"] 699 [build_file, target_name, toolset] = gyp.common.ParseQualifiedTarget( 745 "name": target_name, 761 "(target %s)" % target_name 767 "(target %s)" % target_name [all...] |
H A D | cmake.py | 170 def SetTargetProperty(output, target_name, property_name, values, sep=""): 173 output.write(target_name) 247 def WriteActions(target_name, actions, extra_sources, extra_deps, path_to_gyp, output): 251 target_name: the name of the CMake target being generated. 260 action_target_name = f"{target_name}__{action_name}" 336 def WriteRules(target_name, rules, extra_sources, extra_deps, path_to_gyp, output): 340 target_name: the name of the CMake target being generated. 348 rule_name = StringToCMakeTargetName(target_name + "__" + rule["rule_name"]) 454 def WriteCopies(target_name, copies, extra_deps, path_to_gyp, output): 458 target_name [all...] |
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | xcode_ninja.py | 70 target_name = old_spec.get("target_name") 71 product_name = old_spec.get("product_name", target_name) 75 ninja_target["target_name"] = target_name 118 "action_name": "Compile and copy %s via ninja" % target_name, 127 target_name, 129 "message": "Compile and copy %s via ninja" % target_name, 147 target_name = spec.get("target_name") [all...] |
H A D | input.py | 104 "target_name", 125 "target_name", 1461 "target_name" property. These fully-qualified names are used as the keys 1469 target_name = gyp.common.QualifiedTarget( 1470 build_file, target["target_name"], target["toolset"] 1472 if target_name in targets: 1473 raise GypError("Duplicate target definitions for " + target_name) 1474 targets[target_name] = target 1587 dependency_target_name = dependency_target_dict["target_name"] 1619 for target_name, target_dic [all...] |
H A D | MSVSUtil.py | 104 new_target_dicts[name]["target_name"] = _ShardName( 105 new_target_dicts[name]["target_name"], i 139 - Use '<(PRODUCT_DIR)/<(target_name).(exe|dll).pdb'. 162 pdb_base = target_dict.get("product_name", target_dict["target_name"]) 200 target_name = target_dict.get("target_name") 213 copy_target_name = target_name + "_" + copy_suffix 219 copy_dict["target_name"] = copy_target_name 229 shim_target_name = target_name + "_" + shim_suffix 232 shim_dict["target_name"] [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | xcode_ninja.py | 70 target_name = old_spec.get("target_name") 71 product_name = old_spec.get("product_name", target_name) 75 ninja_target["target_name"] = target_name 118 "action_name": "Compile and copy %s via ninja" % target_name, 127 target_name, 129 "message": "Compile and copy %s via ninja" % target_name, 147 target_name = spec.get("target_name") [all...] |
H A D | input.py | 104 "target_name", 125 "target_name", 1451 "target_name" property. These fully-qualified names are used as the keys 1459 target_name = gyp.common.QualifiedTarget( 1460 build_file, target["target_name"], target["toolset"] 1462 if target_name in targets: 1463 raise GypError("Duplicate target definitions for " + target_name) 1464 targets[target_name] = target 1577 dependency_target_name = dependency_target_dict["target_name"] 1607 for target_name, target_dic [all...] |
H A D | MSVSUtil.py | 104 new_target_dicts[name]["target_name"] = _ShardName( 105 new_target_dicts[name]["target_name"], i 139 - Use '<(PRODUCT_DIR)/<(target_name).(exe|dll).pdb'. 162 pdb_base = target_dict.get("product_name", target_dict["target_name"]) 200 target_name = target_dict.get("target_name") 213 copy_target_name = target_name + "_" + copy_suffix 219 copy_dict["target_name"] = copy_target_name 229 shim_target_name = target_name + "_" + shim_suffix 232 shim_dict["target_name"] [all...] |
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | sparse-llvm.c | 537 char target_name[64]; in output_op_binary() local 542 pseudo_name(insn->target, target_name); in output_op_binary() 547 target = LLVMBuildAdd(fn->builder, lhs, rhs, target_name); in output_op_binary() 550 target = LLVMBuildSub(fn->builder, lhs, rhs, target_name); in output_op_binary() 553 target = LLVMBuildMul(fn->builder, lhs, rhs, target_name); in output_op_binary() 556 target = LLVMBuildUDiv(fn->builder, lhs, rhs, target_name); in output_op_binary() 560 target = LLVMBuildSDiv(fn->builder, lhs, rhs, target_name); in output_op_binary() 564 target = LLVMBuildURem(fn->builder, lhs, rhs, target_name); in output_op_binary() 568 target = LLVMBuildSRem(fn->builder, lhs, rhs, target_name); in output_op_binary() 572 target = LLVMBuildShl(fn->builder, lhs, rhs, target_name); in output_op_binary() 622 char target_name[64]; output_op_compare() local 845 char target_name[64]; output_op_ptrcast() local 882 char target_name[64]; output_op_cast() local 1053 char target_name[64]; output_insn() local 1067 char target_name[64]; output_insn() local [all...] |
/third_party/gn/src/gn/ |
H A D | function_template.cc | 72 Access the invoking name in your template via the implicit "target_name" 78 name the source_set "target_name" because that's what you want external 80 something like "${target_name}_action" to make it unique. The source set 108 "Need sources in $target_name listing the idl files.") 113 code_gen_target_name = target_name + "_code_gen" 140 source_set(target_name) { 152 # This calls the template code above, defining target_name to be
|
H A D | xcode_writer.cc | 84 std::string GetBuildScript(const std::string& target_name, in GetBuildScript() argument 115 if (!target_name.empty()) { in GetBuildScript() 116 buffer << " '" << target_name << "'"; in GetBuildScript() local 125 std::string target_name = target_label.GetUserVisibleName(false); in GetBuildScript() local 126 base::TrimString(target_name, "/", &target_name); in GetBuildScript() 127 return GetBuildScript(target_name, ninja_executable, build_dir, environment); in GetBuildScript() 170 const std::string& target_name, in FindApplicationTargetByName() 175 if (target->label().name() == target_name) { in FindApplicationTargetByName() 177 *err = Err(node, "host application target \"" + target_name in FindApplicationTargetByName() 168 FindApplicationTargetByName( const ParseNode* node, const std::string& target_name, const std::map<const Target*, PBXNativeTarget*>& targets, Err* err) FindApplicationTargetByName() argument 1024 std::string target_name = target->label().name(); AddBundleTarget() local [all...] |
/third_party/node/tools/gyp/tools/ |
H A D | graphviz.py | 51 build_file, target_name, toolset = ParseTarget(src) 66 build_file, target_name, toolset = ParseTarget(target) 68 f' "{target}" [shape=box, label="{filename}\\n{target_name}"]' 75 build_file, target_name, toolset = ParseTarget(target) 76 print(f' "{target}" [label="{target_name}"]')
|
/third_party/ninja/src/ |
H A D | clean.cc | 201 string target_name = targets[i]; in CleanTargets() local 202 if (target_name.empty()) { in CleanTargets() 208 CanonicalizePath(&target_name, &slash_bits); in CleanTargets() 209 Node* target = state_->LookupNode(target_name); in CleanTargets() 212 printf("Target %s\n", target_name.c_str()); in CleanTargets() 215 Error("unknown target '%s'", target_name.c_str()); in CleanTargets()
|
/third_party/curl/lib/ |
H A D | curl_gssapi.c | 54 gss_name_t target_name, in Curl_gss_init_sec_context() 82 target_name, in Curl_gss_init_sec_context() 50 Curl_gss_init_sec_context( struct Curl_easy *data, OM_uint32 *minor_status, gss_ctx_id_t *context, gss_name_t target_name, gss_OID mech_type, gss_channel_bindings_t input_chan_bindings, gss_buffer_t input_token, gss_buffer_t output_token, const bool mutual_auth, OM_uint32 *ret_flags) Curl_gss_init_sec_context() argument
|
/third_party/mesa3d/src/compiler/isaspec/ |
H A D | encode.py | 207 target_name = param[1] 208 if target_name not in unique_names: 209 yield target_name 210 unique_names.append(target_name)
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-function.cc | 273 Handle<Object> target_name; in CopyNameAndLength() local 274 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate, target_name, in CopyNameAndLength() 278 if (target_name->IsString()) { in CopyNameAndLength() 281 Name::ToFunctionName(isolate, Handle<String>::cast(target_name)), in CopyNameAndLength() 308 Handle<String> target_name = prefix; in GetName() local 312 ASSIGN_RETURN_ON_EXCEPTION(isolate, target_name, in GetName() 313 factory->NewConsString(prefix, target_name), in GetName() 324 return factory->NewConsString(target_name, name); in GetName() 330 return factory->NewConsString(target_name, name); in GetName() 333 return target_name; in GetName() 384 Handle<String> target_name = factory->empty_string(); GetName() local [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cMultiBindTests.cpp | 1395 * @param target_name Name of target 1398 void checkBinding(deqp::Context& context, GLenum pname, GLuint index, const std::string& target_name, in checkBinding() argument 1411 << ", expected: " << expected_value << ". Target: " << target_name in checkBinding() 1431 const GLchar* target_name = s_texture_infos[i].m_name; in checkTextureBinding() local 1447 << ", expected: " << expected_value << ". Target: " << target_name in checkTextureBinding() 1653 const std::string& target_name = glu::getBufferTargetStr(target).toString(); in iterate() local 1724 "BindBuffersBase with invalid <first> + <count>, target: " << target_name); in iterate() 1728 "BindBuffersRange with invalid <first> + <count>, target: " << target_name); in iterate() 1755 CHECK_ERROR(GL_INVALID_OPERATION, "BindBuffersBase with invalid buffer id, target: " << target_name); in iterate() 1758 CHECK_ERROR(GL_INVALID_OPERATION, "BindBuffersRange with invalid buffer id, target: " << target_name); in iterate() 2397 const std::string& target_name = glu::getBufferTargetStr(target).toString(); iterate() local 2563 const std::string& target_name = glu::getBufferTargetStr(target).toString(); iterate() local [all...] |