OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:type_match
(Results
1 - 2
of
2
) sorted by null
/external/chromium/build/mac/
strip_save_dsym
57
type_match
= re.match("^%s (.*)$" % macho_types_re, type_line)
58
if
type_match
:
59
archs.append(
type_match
.group(1))
60
return [
type_match
.group(1)]
62
type_match
= re.match("^Mach-O universal binary with (.*) architectures$",
64
if
type_match
:
65
for i in range(0, int(
type_match
.group(1))):
/external/chromium_org/build/mac/
strip_save_dsym
57
type_match
= re.match("^%s (.*)$" % macho_types_re, type_line)
58
if
type_match
:
59
archs.append(
type_match
.group(1))
60
return [
type_match
.group(1)]
62
type_match
= re.match("^Mach-O universal binary with (.*) architectures$",
64
if
type_match
:
65
for i in range(0, int(
type_match
.group(1))):
Completed in 284 milliseconds