HomeSort by relevance Sort by last modified time
    Searched refs:mRoot (Results 1 - 25 of 36) 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...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
FusionDictionaryTests.java 37 assertNull(FusionDictionary.findWordInTree(dict.mRoot, "aaa"));
38 assertNotNull(FusionDictionary.findWordInTree(dict.mRoot, "abc"));
41 assertNull(FusionDictionary.findWordInTree(dict.mRoot, "aaa"));
42 assertNotNull(FusionDictionary.findWordInTree(dict.mRoot, "aa"));
46 assertNull(FusionDictionary.findWordInTree(dict.mRoot, "ba"));
47 assertNotNull(FusionDictionary.findWordInTree(dict.mRoot, "babcd"));
48 assertNotNull(FusionDictionary.findWordInTree(dict.mRoot, "bacde"));
  /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/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/tests/src/com/android/gallery3d/ui/
GLViewMock.java 24 GLRoot mRoot;
41 mRoot = root;
48 mRoot = null;
  /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;
  /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);
  /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);
  /packages/inputmethods/LatinIME/tools/dicttool/tests/com/android/inputmethod/latin/makedict/
BinaryDictInputOutputTest.java 42 final ArrayList<Node> result = BinaryDictInputOutput.flattenTree(dict.mRoot);
FusionDictionaryTest.java 75 final CharGroup cg = FusionDictionary.findWordInTree(dict.mRoot, word);
  /packages/apps/Browser/src/com/android/browser/
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...]
  /frameworks/rs/cpu_ref/
rsCpuScript.h 97 int (*mRoot)();
107 RootFunc_t mRoot;
rsCpuScript.cpp 94 mRoot = NULL;
166 mRoot = reinterpret_cast<int (*)()>(exec->getSymbolAddress("root"));
217 mRoot = (RootFunc_t) dlsym(mScriptSO, "root");
218 if (mRoot) {
219 //ALOGE("Found root(): %p", mRoot);
445 script->mHal.info.root = mRoot;
459 script->mHal.info.root = mRoot;
601 int ret = mRoot();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 333 public final Node mRoot;
336 mRoot = root;
420 CharGroup charGroup = findWordInTree(mRoot, word1);
422 final CharGroup charGroup2 = findWordInTree(mRoot, word2);
429 charGroup = findWordInTree(mRoot, word1);
458 Node currentNode = mRoot;
463 int nodeIndex = findIndexOfChar(mRoot, word[charIndex]);
661 return null != findWordInTree(mRoot, s);
720 return hasBigramsInternal(mRoot);
    [all...]
  /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) {
  /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.
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
SmartDialTrie.java 67 final Node mRoot = new Node();
114 Node current = mRoot;
152 putForPrefix(contact, mRoot, info, 0, true);
308 Node current = mRoot;
352 if (initialNode != this.mRoot) {
354 putForPrefix(contact, this.mRoot, info, i, false);
380 getAll(mRoot, result);
  /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) {
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Diff.java 124 final CharGroup word1 = FusionDictionary.findWordInTree(dict1.mRoot, word0.mWord);
153 final CharGroup word0 = FusionDictionary.findWordInTree(dict0.mRoot, word1.mWord);
Info.java 68 final CharGroup group = FusionDictionary.findWordInTree(dict.mRoot, word);
  /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);
  /frameworks/base/core/java/android/view/
FocusFinder.java 608 private ViewGroup mRoot;
612 mRoot = null;
616 mRoot = root;
657 mRoot.offsetDescendantRectToMyCoords(view, rect);

Completed in 1542 milliseconds

1 2