Home
last modified time | relevance | path

Searched refs:target_desc (Results 1 – 19 of 19) sorted by relevance

/external/perfetto/tools/
Dgen_build497 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 …]
Dgen_android_bp521 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/
Demxccompiler.py92 target_desc, argument
117 (target_desc != self.EXECUTABLE)):
162 target_desc,
Dcygwinccompiler.py169 target_desc, argument
194 (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")):
248 target_desc,
Dmsvc9compiler.py579 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:
Dunixccompiler.py152 def link(self, target_desc, objects, argument
179 if target_desc == CCompiler.EXECUTABLE:
Dbcppcompiler.py172 target_desc, argument
203 if target_desc == CCompiler.EXECUTABLE:
Dmsvccompiler.py465 target_desc, argument
496 if target_desc == CCompiler.EXECUTABLE:
Dccompiler.py617 def link(self, target_desc, objects, output_filename, output_dir=None, argument
/external/python/cpython3/Lib/distutils/
Dcygwinccompiler.py174 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,
Dmsvc9compiler.py567 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:
Dunixccompiler.py148 def link(self, target_desc, objects, argument
176 if target_desc == CCompiler.EXECUTABLE:
Dbcppcompiler.py172 target_desc, argument
203 if target_desc == CCompiler.EXECUTABLE:
D_msvccompiler.py458 target_desc, argument
490 ldflags = self._ldflags[target_desc, debug]
Dmsvccompiler.py454 target_desc, argument
486 if target_desc == CCompiler.EXECUTABLE:
Dccompiler.py618 target_desc, argument
/external/v8/src/
Dobjects.cc1131 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/
Dapiref.rst626 ….. method:: CCompiler.link(target_desc, objects, output_filename[, output_dir=None, libraries=None…
/external/python/cpython3/Doc/distutils/
Dapiref.rst636 ….. method:: CCompiler.link(target_desc, objects, output_filename[, output_dir=None, libraries=None…