OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mContents
(Results
1 - 10
of
10
) sorted by null
/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
...]
/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++];
/packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryAddWordFragment.java
49
private UserDictionaryAddWordContents
mContents
;
58
// Keep the instance so that we remember
mContents
when configuration changes (eg rotation)
67
// If we have a non-null
mContents
object, it's the old value before a configuration
69
if (null ==
mContents
) {
70
mContents
= new UserDictionaryAddWordContents(mRootView, getArguments());
72
// We create a new
mContents
object to account for the new situation : a word has
75
// be updated, so the
mContents
object needs to switch to EDIT mode if it was in
77
mContents
= new UserDictionaryAddWordContents(mRootView,
78
mContents
/* oldInstanceToBeEdited */);
81
getActivity(),
mContents
.getCurrentUserDictionaryLocale()))
[
all
...]
UserDictionaryAddWordActivity.java
38
private UserDictionaryAddWordContents
mContents
;
67
mContents
= new UserDictionaryAddWordContents(getWindow().getDecorView(), args);
72
mContents
.saveStateIntoBundle(outState);
98
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
...]
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
WebViewFindApisTestBase.java
23
private AwContents
mContents
;
29
mContents
= loadContentsFromStringSync(WOODCHUCK);
36
return
mContents
;
84
mContents
.findAllAsync(searchString);
112
mContents
.findNext(forwards);
128
mContents
.clearMatches();
/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
179
mSavedPresentationContents.put(displayId, presentation.
mContents
);
397
final PresentationContents
mContents
;
401
mContents
= contents;
418
final int photo =
mContents
.photo;
437
drawable.setColors(
mContents
.colors);
/prebuilts/devtools/tools/lib/
lint-api.jar
/prebuilts/sdk/tools/lib/
lint_api.jar
Completed in 141 milliseconds