HomeSort by relevance Sort by last modified time
    Searched defs:View (Results 26 - 50 of 78) sorted by null

12 3 4

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ProfileLauncherView.js 33 * @extends {WebInspector.View}
38 WebInspector.View.call(this);
42 this.element.addStyleClass("profile-launcher-view");
43 this.element.addStyleClass("panel-enabler-view");
45 this._contentElement = this.element.createChild("div", "profile-launcher-view-content");
112 __proto__: WebInspector.View.prototype
TabbedPane.js 32 * @extends {WebInspector.View}
37 WebInspector.View.call(this);
60 * @return {WebInspector.View}
64 return this._currentTab ? this._currentTab.view : null;
136 * @param {WebInspector.View} view
140 appendTab: function(id, tabTitle, view, tabTooltip, userGesture)
142 var tab = new WebInspector.TabbedPaneTab(this, id, tabTitle, this._closeableTabs, view, tabTooltip);
194 var eventData = { tabId: id, view: tab.view, isUserGesture: userGesture }
    [all...]
ConsoleView.js 31 * @extends {WebInspector.View}
38 WebInspector.View.call(this);
40 this.element.id = "console-view";
242 WebInspector.View.prototype.storeScrollPositions.call(this);
251 WebInspector.View.prototype.restoreScrollPositions.call(this);
710 __proto__: WebInspector.View.prototype
    [all...]
CanvasProfileView.js 33 * @extends {WebInspector.View}
38 WebInspector.View.call(this);
42 this.element.addStyleClass("canvas-profile-view");
588 __proto__: WebInspector.View.prototype
    [all...]
RequestHeadersView.js 33 * @extends {WebInspector.View}
38 WebInspector.View.call(this);
40 this.element.addStyleClass("resource-headers-view");
265 var toggleTitle = this._decodeRequestParameters ? WebInspector.UIString("view URL encoded") : WebInspector.UIString("view decoded");
317 var viewSourceToggleTitle = viewSource ? WebInspector.UIString("view parsed") : WebInspector.UIString("view source");
455 var toggleTitle = isHeadersTextShown ? WebInspector.UIString("view parsed") : WebInspector.UIString("view source");
459 __proto__: WebInspector.View.prototyp
    [all...]
IndexedDBViews.js 33 * @extends {WebInspector.View}
38 WebInspector.View.call(this);
42 this.element.addStyleClass("indexed-db-database-view");
98 __proto__: WebInspector.View.prototype
104 * @extends {WebInspector.View}
112 WebInspector.View.call(this);
119 this.element.addStyleClass("indexed-db-data-view");
209 editorToolbar.addStyleClass("data-view-toolbar");
381 __proto__: WebInspector.View.prototype
AdvancedSearchController.js 215 * @extends {WebInspector.View}
220 WebInspector.View.call(this);
224 this.element.className = "search-view";
448 __proto__: WebInspector.View.prototype
CPUProfileView.js 28 * @extends {WebInspector.View}
33 WebInspector.View.call(this);
35 this.element.addStyleClass("profile-view");
667 __proto__: WebInspector.View.prototype
    [all...]
