HomeSort by relevance Sort by last modified time
    Searched refs:heading (Results 26 - 50 of 124) sorted by null

12 3 4 5

  /external/chromium_org/chrome/browser/ui/gtk/extensions/
bundle_installed_bubble_gtk.cc 111 string16 heading = bundle->GetHeadingTextFor(state); local
113 if (heading.empty() || items.empty())
116 GtkWidget* heading_label = gtk_util::CreateBoldLabel(UTF16ToUTF8(heading));
  /external/chromium_org/chrome/browser/ui/gtk/
script_bubble_gtk.cc 96 GtkWidget* heading = gtk_label_new(heading_string.c_str()); local
97 gtk_misc_set_alignment(GTK_MISC(heading), 0, 0);
98 gtk_box_pack_start(GTK_BOX(bubble_content), heading, FALSE, FALSE, 0); local
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/options/css/
list.css 55 list > .heading {
59 list > .heading:hover {
  /frameworks/wilhelm/src/itf/
I3DLocation.c 189 SLmillidegree heading, SLmillidegree pitch, SLmillidegree roll)
193 if (!((-360000 <= heading) && (heading <= 360000) &&
200 thiz->mOrientationAngles.mHeading = heading;
I3DMacroscopic.c 70 SLmillidegree heading, SLmillidegree pitch, SLmillidegree roll)
74 if (!((-360000 <= heading) && (heading <= 360000) &&
81 thiz->mOrientationAngles.mHeading = heading;
  /external/chromium_org/chrome/browser/ui/views/extensions/
bundle_installed_bubble.cc 134 void AddHeading(GridLayout* layout, const string16& heading) {
137 heading, rb.GetFont(ui::ResourceBundle::MediumFont));
extension_install_dialog_view.cc 220 // The 'more details' link shown under the heading (changes to 'hide details'
291 // | heading | icon | | heading | icon |
311 // | heading | icon | | heading | icon |
322 // | heading | icon |
376 views::Label* heading = new views::Label(prompt.GetHeading()); local
377 heading->SetFont(rb.GetFont(ui::ResourceBundle::MediumFont));
378 heading->SetMultiLine(true);
379 heading->SetHorizontalAlignment(gfx::ALIGN_LEFT)
    [all...]
  /external/chromium/chrome/browser/first_run/
try_chrome_dialog_view.cc 140 !experiment.heading) {
144 string16 heading = l10n_util::GetStringUTF16(experiment.heading); local
145 views::Label* label = new views::Label(heading);
  /external/chromium_org/chrome/browser/extensions/api/location/
location_manager.cc 361 if (position.heading >= 0. && position.heading <= 360.)
362 coordinates->heading.reset(new double(position.heading));
  /external/chromium_org/chrome/browser/ui/views/
script_bubble_view.cc 125 // Add a column for the heading (one large text column).
154 views::Label* heading = new views::Label( local
156 layout->AddView(heading);
157 height_ += heading->GetPreferredSize().height();
  /external/chromium_org/content/browser/geolocation/
geolocation_provider_unittest.cc 88 actual.heading == expected_.heading &&
  /external/chromium_org/content/browser/resources/media/
webrtc_internals.css 29 .stats-graph-container-heading {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
buildbot_results.py 75 def _print_run_results_entry(self, run_results, timeline, heading):
80 self._print("=> %s (%d):" % (heading, not_passing))
  /external/chromium_org/chrome/browser/chromeos/policy/
device_status_collector.cc 61 const char kHeading[] = "heading";
172 location->GetDouble(kHeading, &position.heading) &&
405 if (position_.heading >= 0. && position_.heading <= 360)
406 location->set_heading(position_.heading);
556 location.SetDouble(kHeading, position.heading);
device_local_account_browsertest.cc 440 " status.heading = document.getElementById('tos-heading').textContent;"
444 " document.getElementById('tos-content-heading').textContent;"
464 std::string heading; local
465 EXPECT_TRUE(status->GetString("heading", &heading));
481 heading); local
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
synced_notification.cc 202 string16 heading = UTF8ToUTF16(GetHeading()); local
208 string16 notification_heading = heading;
314 DVLOG(1) << "Showing Synced Notification! " << heading << " " << text
386 DVLOG(2) << " Notification: Heading is " << GetHeading()
432 simple_collapsed_layout().heading();
670 collapsed_info(index).simple_collapsed_layout().heading();
  /external/chromium_org/chrome/browser/resources/history/
other_devices.js 173 // Name heading
174 var heading = document.createElement('h3');
175 heading.textContent = this.session_.name;
176 heading.sessionData_ = this.session_;
177 deviceDiv.appendChild(heading);
185 heading.addEventListener('contextmenu', handleDropDownFocus);
191 heading.appendChild(dropDownButton);
195 heading.appendChild(timeSpan);
198 heading, DeviceContextMenuController.getInstance().menu);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
LocationProvider.java 266 boolean hasHeading, double heading,
  /external/chromium_org/third_party/icu/source/common/
rbbidata.cpp 213 void RBBIDataWrapper::printTable(const char *heading, const RBBIStateTable *table) {
217 RBBIDebugPrintf(" %s\n", heading);
  /external/icu4c/common/
rbbidata.cpp 213 void RBBIDataWrapper::printTable(const char *heading, const RBBIStateTable *table) {
217 RBBIDebugPrintf(" %s\n", heading);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
feed.js 200 // Display content under heading when spacebar or right-arrow pressed
202 // Move to next heading when down-arrow pressed
203 // Move to previous heading when up-arrow pressed
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 934 self.assertTrue(isinstance(self.tv.heading('#0'), dict))
937 self.tv.heading('#0', text='hi')
938 self.assertEqual(self.tv.heading('#0', 'text'), 'hi')
939 self.assertEqual(self.tv.heading('#0', text=None), 'hi')
942 self.assertRaises(Tkinter.TclError, self.tv.heading, '#0',
945 self.assertRaises(Tkinter.TclError, self.tv.heading, '#0',
959 self.tv.heading('#0', command=lambda: success.append(True))
963 # assuming that the coords (5, 5) fall into heading #0
966 self.fail("The command associated to the treeview heading wasn't
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 934 self.assertTrue(isinstance(self.tv.heading('#0'), dict))
937 self.tv.heading('#0', text='hi')
938 self.assertEqual(self.tv.heading('#0', 'text'), 'hi')
939 self.assertEqual(self.tv.heading('#0', text=None), 'hi')
942 self.assertRaises(Tkinter.TclError, self.tv.heading, '#0',
945 self.assertRaises(Tkinter.TclError, self.tv.heading, '#0',
959 self.tv.heading('#0', command=lambda: success.append(True))
963 # assuming that the coords (5, 5) fall into heading #0
966 self.fail("The command associated to the treeview heading wasn't
    [all...]
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
doc_writer.py 519 heading = 'h2'
521 heading = 'h3'
524 h2 = self.AddElement(parent2, heading)
  /external/chromium_org/chrome/browser/resources/performance_monitor/
chart.js 677 * <h3 class="category-heading">CPU</h3>
689 * <h3 class="category-heading">Memory</h3>
739 var heading = template.querySelector('.category-heading');
740 heading.innerText = category.name;
741 heading.title = category.description;
    [all...]

Completed in 299 milliseconds

12 3 4 5