/external/perfetto/tools/ |
D | gen_build | 497 target_desc = self.desc[gn_target_name] 506 for src in target_desc.get('outputs', []) 514 for src in target_desc.get('inputs', []) 521 target_desc = self.desc[gn_target_name] 522 args = target_desc['args'] 538 for src in target_desc.get('sources', []) 596 target_desc = self.desc[gn_target_name] 597 if target_desc['type'] == 'action': 598 args = target_desc['args'] 604 elif target_desc['type'] == 'executable': [all …]
|
D | gen_android_bp | 521 target_desc = desc[gn_target_name] 536 for src in target_desc.get('outputs', []) 540 for src in target_desc.get('inputs', [])
|
/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 | 458 target_desc, argument 490 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/ |
D | objects.cc | 1131 PropertyDescriptor target_desc; in CheckGetSetTrapResult() local 1133 JSReceiver::GetOwnPropertyDescriptor(isolate, target, name, &target_desc); in CheckGetSetTrapResult() 1141 bool inconsistent = PropertyDescriptor::IsDataDescriptor(&target_desc) && in CheckGetSetTrapResult() 1142 !target_desc.configurable() && in CheckGetSetTrapResult() 1143 !target_desc.writable() && in CheckGetSetTrapResult() 1144 !trap_result->SameValue(*target_desc.value()); in CheckGetSetTrapResult() 1150 target_desc.value(), trap_result), in CheckGetSetTrapResult() 1162 inconsistent = PropertyDescriptor::IsAccessorDescriptor(&target_desc) && in CheckGetSetTrapResult() 1163 !target_desc.configurable() && in CheckGetSetTrapResult() 1164 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 | 636 ….. method:: CCompiler.link(target_desc, objects, output_filename[, output_dir=None, libraries=None…
|