/external/angle/scripts/ |
D | gen_angle_gn_info_json.py | 77 target_desc = get_json_description(gn_out, target) 78 if (target in target_desc and target not in json_descriptions): 79 json_descriptions[target] = target_desc[target] 80 load_json_deps(target_desc, gn_out, target, json_descriptions)
|
/external/python/cpython2/Lib/distutils/ |
D | emxccompiler.py | 92 target_desc, argument 117 (target_desc != self.EXECUTABLE)): 162 target_desc,
|
D | cygwinccompiler.py | 169 target_desc, argument 194 (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")): 248 target_desc,
|
D | msvc9compiler.py | 579 target_desc, argument 611 if target_desc == CCompiler.EXECUTABLE: 661 mfinfo = self.manifest_get_embed_info(target_desc, ld_args) 685 def manifest_get_embed_info(self, target_desc, ld_args): argument 697 if target_desc == CCompiler.EXECUTABLE:
|
D | unixccompiler.py | 152 def link(self, target_desc, objects, argument 179 if target_desc == CCompiler.EXECUTABLE:
|
D | bcppcompiler.py | 172 target_desc, argument 203 if target_desc == CCompiler.EXECUTABLE:
|
D | msvccompiler.py | 465 target_desc, argument 496 if target_desc == CCompiler.EXECUTABLE:
|
D | ccompiler.py | 617 def link(self, target_desc, objects, output_filename, output_dir=None, argument
|
/external/python/cpython3/Lib/distutils/ |
D | cygwinccompiler.py | 174 def link(self, target_desc, objects, output_filename, output_dir=None, argument 190 (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")): 243 UnixCCompiler.link(self, target_desc, objects, output_filename,
|
D | msvc9compiler.py | 567 target_desc, argument 599 if target_desc == CCompiler.EXECUTABLE: 649 mfinfo = self.manifest_get_embed_info(target_desc, ld_args) 673 def manifest_get_embed_info(self, target_desc, ld_args): argument 685 if target_desc == CCompiler.EXECUTABLE:
|
D | unixccompiler.py | 148 def link(self, target_desc, objects, argument 176 if target_desc == CCompiler.EXECUTABLE:
|
D | bcppcompiler.py | 172 target_desc, argument 203 if target_desc == CCompiler.EXECUTABLE:
|
D | _msvccompiler.py | 472 target_desc, argument 504 ldflags = self._ldflags[target_desc, debug]
|
D | msvccompiler.py | 454 target_desc, argument 486 if target_desc == CCompiler.EXECUTABLE:
|
D | ccompiler.py | 618 target_desc, argument
|
/external/v8/src/objects/ |
D | objects.cc | 1190 PropertyDescriptor target_desc; in CheckGetSetTrapResult() local 1192 JSReceiver::GetOwnPropertyDescriptor(isolate, target, name, &target_desc); in CheckGetSetTrapResult() 1200 bool inconsistent = PropertyDescriptor::IsDataDescriptor(&target_desc) && in CheckGetSetTrapResult() 1201 !target_desc.configurable() && in CheckGetSetTrapResult() 1202 !target_desc.writable() && in CheckGetSetTrapResult() 1203 !trap_result->SameValue(*target_desc.value()); in CheckGetSetTrapResult() 1209 target_desc.value(), trap_result), in CheckGetSetTrapResult() 1221 inconsistent = PropertyDescriptor::IsAccessorDescriptor(&target_desc) && in CheckGetSetTrapResult() 1222 !target_desc.configurable() && in CheckGetSetTrapResult() 1223 target_desc.get()->IsUndefined(isolate) && in CheckGetSetTrapResult() [all …]
|
/external/python/cpython2/Doc/distutils/ |
D | apiref.rst | 626 ….. method:: CCompiler.link(target_desc, objects, output_filename[, output_dir=None, libraries=None…
|
/external/python/cpython3/Doc/distutils/ |
D | apiref.rst | 651 ….. method:: CCompiler.link(target_desc, objects, output_filename[, output_dir=None, libraries=None…
|