Searched refs:view (Results 1 - 25 of 1606) sorted by relevance

1234567891011>>

/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Dgeneric_object_view_test.js14 var view = new GenericObjectView();
15 view.object = undefined;
16 assertEquals('undefined', view.children[0].dataElement.textContent);
20 var view = new GenericObjectView();
21 view.object = null;
22 assertEquals('null', view.children[0].dataElement.textContent);
26 var view = new GenericObjectView();
27 view.object = 'string value';
28 assertEquals('"string value"', view.children[0].textContent);
32 var view
[all...]
H A Danalysis_view.css6 .analysis-view {
11 .analysis-view:not(.viewing-object) {
15 .analysis-view > * {
H A Ddefault_object_view.css6 .default-object-snapshot-view #args {
10 .default-object-instance-view #snapshots > * {
14 .default-object-view {
18 .default-object-view * {
23 .default-object-view .title,
24 .default-object-view .title {
30 .default-object-view td,
31 .default-object-view th {
/external/chromium/webkit/glue/
H A Dwebview_unittest.cc15 WebView* view = test_shell_->webView(); local
16 ASSERT_TRUE(view != 0);
18 view->setIsActive(true);
19 EXPECT_TRUE(view->isActive());
21 view->setIsActive(false);
22 EXPECT_FALSE(view->isActive());
24 view->setIsActive(true);
25 EXPECT_TRUE(view->isActive());
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
H A Dperf_unittests.js55 var view = new ui.perf.View();
58 equal(view.outerHTML, '<div id="perf-view">' +
73 view._nextGraph();
75 equal(view.outerHTML, '<div id="perf-view">' +
90 view._nextGraph();
92 equal(view.outerHTML, '<div id="perf-view">' +
107 view
[all...]
H A Dresults_unittests.js130 var view = new ui.results.View(delegate);
131 view.setResultsByTest(kExampleResultsByTest);
133 view.firstResult();
134 var testSelector = view.querySelector('.test-selector');
137 equals($($('.builder-selector', view)[0]).tabs('option', 'selected'), 0);
139 view.nextResult();
141 equals($($('.builder-selector', view)[0]).tabs('option', 'selected'), 1);
142 equals(view.currentTestName(), 'scrollbars/custom-scrollbar-with-incomplete-style.html');
144 view.nextResult();
146 equals($($('.builder-selector', view)[
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dnative_focus_tracker_views_aura.cc12 gfx::NativeView view) {
13 while (view) {
15 BrowserView::GetBrowserViewForNativeWindow(view);
18 view = view->parent();
11 GetBrowserForNativeView( gfx::NativeView view) argument
/external/chromium-trace/trace-viewer/src/ui/
H A Drect_view.css6 rect-view {
H A Dquad_view.css6 quad-view {
10 quad-view,
11 quad-view > * {
H A Dlist_view_test.js13 var view = new ListView();
14 var i1 = view.addItem('item 1');
15 var i2 = view.addItem('item 2');
16 var i3 = view.addItem('item 3');
17 this.addHTMLOutput(view);
21 var view = new ListView();
22 var i1 = view.addItem('item 1');
23 var i2 = view.addItem('item 2');
24 var i3 = view.addItem('item 3');
34 var view
[all...]
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dinfo_view.css6 #info-view {
10 #info-view h3 {
14 #info-view .row-title {
18 #info-view table {
23 #info-view table,
24 #info-view th,
25 #info-view td {
32 #info-view .feature-green {
36 #info-view .feature-yellow {
40 #info-view
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DsplitView.css29 .split-view {
38 .split-view-contents {
44 .split-view-contents.maximized {
49 .split-view-vertical > .split-view-contents {
54 .split-view-vertical > .split-view-contents-first {
58 .split-view-vertical > .split-view-contents-first.maximized {
62 .split-view
[all...]
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/styles/
H A Dperf.css26 #perf-view {
30 #perf-view > .title-bar {
34 #perf-view > .notifications {
38 #perf-view .actions,
39 #perf-view .pop-out {
44 #perf-view > iframe {
/external/chromium-trace/trace-viewer/src/cc/
H A Dpicture_view.css6 .picture-snapshot-view {
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayBuffer.cpp73 void ArrayBuffer::addView(ArrayBufferView* view) argument
75 view->m_buffer = this;
76 view->m_prevView = 0;
77 view->m_nextView = m_firstView;
79 m_firstView->m_prevView = view;
80 m_firstView = view;
83 void ArrayBuffer::removeView(ArrayBufferView* view) argument
85 ASSERT(this == view->m_buffer);
86 if (view->m_nextView)
87 view
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_sampler.c34 * Initialize a pipe_sampler_view. 'view' is considered to have
38 default_template(struct pipe_sampler_view *view, argument
43 memset(view, 0, sizeof(*view));
48 view->format = format;
49 view->u.tex.first_level = 0;
50 view->u.tex.last_level = texture->last_level;
51 view->u.tex.first_layer = 0;
52 view->u.tex.last_layer = texture->target == PIPE_TEXTURE_3D ?
54 view
88 u_sampler_view_default_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
100 u_sampler_view_default_dx9_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
[all...]
/external/chromium_org/ui/views/
H A Ddebug_utils.h14 // Log the view hierarchy.
15 VIEWS_EXPORT void PrintViewHierarchy(const View* view);
18 VIEWS_EXPORT void PrintFocusHierarchy(const View* view);
H A Ddebug_utils.cc11 #include "ui/views/view.h"
15 void PrintViewHierarchyImp(const View* view, argument
21 *out << UTF8ToWide(view->GetClassName());
23 *out << view->id();
25 *out << view->x() << L"," << view->y() << L",";
26 *out << view->bounds().right() << L"," << view->bounds().bottom();
28 *out << view; local
31 for (int i = 0, count = view
35 PrintFocusHierarchyImp(const View* view, int indent, std::wostringstream* out) argument
47 *out << view; local
59 PrintViewHierarchy(const View* view) argument
67 PrintFocusHierarchy(const View* view) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_sampler.c34 * Initialize a pipe_sampler_view. 'view' is considered to have
38 default_template(struct pipe_sampler_view *view, argument
43 memset(view, 0, sizeof(*view));
48 view->format = format;
49 view->u.tex.first_level = 0;
50 view->u.tex.last_level = texture->last_level;
51 view->u.tex.first_layer = 0;
52 view->u.tex.last_layer = texture->target == PIPE_TEXTURE_3D ?
54 view
88 u_sampler_view_default_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
100 u_sampler_view_default_dx9_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dtimeline_view.css6 #timeline-view-selection-div {
11 #timeline-view-selection-toggle {
15 .timeline-view-rotateleft {
19 .timeline-view-rotateright {
23 #timeline-view-selection-div ul {
28 #timeline-view-selection-div li {
33 .timeline-view-text {
37 #timeline-view-open-sockets {
41 #timeline-view-in-use-sockets {
45 #timeline-view
[all...]
H A Dchromeos_view.css6 #chromeos-view-password-div,
7 #chromeos-view-parse-status {
/external/chromium_org/ui/views/controls/
H A Dslider_unittest.cc13 #include "ui/views/view.h"
17 void ClickAt(views::View* view, int x, int y) { argument
21 view->OnMousePressed(press);
24 view->OnMouseReleased(release);
33 View* view = slider.get(); local
34 gfx::Size size = view->GetPreferredSize();
35 view->SetSize(size);
37 ClickAt(view, 0, 0);
40 ClickAt(view, view
46 View* view = slider.get(); local
62 View* view = slider.get(); local
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DPowerSaveBlocker.java12 private static void applyBlock(ViewAndroid view) { argument
13 view.incrementKeepScreenOnCount();
17 private static void removeBlock(ViewAndroid view) { argument
18 view.decrementKeepScreenOnCount();
/external/chromium_org/ui/app_list/views/
H A Dsearch_result_view_delegate.h15 virtual void SearchResultActivated(SearchResultView* view,
20 virtual void SearchResultActionActivated(SearchResultView* view,
25 virtual void OnSearchResultInstalled(SearchResultView* view) = 0;
28 virtual void OnSearchResultUninstalled(SearchResultView* view) = 0;
/external/chromium_org/content/browser/resources/gpu/
H A Dinfo_view.css5 #info-view {
11 #info-view * {
15 #info-view[selected] {
20 #info-view h3,
21 #info-view ul {
26 #info-view > div {
30 #info-view .row-title {
34 #info-view table {
39 #info-view table,
40 #info-view t
[all...]

Completed in 506 milliseconds

1234567891011>>