/third_party/node/tools/gyp/pylib/gyp/ |
D | MSVSUtil.py | 130 def _GetPdbPath(target_dict, config_name, vars): argument 148 config = target_dict["configurations"][config_name] 157 variables = target_dict.get("variables", {}) 162 pdb_base = target_dict.get("product_name", target_dict["target_name"]) 163 pdb_base = "{}.{}.pdb".format(pdb_base, TARGET_TYPE_EXT[target_dict["type"]]) 185 target_dict = target_dicts[t] 188 if not int(target_dict.get("msvs_large_pdb", 0)): 199 target_dict = target_dicts[t] 200 target_name = target_dict.get("target_name") 203 target_dict, ["configurations", "default_configuration", "toolset"] [all …]
|
D | input.py | 470 for target_dict in build_file_data["targets"]: 471 if "dependencies" not in target_dict: 473 for dependency in target_dict["dependencies"]: 1494 for target, target_dict in targets.items(): 1496 toolset = target_dict["toolset"] 1498 dependencies = target_dict.get(dependency_key, []) 1515 and dependency not in target_dict["dependencies"] 1544 for target, target_dict in targets.items(): 1547 dependencies = target_dict.get(dependency_key, []) 1619 for target_name, target_dict in targets.items(): [all …]
|
D | xcode_ninja.py | 253 for target, target_dict in target_dicts.items(): 255 files = target_dict.get("sources", []) + target_dict.get( 261 target_dict.get("sources_excluded", []) 262 + target_dict.get("mac_bundle_resources_excluded", []) 265 for action in target_dict.get("actions", []):
|
D | xcode_emulation.py | 1911 for target_dict in targets.values(): 1912 for config in target_dict["configurations"].values(): 1921 for target_dict in targets.values(): 1922 toolset = target_dict["toolset"] 1923 configs = target_dict["configurations"]
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | MSVSUtil.py | 130 def _GetPdbPath(target_dict, config_name, vars): argument 148 config = target_dict["configurations"][config_name] 157 variables = target_dict.get("variables", {}) 162 pdb_base = target_dict.get("product_name", target_dict["target_name"]) 163 pdb_base = "{}.{}.pdb".format(pdb_base, TARGET_TYPE_EXT[target_dict["type"]]) 185 target_dict = target_dicts[t] 188 if not int(target_dict.get("msvs_large_pdb", 0)): 199 target_dict = target_dicts[t] 200 target_name = target_dict.get("target_name") 203 target_dict, ["configurations", "default_configuration", "toolset"] [all …]
|
D | input.py | 470 for target_dict in build_file_data["targets"]: 471 if "dependencies" not in target_dict: 473 for dependency in target_dict["dependencies"]: 1487 for target, target_dict in targets.items(): 1489 toolset = target_dict["toolset"] 1491 dependencies = target_dict.get(dependency_key, []) 1508 and dependency not in target_dict["dependencies"] 1537 for target, target_dict in targets.items(): 1540 dependencies = target_dict.get(dependency_key, []) 1612 for target_name, target_dict in targets.items(): [all …]
|
D | xcode_ninja.py | 253 for target, target_dict in target_dicts.items(): 255 files = target_dict.get("sources", []) + target_dict.get( 261 target_dict.get("sources_excluded", []) 262 + target_dict.get("mac_bundle_resources_excluded", []) 265 for action in target_dict.get("actions", []):
|
D | xcode_emulation.py | 1911 for target_dict in targets.values(): 1912 for config in target_dict["configurations"].values(): 1921 for target_dict in targets.values(): 1922 toolset = target_dict["toolset"] 1923 configs = target_dict["configurations"]
|
/third_party/cef/tests/ceftests/ |
D | values_unittest.cc | 899 CefRefPtr<CefDictionaryValue> target_dict = CefDictionaryValue::Create(); in TEST() local 900 EXPECT_TRUE(target_dict->SetValue(key, value)); in TEST() 903 EXPECT_EQ(VTYPE_DOUBLE, target_dict->GetType(key)); in TEST() 904 EXPECT_EQ(double_value, target_dict->GetDouble(key)); in TEST() 907 CefRefPtr<CefValue> value2 = target_dict->GetValue(key); in TEST() 921 EXPECT_TRUE(target_dict->SetInt(key, 5)); in TEST() 922 EXPECT_EQ(VTYPE_INT, target_dict->GetType(key)); in TEST() 923 EXPECT_EQ(5, target_dict->GetInt(key)); in TEST() 1027 CefRefPtr<CefDictionaryValue> target_dict = CefDictionaryValue::Create(); in TEST() local 1028 EXPECT_TRUE(target_dict->SetValue(key, value)); in TEST() [all …]
|
/third_party/node/deps/v8/tools/testrunner/local/ |
D | statusfile.py | 182 def _ParseOutcomeList(rule, outcomes, variables, target_dict): argument 210 if rule in target_dict: 216 if _JoinsPassAndFail(target_dict[rule], result): 217 target_dict[rule] -= set([PASS]) 218 if _JoinsPassAndFail(result, target_dict[rule]): 220 target_dict[rule] |= result 222 target_dict[rule] = result
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
D | analyzer.py | 189 def _ExtractSources(target, target_dict, toplevel_dir): argument 204 if "sources" in target_dict: 205 _AddSources(target_dict["sources"], base_path, base_path_components, results) 208 if "actions" in target_dict: 209 for action in target_dict["actions"]: 211 if "rules" in target_dict: 212 for rule in target_dict["rules"]: 330 def _DoesTargetTypeRequireBuild(target_dict): argument 334 target_dict["type"] != "none" 335 or target_dict.get("actions") [all …]
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
D | analyzer.py | 189 def _ExtractSources(target, target_dict, toplevel_dir): argument 204 if "sources" in target_dict: 205 _AddSources(target_dict["sources"], base_path, base_path_components, results) 208 if "actions" in target_dict: 209 for action in target_dict["actions"]: 211 if "rules" in target_dict: 212 for rule in target_dict["rules"]: 330 def _DoesTargetTypeRequireBuild(target_dict): argument 334 target_dict["type"] != "none" 335 or target_dict.get("actions") [all …]
|
/third_party/python/Lib/ |
D | sysconfig.py | 206 def _extend_dict(target_dict, other_dict): argument 207 target_keys = target_dict.keys() 211 target_dict[key] = value
|