HomeSort by relevance Sort by last modified time
    Searched refs:currentView (Results 1 - 21 of 21) sorted by null

  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestTextViewDrawablesLtr.java 28 private View currentView;
34 currentView = inflater.inflate(R.layout.textview_drawables_ltr, container, false);
35 return currentView;
42 textViewError = (TextView) currentView.findViewById(R.id.textview_error);
BiDiTestTextViewDrawablesRtl.java 28 private View currentView;
34 currentView = inflater.inflate(R.layout.textview_drawables_rtl, container, false);
35 return currentView;
42 textViewError = (TextView) currentView.findViewById(R.id.textview_error);
BiDiTestBasic.java 33 private View currentView;
40 currentView = inflater.inflate(R.layout.basic, container, false);
41 return currentView;
48 alertDialogButton = (Button) currentView.findViewById(R.id.button_alert_dialog);
59 AlertDialog.Builder builder = new AlertDialog.Builder(currentView.getContext());
65 EditText urlEdit = (EditText) currentView.findViewById(R.id.edittext_url);
BiDiTestGridLayoutCodeLtr.java 33 private FrameLayout currentView;
38 currentView = (FrameLayout) inflater.inflate(R.layout.grid_layout_code, container, false);
39 return currentView;
45 currentView.addView(create(currentView.getContext()));
BiDiTestGridLayoutCodeRtl.java 33 private FrameLayout currentView;
38 currentView = (FrameLayout) inflater.inflate(R.layout.grid_layout_code, container, false);
39 return currentView;
45 currentView.addView(create(currentView.getContext()));
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
UiUtils.java 110 * @param currentView The view to generate a screenshot of.
118 View currentView, int maximumDimension, Bitmap.Config bitmapConfig) {
120 boolean drawingCacheEnabled = currentView.isDrawingCacheEnabled();
122 prepareViewHierarchyForScreenshot(currentView, true);
123 if (!drawingCacheEnabled) currentView.setDrawingCacheEnabled(true);
126 Bitmap originalBitmap = currentView.getDrawingCache();
146 } else if (currentView.getMeasuredHeight() > 0 && currentView.getMeasuredWidth() > 0) {
147 double originalHeight = currentView.getMeasuredHeight();
148 double originalWidth = currentView.getMeasuredWidth()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ValidationMessageClientImpl.cpp 66 FrameView* ValidationMessageClientImpl::currentView()
82 IntRect anchorInRootView = currentView()->contentsToRootView(anchor.pixelSnappedBoundingBox());
83 m_lastAnchorRectInScreen = currentView()->hostWindow()->rootViewToScreen(anchorInRootView);
129 if (monotonicallyIncreasingTime() >= m_finishTime || !currentView()) {
136 IntRect newAnchorRect = currentView()->contentsToRootView(m_currentAnchor->pixelSnappedBoundingBox());
137 newAnchorRect = intersection(currentView()->convertToRootView(currentView()->boundsRect()), newAnchorRect);
143 IntRect newAnchorRectInScreen = currentView()->hostWindow()->rootViewToScreen(newAnchorRect);
ValidationMessageClientImpl.h 51 WebCore::FrameView* currentView();
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGDocument.cpp 72 if (svg->currentView())
73 return svg->currentView()->zoomAndPan() == SVGZoomAndPanMagnify;
SVGSVGElement.idl 38 readonly attribute SVGViewSpec currentView;
SVGSVGElement.h 71 SVGViewSpec* currentView();
SVGSVGElement.cpp 165 SVGViewSpec* SVGSVGElement::currentView()
704 view = currentView(); // Create the SVGViewSpec.
739 SVGViewSpec* view = currentView();
  /cts/tests/src/android/app/cts/
ExpandableListTestActivity.java 102 final ExpandableListView currentView = getExpandableListView();
104 if (!currentView.expandGroup(i))
106 if (!currentView.collapseGroup(i))
113 setContentView(currentView);
  /cts/tests/tests/widget/src/android/widget/cts/
TabHost_TabSpecTest.java 144 TextView currentView = (TextView) mTabHost.getCurrentView();
146 currentView.getText().toString());
165 TextView currentView = (TextView) mTabHost.getCurrentView();
166 assertEquals("tab spec 2", currentView.getText().toString());
  /packages/apps/Calendar/src/com/android/calendar/
DayFragment.java 180 DayView currentView = (DayView) mViewSwitcher.getCurrentView();
183 int diff = currentView.compareToVisibleTimeRange(goToTime);
187 currentView.setSelected(goToTime, ignoreTime, animateToday);
200 next.setFirstVisibleHour(currentView.getFirstVisibleHour());
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
PlayerSetupActivity.java 319 private void slideToNext(final SkewableTextView currentView,
322 ObjectAnimator currentSkewer = ObjectAnimator.ofFloat(currentView, "skewX", -.5f);
324 ObjectAnimator currentMover = ObjectAnimator.ofFloat(currentView, View.TRANSLATION_X,
348 currentView.setSkewX(0);
349 currentView.setVisibility(View.GONE);
350 currentView.setTranslationX(0);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DatePickerDialog.java 211 int currentView = MONTH_AND_DAY_VIEW;
216 currentView = savedInstanceState.getInt(KEY_CURRENT_VIEW);
259 setCurrentView(currentView);
262 if (currentView == MONTH_AND_DAY_VIEW) {
264 } else if (currentView == YEAR_VIEW) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HeapSnapshotView.js 74 this.currentView = this.constructorsView;
75 this.currentView.show(this.viewsContainer);
264 if (this.currentView !== this.constructorsView && this.currentView !== this.diffView)
568 if (this.currentView === this.diffView)
573 if (this.currentView === this.constructorsView) {
595 this.currentView.detach();
597 this.currentView = view.view;
599 this.currentView.show(this.viewsContainer);
667 if (this._trackingOverviewGrid && this.currentView === this.constructorsView
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanelTrack.java 343 public void setCurrentView(View currentView) {
344 mCurrentView = (StateView) currentView;
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
Utils.java     [all...]
  /external/chromium-trace/
script.js     [all...]

Completed in 1473 milliseconds