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

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SynchronizedHandler.java 26 private final GLRoot mRoot;
29 mRoot = Utils.checkNotNull(root);
34 mRoot.lockRenderThread();
38 mRoot.unlockRenderThread();
GLView.java 62 private GLRoot mRoot;
116 Utils.assertTrue(mParent == null && mRoot == null);
122 Utils.assertTrue(mParent == null && mRoot != null);
152 if (mRoot != null) {
153 component.onAttachToRoot(mRoot);
200 return mRoot;
432 mRoot = root;
442 mRoot = null;
446 if (mRoot != null) {
447 mRoot.lockRenderThread()
    [all...]
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
OverlayTest.java 28 ViewGroup mRoot;
36 mRoot = (ViewGroup) mContainer.getParent();
43 mRoot.getOverlay().add(fadingButton);
48 mRoot.getOverlay().remove(fadingButton);
  /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));
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
DrawIdler.java 23 private View mRoot;
40 if (mRoot == rootView) {
42 } else if (mRoot != null) {
43 mRoot.getViewTreeObserver().removeOnPreDrawListener(mIdleReader);
46 mRoot = rootView;
48 if (mRoot != null) {
49 mRoot.getViewTreeObserver().addOnPreDrawListener(mIdleReader);
  /frameworks/rs/cpu_ref/
rsCpuScript.h 103 int (*mRoot)();
113 RootFunc_t mRoot;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
PathMatcher.java 26 private Node mRoot = new Node();
29 mRoot = new Node();
34 Node current = mRoot;
44 Node current = mRoot;
DownloadCache.java 73 private final File mRoot;
82 mRoot = Utils.checkNotNull(root);
205 if (!mRoot.isDirectory()) mRoot.mkdirs();
206 if (!mRoot.isDirectory()) {
207 throw new RuntimeException("cannot create " + mRoot.getAbsolutePath());
235 for (File file : mRoot.listFiles()) {
321 tempFile = File.createTempFile("cache", ".tmp", mRoot);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ProfileData.java 48 private Node mRoot;
55 mRoot = new Node(null, -1); // The id of the root node is unused.
60 mRoot = new Node(null, -1);
80 Node node = mRoot;
113 writeAllStacks(mRoot, 0);
  /frameworks/base/core/java/android/view/
FocusFinder.java 608 private ViewGroup mRoot;
612 mRoot = null;
616 mRoot = root;
657 mRoot.offsetDescendantRectToMyCoords(view, rect);
  /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);
  /external/replicaisland/src/com/replica/replicaisland/
LevelSystem.java 34 public ObjectManager mRoot;
50 if (mBackgroundObject != null && mRoot != null) {
53 mRoot.remove(mBackgroundObject);
55 mRoot = null;
110 mRoot = root;
  /frameworks/base/graphics/java/android/graphics/
Atlas.java 238 private final Cell mRoot = new Cell();
275 mRoot.next = first;
281 Cell cell = mRoot.next;
282 Cell prev = mRoot;
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DirectoryLoader.java 72 private final RootInfo mRoot;
84 mRoot = root;
109 mRoot.authority, mRoot.documentId);
123 mRoot.authority, mRoot.rootId, mDoc.documentId);
168 cursor = new RootCursorWrapper(mUri.getAuthority(), mRoot.rootId, cursor, -1);
DocumentsActivity.java 884 private RootInfo mRoot;
887 mRoot = root;
894 mRoot.authority, mRoot.documentId);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PreCompilerDeltaVisitor.java 98 private final IWorkspaceRoot mRoot;
106 mRoot = ResourcesPlugin.getWorkspace().getRoot();
416 IResource resource = mRoot.findMember(path);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 76 private UiElementNode mRoot;
122 mRoot = top;
132 push(mRoot);
300 Document doc = mRoot.getXmlDocument();
449 Document doc = mRoot.getXmlDocument();
507 // we have only one element left (mRoot), then we're done with the document.
  /frameworks/base/core/java/android/widget/
MediaController.java 76 private View mRoot;
102 mRoot = this;
110 if (mRoot != null)
111 initControllerView(mRoot);
244 mRoot = inflate.inflate(com.android.internal.R.layout.media_controller, null);
246 initControllerView(mRoot);
248 return mRoot;
511 if (mRoot == null || mPauseButton == null)
657 if (mRoot != null) {
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksPage.java 92 View mRoot;
390 mRoot = inflater.inflate(R.layout.bookmarks, container, false);
391 mEmptyView = mRoot.findViewById(android.R.id.empty);
393 mGrid = (BookmarkExpandableView) mRoot.findViewById(R.id.grid);
403 return mRoot;
563 mRoot.setPadding(0, paddingTop, 0, 0);
BrowserHistoryPage.java 85 private View mRoot;
152 mRoot.findViewById(R.id.history).setVisibility(View.GONE);
153 mRoot.findViewById(android.R.id.empty).setVisibility(View.VISIBLE);
155 mRoot.findViewById(R.id.history).setVisibility(View.VISIBLE);
156 mRoot.findViewById(android.R.id.empty).setVisibility(View.GONE);
208 mRoot = inflater.inflate(R.layout.history, container, false);
210 ViewStub stub = (ViewStub) mRoot.findViewById(R.id.pref_stub);
221 return mRoot;
225 mHistoryList = (ExpandableListView) mRoot.findViewById(R.id.history);
234 mGroupList = (ListView) mRoot.findViewById(android.R.id.list)
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 81 private ElementTime mRoot;
299 mRoot = root;
300 mAllEntries = getTimeline(mRoot, 0, Long.MAX_VALUE);
301 mMediaTimeUpdatedEvent = ((DocumentEvent) mRoot).createEvent("Event");
448 ((EventTarget) mRoot).dispatchEvent(mMediaTimeUpdatedEvent);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleWizard.java 93 private List<Map.Entry<String, List<Attr>>> mRoot;
160 mCheckedView.setInput(mRoot);
240 mRoot = new ArrayList<Map.Entry<String, List<Attr>>>(
245 Collections.sort(mRoot, new Comparator<Map.Entry<String, List<Attr>>>() {
274 for (Map.Entry<String, List<Attr>> entry : mRoot) {
424 if (inputElement == mRoot) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlinePage.java 670 private CanvasViewInfo mRoot;
673 mRoot = root;
677 return mRoot;
    [all...]
  /prebuilts/devtools/tools/lib/
sdkuilib.jar 
ddmlib.jar 

Completed in 1012 milliseconds

1 2