OverridesView.js 33 * @extends {WebInspector.View}
37 WebInspector.View.call(this);
48 var wrapper = paneContent.createChild("div", "help-container-wrapper overrides-view");
109 var view = WebInspector.OverridesView._view;
110 WebInspector.showViewInDrawer(view._statusElement, view);
640 __proto__: WebInspector.View.prototype
Spectrum.js 31 * @extends {WebInspector.View}
35 WebInspector.View.call(this);
283 __proto__: WebInspector.View.prototype
FlameChart.js 33 * @extends {WebInspector.View}
38 WebInspector.View.call(this);
784 __proto__: WebInspector.View.prototype
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BWin.h 199 virtual BView *View(void) {
  /libcore/benchmarks/src/benchmarks/regression/
PropertyAccessBenchmark.java 24 private View view = new View(); field in class:PropertyAccessBenchmark
32 setX = View.class.getDeclaredMethod("setX", float.class);
33 x = View.class.getDeclaredField("x");
38 view.setX(0.1f);
44 view.x = 0.1f;
51 view.setX(value);
58 view.x = value;
64 setX.invoke(view, 0.1f)
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ValidationMessageBubble.java 11 import android.view.Gravity;
12 import android.view.View;
13 import android.view.ViewGroup;
55 final ViewGroup root = (ViewGroup) View.inflate(contentViewCore.getContext(),
128 View.MeasureSpec.makeMeasureSpec(coordinates.getLastFrameViewportWidthPixInt(),
129 View.MeasureSpec.AT_MOST),
130 View.MeasureSpec.makeMeasureSpec(coordinates.getLastFrameViewportHeightPixInt(),
131 View.MeasureSpec.AT_MOST));
135 final View root = mPopup.getContentView()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
ToggleSlider.java 24 import android.view.View;
58 View.inflate(context, R.layout.status_bar_toggle_slider, this);
  /packages/apps/UnifiedEmail/src/com/android/mail/widget/
WidgetConversationListItemViewBuilder.java 35 import android.view.View;
96 remoteViews.setViewVisibility(viewId, View.VISIBLE);
107 remoteViews.setViewVisibility(getFolderViewId(i), View.GONE);
147 * Return the full View
178 // Inflate and fill out the remote view
185 remoteViews.setViewVisibility(R.id.widget_attachment, View.VISIBLE);
188 remoteViews.setViewVisibility(R.id.widget_attachment, View.GONE);
191 remoteViews.setViewVisibility(R.id.widget_unread_background, View.VISIBLE);
192 remoteViews.setViewVisibility(R.id.widget_read_background, View.GONE)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ExpandHelper.java 27 import android.view.Gravity;
28 import android.view.MotionEvent;
29 import android.view.ScaleGestureDetector;
30 import android.view.ScaleGestureDetector.OnScaleGestureListener;
31 import android.view.View;
32 import android.view.View.OnClickListener;
33 import android.view.ViewConfiguration;
34 import android.view.ViewGroup
    [all...]
  /external/opencv/cxcore/include/
cvwimage.h 57 // or using a WImageView class which constructs a subimage or a view into
58 // external data. The view class does no memory management. Each class
83 // im.View(0,0, w,1).CopyFrom(im.View(0,1, w,1));
234 // Construct a view into a region of this image
235 WImageView<T> View(int c, int r, int width, int height);
270 // Construct a view into a region of this image
271 WImageViewC<T, C> View(int c, int r, int width, int height);
415 // View into an image class which allows treating a subimage as an image
606 // Construct a view into a region of an imag
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationsInOutboxTipView.java 31 import android.view.View;
32 import android.view.animation.DecelerateInterpolator;
64 private View mSwipeableContent;
69 private View mTeaserRightEdge;
119 findViewById(R.id.outbox).setOnClickListener(new View.OnClickListener() {
121 public void onClick(View v) {
126 findViewById(R.id.dismiss_button).setOnClickListener(new View.OnClickListener() {
128 public void onClick(View v) {
356 setMeasuredDimension(View.MeasureSpec.getSize(widthMeasureSpec), mAnimatedHeight)
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
certificate_manager_handler.cc 362 NewCallback(this, &CertificateManagerHandler::View));
453 void CertificateManagerHandler::View(const ListValue* args) {
    [all...]
  /external/chromium_org/ui/views/
view.h 80 // View class
82 // A View is a rectangle within the views View hierarchy. It is the base
85 // A View is a container of other Views (there is no such thing as a Leaf
86 // View - makes code simpler, reduces type conversion headaches, design
89 // The View contains basic properties for sizing (bounds), layout (flex,
92 // The View also uses a simple Box Layout Manager similar to XUL's
103 class VIEWS_EXPORT View : public ui::LayerDelegate,
108 typedef std::vector<View*> Views;
118 View* parent
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarContextView.java 22 import android.support.v7.view.ActionMode;
23 import android.support.v7.internal.view.menu.ActionMenuPresenter;
24 import android.support.v7.internal.view.menu.ActionMenuView;
25 import android.support.v7.internal.view.menu.MenuBuilder;
28 import android.view.LayoutInflater;
29 import android.view.View;
30 import android.view.ViewGroup;
44 private View mClose;
45 private View mCustomView
    [all...]
  /frameworks/base/tools/layoutlib/create/tests/data/
mock_android.jar 
  /external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/
calendarPicker.js 1235 * View adds itself as a property on the element so we can access it from Event.target.
1237 function View(element) {
1244 this.element.$view = this;
1248 View.prototype = Object.create(EventEmitter.prototype);
1254 View.prototype.offsetRelativeTo = function(ancestorElement) {
1269 * @param {!View|Node} parent
1270 * @param {?View|Node=} before
1272 View.prototype.attachTo = function(parent, before) {
1273 if (parent instanceof View)
1277 if (before instanceof View)
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
certificate_manager_handler.cc 429 base::Bind(&CertificateManagerHandler::View, base::Unretained(this)));
553 void CertificateManagerHandler::View(const ListValue* args) {
    [all...]

Completed in 1832 milliseconds

12 3 4