OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:usage_text
(Results
1 - 7
of
7
) sorted by null
/external/tensorflow/tensorflow/core/util/
command_line_flags.h
65
Flag(const char* name, int32* dst, const string&
usage_text
);
66
Flag(const char* name, int64* dst, const string&
usage_text
);
67
Flag(const char* name, bool* dst, const string&
usage_text
);
68
Flag(const char* name, string* dst, const string&
usage_text
);
69
Flag(const char* name, float* dst, const string&
usage_text
);
78
int32 default_value_for_display, const string&
usage_text
);
80
int64 default_value_for_display, const string&
usage_text
);
82
float default_value_for_display, const string&
usage_text
);
84
bool default_value_for_display, const string&
usage_text
);
86
string default_value_for_display, const string&
usage_text
);
[
all
...]
command_line_flags.cc
140
Flag::Flag(const char* name, tensorflow::int32* dst, const string&
usage_text
)
148
usage_text_(
usage_text
) {}
150
Flag::Flag(const char* name, tensorflow::int64* dst, const string&
usage_text
)
158
usage_text_(
usage_text
) {}
160
Flag::Flag(const char* name, float* dst, const string&
usage_text
)
168
usage_text_(
usage_text
) {}
170
Flag::Flag(const char* name, bool* dst, const string&
usage_text
)
178
usage_text_(
usage_text
) {}
180
Flag::Flag(const char* name, string* dst, const string&
usage_text
)
188
usage_text_(
usage_text
) {}
286
string
usage_text
;
local
[
all
...]
/external/tensorflow/tensorflow/lite/tools/benchmark/
command_line_flags.h
73
int32_t default_value, const std::string&
usage_text
);
75
int64_t default_value, const std::string&
usage_text
);
77
float default_value, const std::string&
usage_text
);
79
bool default_value, const std::string&
usage_text
);
81
const std::string& default_value, const std::string&
usage_text
);
116
//
usage_text
strings in flag_list[].
command_line_flags.cc
73
int32_t default_value, const std::string&
usage_text
)
80
usage_text_(
usage_text
) {}
83
int64_t default_value, const std::string&
usage_text
)
90
usage_text_(
usage_text
) {}
93
float default_value, const std::string&
usage_text
)
100
usage_text_(
usage_text
) {}
103
bool default_value, const std::string&
usage_text
)
110
usage_text_(
usage_text
) {}
114
const std::string& default_value, const std::string&
usage_text
)
122
usage_text_(
usage_text
) {}
184
std::ostringstream
usage_text
;
local
[
all
...]
/external/selinux/python/sepolicy/
sepolicy.py
223
def generate_custom_usage(
usage_text
, usage_dict):
229
usage_text
+= "%s %s |" % (k, (" ".join(usage_dict[k])))
230
usage_text
=
usage_text
[:-1] + "]"
231
usage_text
= _(
usage_text
)
233
return
usage_text
/external/chromium-trace/catapult/devil/devil/utils/
markdown.py
87
usage_text
= super(MarkdownHelpFormatter, self)._format_usage(
89
return md_code(
usage_text
, language=None)
/external/selinux/python/semanage/
semanage
148
def generate_custom_usage(
usage_text
, usage_dict):
155
usage_text
+= "%s %s |" % (k, (" ".join(usage_dict[k])))
156
usage_text
=
usage_text
[:-1] + "]"
157
usage_text
= _(
usage_text
)
159
return
usage_text
[
all
...]
Completed in 769 milliseconds