Home
last modified time | relevance | path

Searched refs:mRoot (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DGLView.java62 private GLRoot mRoot; field in GLView
116 Utils.assertTrue(mParent == null && mRoot == null); in attachToRoot()
122 Utils.assertTrue(mParent == null && mRoot != null); in detachFromRoot()
152 if (mRoot != null) { in addComponent()
153 component.onAttachToRoot(mRoot); in addComponent()
200 return mRoot; in getGLRoot()
432 mRoot = root; in onAttachToRoot()
442 mRoot = null; in onDetachFromRoot()
446 if (mRoot != null) { in lockRendering()
447 mRoot.lockRenderThread(); in lockRendering()
[all …]
DSynchronizedHandler.java26 private final GLRoot mRoot; field in SynchronizedHandler
29 mRoot = Utils.checkNotNull(root); in SynchronizedHandler()
34 mRoot.lockRenderThread(); in dispatchMessage()
38 mRoot.unlockRenderThread(); in dispatchMessage()
/packages/apps/Browser/src/com/android/browser/
DBrowserHistoryPage.java85 private View mRoot; field in BrowserHistoryPage
152 mRoot.findViewById(R.id.history).setVisibility(View.GONE); in checkIfEmpty()
153 mRoot.findViewById(android.R.id.empty).setVisibility(View.VISIBLE); in checkIfEmpty()
155 mRoot.findViewById(R.id.history).setVisibility(View.VISIBLE); in checkIfEmpty()
156 mRoot.findViewById(android.R.id.empty).setVisibility(View.GONE); in checkIfEmpty()
208 mRoot = inflater.inflate(R.layout.history, container, false); in onCreateView()
210 ViewStub stub = (ViewStub) mRoot.findViewById(R.id.pref_stub); in onCreateView()
221 return mRoot; in onCreateView()
225 mHistoryList = (ExpandableListView) mRoot.findViewById(R.id.history); in inflateSinglePane()
234 mGroupList = (ListView) mRoot.findViewById(android.R.id.list); in inflateTwoPane()
[all …]
DBrowserBookmarksPage.java92 View mRoot; field in BrowserBookmarksPage
390 mRoot = inflater.inflate(R.layout.bookmarks, container, false); in onCreateView()
391 mEmptyView = mRoot.findViewById(android.R.id.empty); in onCreateView()
393 mGrid = (BookmarkExpandableView) mRoot.findViewById(R.id.grid); in onCreateView()
403 return mRoot; in onCreateView()
563 mRoot.setPadding(0, paddingTop, 0, 0); in onConfigurationChanged()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DDrawIdler.java23 private View mRoot; field in DrawIdler
40 if (mRoot == rootView) { in setRootView()
42 } else if (mRoot != null) { in setRootView()
43 mRoot.getViewTreeObserver().removeOnPreDrawListener(mIdleReader); in setRootView()
46 mRoot = rootView; in setRootView()
48 if (mRoot != null) { in setRootView()
49 mRoot.getViewTreeObserver().addOnPreDrawListener(mIdleReader); in setRootView()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
DTransitionImageAnimation.java66 private ViewGroup mRoot; field in TransitionImageAnimation
87 mRoot = root; in TransitionImageAnimation()
182 TransitionImageView view = new TransitionImageView(mRoot.getContext()); in addTransitionSource()
183 mRoot.addView(view); in addTransitionSource()
188 mRoot.addOnLayoutChangeListener(mInitializeClip); in addTransitionSource()
199 mRoot.postDelayed(mCancelTransitionRunnable, mTransitionTimeoutMs); in startCancelTimer()
288 mRoot.removeView(view); in startTransition()
306 mRoot.removeView(iv); in cancelTransition()
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DDownloadCache.java73 private final File mRoot; field in DownloadCache
82 mRoot = Utils.checkNotNull(root); in DownloadCache()
205 if (!mRoot.isDirectory()) mRoot.mkdirs(); in initialize()
206 if (!mRoot.isDirectory()) { in initialize()
207 throw new RuntimeException("cannot create " + mRoot.getAbsolutePath()); in initialize()
235 for (File file : mRoot.listFiles()) { in onCreate()
321 tempFile = File.createTempFile("cache", ".tmp", mRoot); in run()
DPathMatcher.java26 private Node mRoot = new Node(); field in PathMatcher
29 mRoot = new Node(); in PathMatcher()
34 Node current = mRoot; in add()
44 Node current = mRoot; in match()
/packages/apps/Gallery2/src/com/android/gallery3d/util/
DProfileData.java48 private Node mRoot; field in ProfileData
55 mRoot = new Node(null, -1); // The id of the root node is unused. in ProfileData()
60 mRoot = new Node(null, -1); in reset()
80 Node node = mRoot; in addSample()
113 writeAllStacks(mRoot, 0); in dumpToFile()
/packages/apps/Mms/src/com/android/mms/dom/smil/
DSmilPlayer.java83 private ElementTime mRoot; field in SmilPlayer
301 mRoot = root; in init()
302 mAllEntries = getTimeline(mRoot, 0, Long.MAX_VALUE); in init()
303 mMediaTimeUpdatedEvent = ((DocumentEvent) mRoot).createEvent("Event"); in init()
450 ((EventTarget) mRoot).dispatchEvent(mMediaTimeUpdatedEvent); in waitForEntry()