OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DESC_NEWLINE
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/codesighs/
codesighs.c
115
#define
DESC_NEWLINE
"\n\t\t"
117
static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file."
DESC_NEWLINE
"stdin is default."};
118
static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file."
DESC_NEWLINE
"Appends if file exists."
DESC_NEWLINE
"stdout is default."};
121
static Switch gTotalSwitch = {"--totalonly", "-t", 0, NULL, "Output only one number."
DESC_NEWLINE
"The total overall size."
DESC_NEWLINE
"Overrides other output options."};
122
static Switch gMinSize = {"--min-size", "-min", 1, NULL, "Only consider symbols equal to or greater than this size."
DESC_NEWLINE
"The default is 0x00000000."};
123
static Switch gMaxSize = {"--max-size", "-max", 1, NULL, "Only consider symbols equal to or smaller than this size."
DESC_NEWLINE
"The default is 0xFFFFFFFF."};
124
static Switch gMatchScope = {"--match-scope", "-msco", 1, NULL, "Only consider scopes that have a substring match."
DESC_NEWLINE
"Multiple uses allowed to specify a range of scopes,"
DESC_NEWLINE
"though PUBLIC, STATIC, and UNDEF are your only choices."}
[
all
...]
nm2tsv.c
89
#define
DESC_NEWLINE
"\n\t\t"
91
static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file."
DESC_NEWLINE
"stdin is default."};
92
static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file."
DESC_NEWLINE
"Appends if file exists."
DESC_NEWLINE
"stdout is default."};
477
printf(
DESC_NEWLINE
"%s\n\n", gSwitches[loop]->mDescription);
maptsvdifftool.c
94
#define
DESC_NEWLINE
"\n\t\t"
96
static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file."
DESC_NEWLINE
"stdin is default."};
97
static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file."
DESC_NEWLINE
"Appends if file exists."
DESC_NEWLINE
"stdout is default."};
98
static Switch gSummarySwitch = {"--summary", "-s", 0, NULL, "Only output a single line."
DESC_NEWLINE
"The cumulative size changes."
DESC_NEWLINE
"Overrides all other output options."};
99
static Switch gZeroDriftSwitch = {"--zerodrift", "-z", 0, NULL, "Output zero drift data."
DESC_NEWLINE
"Reports symbol changes even when there is no net drift."};
100
static Switch gNegationSwitch = {"--negation", "-n", 0, NULL, "Use negation heuristics."
DESC_NEWLINE
"When symbol sizes are inferred by offset, order changes cause noise."
DESC_NEWLINE
"This helps see through the noise by eliminating equal and opposite drifts."};
[
all
...]
msmap2tsv.c
209
#define
DESC_NEWLINE
"\n\t\t"
211
static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file."
DESC_NEWLINE
"stdin is default."};
212
static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file."
DESC_NEWLINE
"Appends if file exists."
DESC_NEWLINE
"stdout is default."};
214
static Switch gMatchModuleSwitch = {"--match-module", "-mm", 1, NULL, "Specify a valid module name."
DESC_NEWLINE
"Multiple specifications allowed."
DESC_NEWLINE
"If a module name does not match one of the names specified then no output will occur."};
215
static Switch gSymDBSwitch = {"--symdb", "-sdb", 1, NULL, "Specify a symbol tsv db input file."
DESC_NEWLINE
"Such a symdb is produced using the tool msdump2symdb."
DESC_NEWLINE
"This allows better symbol size approximations."
DESC_NEWLINE
"The symdb file must be pre-sorted."};
216
static Switch gBatchModeSwitch = {"--batch", "-b", 0, NULL, "Runs in batch mode."
DESC_NEWLINE
"The input file contains a list of map files." DESC_NEWLINE "Normally the input file is a map file (…)
[
all
...]
msdump2symdb.c
89
#define
DESC_NEWLINE
"\n\t\t"
91
static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file."
DESC_NEWLINE
"stdin is default."};
92
static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file."
DESC_NEWLINE
"Appends if file exists."
DESC_NEWLINE
"stdout is default."};
[
all
...]
Completed in 382 milliseconds