HomeSort by relevance Sort by last modified time
    Searched refs:mContents (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /frameworks/base/core/java/android/util/
FastImmutableArraySet.java 32 T[] mContents;
35 mContents = contents;
42 it = new FastIterator<T>(mContents);
52 return mContents.length;
56 private final T[] mContents;
60 mContents = contents;
65 return mIndex != mContents.length;
70 return mContents[mIndex++];
  /external/replicaisland/src/com/replica/replicaisland/
FixedSizeArray.java 34 private final T[] mContents;
44 mContents = (T[])new Object[size];
54 mContents = (T[])new Object[size];
67 assert mCount < mContents.length : "Array exhausted!";
68 if (mCount < mContents.length) {
69 mContents[mCount] = object;
97 if (x + 1 < mContents.length && x + 1 < mCount) {
98 mContents[x] = mContents[x + 1];
100 mContents[x] = null
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryAddWordFragment.java 50 private UserDictionaryAddWordContents mContents;
59 // Keep the instance so that we remember mContents when configuration changes (eg rotation)
68 // If we have a non-null mContents object, it's the old value before a configuration
70 if (null == mContents) {
71 mContents = new UserDictionaryAddWordContents(mRootView, getArguments());
73 // We create a new mContents object to account for the new situation : a word has
76 // be updated, so the mContents object needs to switch to EDIT mode if it was in
78 mContents = new UserDictionaryAddWordContents(mRootView,
79 mContents /* oldInstanceToBeEdited */);
82 getActivity(), mContents.getCurrentUserDictionaryLocale()))
    [all...]
UserDictionaryAddWordActivity.java 38 private UserDictionaryAddWordContents mContents;
70 mContents = new UserDictionaryAddWordContents(getWindow().getDecorView(), args);
75 mContents.saveStateIntoBundle(outState);
102 final int resultCode = mContents.apply(this, parameters);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryAddWordFragment.java 55 private UserDictionaryAddWordContents mContents;
64 // Keep the instance so that we remember mContents when configuration changes (eg rotation)
73 // If we have a non-null mContents object, it's the old value before a configuration
75 if (null == mContents) {
76 mContents = new UserDictionaryAddWordContents(mRootView, getArguments());
78 // We create a new mContents object to account for the new situation : a word has
81 // be updated, so the mContents object needs to switch to EDIT mode if it was in
83 mContents = new UserDictionaryAddWordContents(mRootView,
84 mContents /* oldInstanceToBeEdited */);
87 getActivity(), mContents.getCurrentUserDictionaryLocale()))
    [all...]
  /platform_testing/tests/jank/uibench/src/com/android/uibench/janktests/
UiBenchJankTests.java 59 mHelper.mContents = mDevice.wait(Until.findObject(
61 Assert.assertNotNull("Dialog List View isn't found", mHelper.mContents);
68 mHelper.flingUpDown(mHelper.mContents, mHelper.SHORT_TIMEOUT, 1);
127 mHelper.mContents = mDevice.wait(Until.findObject(
129 Assert.assertNotNull("Trivial ListView isn't found in General", mHelper.mContents);
136 mHelper.flingUpDown(mHelper.mContents, mHelper.SHORT_TIMEOUT, 2);
143 mHelper.mContents = mDevice.wait(Until.findObject(
146 mHelper.mContents);
153 mHelper.flingUpDown(mHelper.mContents, mHelper.SHORT_TIMEOUT, 2);
160 mHelper.mContents = mDevice.wait(Until.findObject
    [all...]
UiBenchTextJankTests.java 73 mHelper.mContents = mDevice.wait(Until.findObject(
76 mHelper.mContents);
83 mHelper.flingUpDown(mHelper.mContents, mHelper.SHORT_TIMEOUT, 3);
90 mHelper.mContents = mDevice.wait(Until.findObject(
93 mHelper.mContents);
100 mHelper.flingUpDown(mHelper.mContents, mHelper.SHORT_TIMEOUT, 3);
UiBenchRenderingJankTests.java 73 mHelper.mContents = mDevice.wait(Until.findObject(
75 Assert.assertNotNull("Shadow Grid list isn't found", mHelper.mContents);
82 mHelper.flingUpDown(mHelper.mContents, mHelper.SHORT_TIMEOUT, 1);
UiBenchWebView.java 57 mHelper.mContents = mDevice.wait(Until.findObject(
65 mHelper.flingUpDown(mHelper.mContents, mHelper.SHORT_TIMEOUT, 1);
UiBenchJankTestsHelper.java 44 protected UiObject2 mContents;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogMotion.java 42 private final ViewGroup mContents; // volume rows + zen footer
57 mContents = contents;
167 mContents.setTranslationY(v + -mDialogView.getTranslationY());
173 mContents.setAlpha(0);
174 mContents.animate()
203 mContents.animate().cancel();
217 mContents.setTranslationY(-mDialogView.getTranslationY());
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
TraceviewEditor.java 72 private Composite mContents;
261 mContents = new Composite(mParent, SWT.NONE);
263 Display display = mContents.getDisplay();
272 mContents.setLayout(gridLayout);
278 SashForm sashForm1 = new SashForm(mContents, SWT.VERTICAL);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationActivity.java 183 mSavedPresentationContents.put(displayId, presentation.mContents);
389 presentation.mContents : null;
468 final DemoPresentationContents mContents;
473 mContents = contents;
480 mContents.displayModeId = modeId;
501 final int photo = mContents.photo;
520 drawable.setColors(mContents.colors);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/backup/
BackupTestActivity.java 326 private final String mContents;
330 mContents = contents;
345 view.setText(mName + " : " + mContents);
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/
lint-api-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.4.0/
lint-api-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.4.2/
lint-api-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.5.0/
lint-api-22.5.0.jar 
  /prebuilts/devtools/tools/lib/
lint-api.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.5.1/
lint-api-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.5.3/
lint-api-22.5.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.7.0/
lint-api-22.7.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.7.1/
lint-api-22.7.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.7.3/
lint-api-22.7.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.8.0/
lint-api-22.8.0.jar 

Completed in 897 milliseconds

1 2 3 4