HomeSort by relevance Sort by last modified time
    Searched defs:mRoot (Results 1 - 12 of 12) sorted by null

  /frameworks/base/core/java/android/util/
FinitePool.java 39 private T mRoot;
62 if (mRoot != null) {
63 element = mRoot;
64 mRoot = element.getNextPoolable();
81 element.setNextPoolable(mRoot);
82 mRoot = element;
  /development/samples/ApiDemos/tests/src/com/example/android/apis/view/
Focus2AndroidTest.java 59 private ViewGroup mRoot;
74 mRoot = (ViewGroup) inflater.inflate(R.layout.focus_2, null);
77 mRoot.measure(500, 500);
78 mRoot.layout(0, 0, 500, 500);
80 mLeftButton = (Button) mRoot.findViewById(R.id.leftButton);
81 mCenterButton = (Button) mRoot.findViewById(R.id.centerButton);
82 mRightButton = (Button) mRoot.findViewById(R.id.rightButton);
104 mFocusFinder.findNextFocus(mRoot, mLeftButton, View.FOCUS_RIGHT));
111 mFocusFinder.findNextFocus(mRoot, mRightButton, View.FOCUS_LEFT));
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ExternalStorage.java 53 View mRoot;
84 mLayout.addView(mExternalStoragePublicPicture.mRoot);
100 mLayout.addView(mExternalStoragePrivatePicture.mRoot);
116 mLayout.addView(mExternalStoragePrivateFile.mRoot);
363 item.mRoot = inflater.inflate(R.layout.external_storage_item, null);
364 TextView tv = (TextView)item.mRoot.findViewById(R.id.label);
367 tv = (TextView)item.mRoot.findViewById(R.id.path);
370 item.mCreate = (Button)item.mRoot.findViewById(R.id.create);
372 item.mDelete = (Button)item.mRoot.findViewById(R.id.delete);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
PreCompilerDeltaVisitor.java 113 private IWorkspaceRoot mRoot;
119 mRoot = ResourcesPlugin.getWorkspace().getRoot();
482 IResource resource = mRoot.findMember(path);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PaletteComposite.java 72 private Composite mRoot;
146 mRoot = new Composite(this, SWT.NONE);
147 setGridLayout(mRoot, 0);
150 addGroup(mRoot, "Views", targetData.getLayoutDescriptors().getViewDescriptors());
151 addGroup(mRoot, "Layouts", targetData.getLayoutDescriptors().getLayoutDescriptors());
163 if (mVBar != null && mRoot != null) {
169 int ry = mRoot.getSize().y;
173 Control[] children = mRoot.getChildren();
214 if (mVBar != null && mRoot != null) {
215 Point p = mRoot.getLocation()
    [all...]
  /sdk/traceview/src/com/android/traceview/
ThreadData.java 30 private Call mRoot;
44 mRoot = new Call(mName, topLevel);
45 mCurrent = mRoot;
58 return mRoot;
123 caller = mRoot;
166 while (mCurrent != mRoot) {
173 caller = mRoot;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 58 private UiElementNode mRoot;
70 mRoot = top;
82 push(mRoot);
230 Document doc = mRoot.getXmlDocument();
324 Document doc = mRoot.getXmlDocument();
381 // we have only one element left (mRoot), then we're done with the document.
  /external/webkit/WebKit/android/nav/
CachedFrame.h 238 const CachedRoot* mRoot;
  /frameworks/base/core/java/android/widget/
MediaController.java 74 private View mRoot;
99 mRoot = this;
107 if (mRoot != null)
108 initControllerView(mRoot);
187 mRoot = inflate.inflate(com.android.internal.R.layout.media_controller, null);
189 initControllerView(mRoot);
191 return mRoot;
454 if (mRoot == null || mPauseButton == null)
588 if (mRoot != null) {
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
FileListingService.java 103 private FileEntry mRoot;
608 if (mRoot == null) {
609 mRoot = new FileEntry(null /* parent */, "" /* name */, TYPE_DIRECTORY,
613 return mRoot;
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 82 private ElementTime mRoot;
300 mRoot = root;
301 mAllEntries = getTimeline(mRoot, 0, Long.MAX_VALUE);
302 mMediaTimeUpdatedEvent = ((DocumentEvent) mRoot).createEvent("Event");
449 ((EventTarget) mRoot).dispatchEvent(mMediaTimeUpdatedEvent);
  /cts/tools/host/src/com/android/cts/
HostConfig.java 425 protected String mRoot;
428 mRoot = root;
437 return mRoot;
469 for (File f : new File(mRoot).listFiles()) {
471 String pathName = mRoot + File.separator + f.getName()
544 for (File f : new File(mRoot).listFiles()) {
593 String apkFilePath = mRoot + File.separator + pkgFileName + FILE_SUFFIX_APK;
594 String xmlFilePath = mRoot + File.separator + pkgFileName + FILE_SUFFIX_XML;
636 String filePath = mRoot + File.separator + fileName;
703 String path = mRoot + File.separator + fileName
    [all...]

Completed in 413 milliseconds