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

1 2

  /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/e2fsprogs/lib/e2p/
pf.c 23 const char *short_name; member in struct:flags_name
67 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/
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/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/chrome/browser/ui/search_engines/
keyword_editor_controller.cc 67 if (template_url->short_name() == title &&
keyword_editor_controller_unittest.cc 140 EXPECT_EQ(ASCIIToUTF16("a"), turl->short_name());
157 EXPECT_EQ(ASCIIToUTF16("a1"), turl->short_name());
  /external/chromium/chrome/browser/ui/webui/chromeos/
choose_mobile_network_ui.cc 179 else if (!it->short_name.empty())
180 network->SetString(kOperatorNameProperty, it->short_name);
  /external/llvm/tools/llvm-config/
llvm-config.in.in 309 my $short_name = $lib;
310 $short_name =~ s/^(lib)?LLVM([^.]*)\..*$/$2/;
311 $short_name =~ tr/A-Z/a-z/;
312 $NAME_MAP{$short_name} = [$lib];
  /external/bluetooth/glib/glib/
goption.c 481 if (entry->short_name)
509 if (entry->short_name)
510 g_string_append_printf (str, " -%c, --%s", entry->short_name, entry->long_name);
649 if (seen[(guchar)entry->short_name])
650 entry->short_name = 0;
652 seen[(guchar)entry->short_name] = TRUE;
669 if (seen[(guchar)entry->short_name] &&
671 entry->short_name = 0;
673 seen[(guchar)entry->short_name] = TRUE;
1220 if (arg == group->entries[j].short_name)
    [all...]
  /external/chromium/chrome/browser/autocomplete/
keyword_provider.cc 317 DCHECK(!element->short_name().empty());
338 match->contents.assign(element->short_name());
354 element->short_name(),

Completed in 2356 milliseconds

1 2