HomeSort by relevance Sort by last modified time
    Searched refs:short_name (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/oprofile/libopt++/
popt_options.h 87 char short_name, char const * help_str,
99 char short_name, char const * help_str);
112 template <> option::option(int &, char const * option_name, char short_name,
115 char short_name, char const * help_str,
118 char const * option_name, char short_name,
popt_options.cpp 35 * @param short_name short form name e.g. -o
41 option_base(char const * option_name, char short_name,
132 option_imp(bool & value, char const * option_name, char short_name,
152 option_imp(int & value, char const * option_name, char short_name,
167 char short_name, char const * help_str,
190 char const * option_name, char short_name,
213 option::option(bool & value, char const * name, char short_name, char const * help)
214 : the_option(new option_imp<void>(value, name, short_name, help))
221 option::option(int & value, char const * name, char short_name,
224 (value, name, short_name, help, arg_help)
    [all...]
  /external/webkit/Tools/QueueStatusServer/model/
queues_unittest.py 45 def _assert_short_name(self, queue_name, short_name):
46 self.assertEquals(Queue(queue_name).short_name(), short_name)
54 def _assert_display_name(self, queue_name, short_name):
55 self.assertEquals(Queue(queue_name).display_name(), short_name)
63 def _assert_name_with_underscores(self, queue_name, short_name):
64 self.assertEquals(Queue(queue_name).name_with_underscores(), short_name)
queues.py 83 def short_name(self): member in class:Queue
85 short_name = self._name.replace("chromium-ews", "Cr-Linux-ews")
86 short_name = short_name.replace("-ews", "")
87 short_name = short_name.replace("-queue", "")
88 return self._caplitalize_after_dash(short_name.capitalize())
  /external/linux-tools-perf/util/
parse-options.h 61 * `short_name`::
98 int short_name; member in struct:option
114 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h), .defval = (b) }
115 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .help = (h) }
116 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h) }
117 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h), .defval = (i) }
118 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), .value = (v), .help = (h), .defval = (p) }
119 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h) }
120 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h) }
121 #define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .value = check_vtype(v, long *), .help = (h)
    [all...]
parse-options.c 11 return error("switch `%c' %s", opt->short_name, reason);
189 if (options->short_name == *p->opt) {
470 if (opts->short_name)
471 pos += fprintf(stderr, "-%c", opts->short_name);
475 if (opts->long_name && opts->short_name)
565 else if (opt->short_name == 'v') {
sort.c 157 dso_name_l = dso_l->short_name;
158 dso_name_r = dso_r->short_name;
168 const char *dso_name = !verbose ? self->ms.map->dso->short_name :
  /external/e2fsprogs/lib/e2p/
pf.c 25 const char *short_name; member in struct:flags_name
69 fputs(fp->short_name, f);
  /external/chromium/chrome/browser/ui/views/location_bar/
selected_keyword_view.cc 62 const string16 short_name = profile_->GetTemplateURLModel()-> local
67 l10n_util::GetStringFUTF16(message_id, short_name)));
69 location_bar_util::CalculateMinString(UTF16ToWide(short_name)));
keyword_hint_view.cc 61 string16 short_name = profile_->GetTemplateURLModel()-> local
69 short_name,
  /external/chromium/chrome/browser/ui/views/
