/external/chromium_org/build/mac/ |
strip_save_dsym | 11 # .dSYM bundle for debugging, and then call strip to strip the Mach-O file. 12 # Note that the .dSYM file is a "fake" in that it's not a self-contained 13 # .dSYM bundle, it just contains a copy of the original (unstripped) Mach-O 15 # The generated .dSYM bundle is therefore unsuitable for debugging in the 18 # If a .dSYM already exists and has a newer timestamp than the Mach-O file, 20 # that has already been stripped without trashing the .dSYM. 22 # Rationale: the "right" way to generate dSYM bundles, dsymutil, is incredibly 26 # so much about generating a hermetic dSYM bundle, we'll prefer the file copy. 27 # If a real dSYM is ever needed, it's still possible to create one by running 174 # determines the desired path to the .dSYM [all...] |
/external/lldb/test/types/ |
TestIntegerTypes.py | 37 self.build_and_run('char.cpp', set(['char']), dsym=False, qd=True) 54 self.build_and_run('unsigned_char.cpp', set(['unsigned', 'char']), dsym=False, qd=True) 71 self.build_and_run('short.cpp', set(['short']), dsym=False) 88 self.build_and_run('unsigned_short.cpp', set(['unsigned', 'short']), dsym=False) 100 self.build_and_run('int.cpp', set(['int']), dsym=False) 105 self.build_and_run('int.cpp', set(['int']), dsym=False) 122 self.build_and_run('unsigned_int.cpp', set(['unsigned', 'int']), dsym=False) 139 self.build_and_run('long.cpp', set(['long']), dsym=False) 156 self.build_and_run('unsigned_long.cpp', set(['unsigned', 'long']), dsym=False) 176 self.build_and_run('long_long.cpp', set(['long long']), dsym=False [all...] |
TestIntegerTypesExpr.py | 37 self.build_and_run_expr('char.cpp', set(['char']), dsym=False, qd=True) 54 self.build_and_run_expr('unsigned_char.cpp', set(['unsigned', 'char']), dsym=False, qd=True) 71 self.build_and_run_expr('short.cpp', set(['short']), dsym=False) 88 self.build_and_run_expr('unsigned_short.cpp', set(['unsigned', 'short']), dsym=False) 100 self.build_and_run_expr('int.cpp', set(['int']), dsym=False) 105 self.build_and_run_expr('int.cpp', set(['int']), dsym=False) 122 self.build_and_run_expr('unsigned_int.cpp', set(['unsigned', 'int']), dsym=False) 139 self.build_and_run_expr('long.cpp', set(['long']), dsym=False) 156 self.build_and_run_expr('unsigned_long.cpp', set(['unsigned', 'long']), dsym=False) 176 self.build_and_run_expr('long_long.cpp', set(['long long']), dsym=False [all...] |
AbstractBase.py | 47 # dsym -> build for dSYM (defaulted to True) # 48 # True: build dSYM file # 60 def build_and_run(self, source, atoms, dsym=True, bc=False, qd=False): 61 self.build_and_run_with_source_atoms_expr(source, atoms, expr=False, dsym=dsym, bc=bc, qd=qd) 63 def build_and_run_expr(self, source, atoms, dsym=True, bc=False, qd=False): 64 self.build_and_run_with_source_atoms_expr(source, atoms, expr=True, dsym=dsym, bc=bc, qd=qd) 66 def build_and_run_with_source_atoms_expr(self, source, atoms, expr, dsym=True, bc=False, qd=False) [all...] |
TestFloatTypes.py | 37 self.build_and_run('float.cpp', set(['float']), dsym=False) 54 self.build_and_run('double.cpp', set(['double']), dsym=False)
|
TestFloatTypesExpr.py | 40 self.build_and_run_expr('float.cpp', set(['float']), dsym=False) 57 self.build_and_run_expr('double.cpp', set(['double']), dsym=False)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
webkitdirs.pm | 532 $generateDsym = checkForArgumentAndRemoveFromARGV("--dsym"); 538 push @args, "DEBUG_INFORMATION_FORMAT=dwarf-with-dsym" if generateDsym(); [all...] |
/external/lldb/test/ |
lldbtest.py | 343 """Decorate the item as a dsym test.""" 350 self.skipTest("dsym tests") [all...] |