default_search_view.cc 35 std::wstring* short_name,
39 DCHECK(short_name);
50 *short_name = built_in_data->short_name();
53 *short_name = UTF8ToWide(url.host()).c_str();
69 const std::wstring& short_name) {
85 logo_image->SetTooltipText(short_name);
89 views::Label* logo_label = new views::Label(short_name);
94 logo_label->SetTooltipText(short_name);
103 const std::wstring& short_name) {
    [all...]
first_run_search_engine_view.cc 106 logo_image->SetTooltipText(search_engine_->short_name());
110 views::Label* logo_label = new views::Label(search_engine_->short_name());
114 logo_label->SetTooltipText(search_engine_->short_name());
124 SetAccessibleName(WideToUTF16Hack(search_engine_->short_name()));
291 (*it)->SetLabel((*it)->GetSearchEngine()->short_name());
  /external/chromium/chrome/browser/search_engines/
template_url_parser_unittest.cc 88 EXPECT_EQ(ASCIIToUTF16("Dictionary.com"), template_url_.short_name());
102 EXPECT_EQ(ASCIIToUTF16("Search \" MSDN"), template_url_.short_name());
116 EXPECT_EQ(ASCIIToUTF16("Wikipedia (English)"), template_url_.short_name());
167 EXPECT_EQ(ASCIIToUTF16("eBay"), template_url_.short_name());
188 EXPECT_EQ(ASCIIToUTF16("Webster"), template_url_.short_name());
206 EXPECT_EQ(ASCIIToUTF16("Yahoo"), template_url_.short_name());
229 EXPECT_EQ(ASCIIToUTF16("Yahoo"), template_url_.short_name());
template_url_model_unittest.cc 125 const std::string& short_name,
134 template_url->set_short_name(UTF8ToUTF16(short_name));
160 ASSERT_EQ(expected.short_name(), actual.short_name());
179 EXPECT_EQ(expected->short_name(), actual->short_name());
423 ASSERT_EQ(ASCIIToUTF16("a"), loaded_url->short_name());
573 ASSERT_EQ(new_short_name, t_url->short_name());
662 model()->ResetTemplateURL(t_url, t_url->short_name(), t_url->keyword(),
682 model()->ResetTemplateURL(t_url, t_url->short_name(), t_url->keyword()
    [all...]
template_url.h 303 void set_short_name(const string16& short_name) {
304 short_name_ = short_name;
306 string16 short_name() const { return short_name_; } function in class:TemplateURL
308 // An accessor for the short_name, but adjusted so it can be appropriately
util.cc 31 return default_provider->short_name();
113 prepopulated_url->set_short_name(existing_url->short_name());
  /external/libvpx/libvpx/
args.c 49 if (def->short_name
50 && strlen(arg.argv[0]) == strlen(def->short_name) + 1
51 && !strcmp(arg.argv[0] + 1, def->short_name))
122 if (def->short_name && def->long_name)
127 def->short_name, short_val, comma,
130 else if (def->short_name)
132 def->short_name, short_val);
args.h 34 const char *short_name; member in struct:arg_def
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
simplefileflags.py 35 short_name='r') variable
41 short_name='e') variable
46 short_name='x') variable
  /external/chromium/chrome/browser/webdata/
keyword_table_unittest.cc 65 template_url.set_short_name(ASCIIToUTF16("short_name"));
93 EXPECT_EQ(template_url.short_name(), restored_url->short_name());
158 template_url.set_short_name(ASCIIToUTF16("short_name"));
187 EXPECT_EQ(template_url.short_name(), restored_url->short_name());
228 template_url.set_short_name(ASCIIToUTF16("short_name"));
241 EXPECT_EQ(template_url.short_name(), restored_url->short_name());
  /external/webkit/Tools/QueueStatusServer/handlers/
dashboard.py 41 _header_names = [queue.short_name() for queue in _ordered_queues]
statusbubble.py 45 "name": queue.short_name().lower(),
  /system/extras/fatblock/
import.c 39 static int convert_name(char *short_name, const char *long_name)
69 memset(short_name, ' ', 11);
76 short_name[i] = toupper(long_name[i]);
80 short_name[8 + i] = toupper(dot[1 + i]);
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags.py 164 gflags.DEFINE_string('filename', None, 'Input file name', short_name='f')
    [all...]
  /external/chromium/chrome/browser/ui/search_engines/
keyword_editor_controller.cc 67 if (template_url->short_name() == title &&

Completed in 602 milliseconds

1 2 3