/frameworks/rs/ |
rsComponent.cpp | 31 mKind = dk; 42 switch (mKind) { 71 rsAssert(mKind != RS_KIND_INVALID); 82 rsAssert(mKind == RS_KIND_PIXEL_RGB); 88 rsAssert(mKind == RS_KIND_PIXEL_RGBA); 94 rsAssert(mKind == RS_KIND_PIXEL_RGBA); 101 rsAssert(mKind == RS_KIND_USER); 107 rsAssert(mKind == RS_KIND_USER); 113 rsAssert(mKind == RS_KIND_USER); 129 rsAssert(mKind == RS_KIND_USER) [all...] |
rsComponent.h | 39 RsDataKind getKind() const {return mKind;} 55 RsDataKind mKind;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
AndroidClasspathContainer.java | 32 private final int mKind; 47 mKind = kind; 62 return mKind;
|
/external/doclava/src/com/google/doclava/ |
TagInfo.java | 24 private String mKind; 30 mKind = k; 43 return mKind; 51 mKind = kind;
|
MemberInfo.java | 39 mKind = kind; 141 return mKind; 159 String mKind;
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
KindSectionView.java | 52 private DataKind mKind; 134 mKind = kind; 168 boolean hasEntries = mState.hasMimeEntries(mKind.mimeType); 171 for (ValuesDelta entry : mState.getMimeEntries(mKind.mimeType)) { 189 final int layoutResId = EditorUiUtils.getLayoutResourceId(mKind.mimeType); 195 layoutResId + " for MIME type " + mKind.mimeType + 204 editor.setValues(mKind, entry, mState, mReadOnly, mViewIdGenerator); 216 final int fieldCount = mKind.fieldList.size(); 218 final String column = mKind.fieldList.get(i).column; 230 if (!mReadOnly && (mKind.typeOverallMax != 1)) [all...] |
LabeledEditorView.java | 76 private DataKind mKind; 262 return mKind; 336 setValues(mKind, mEntry, mState, mReadOnly, mViewIdGenerator); 346 mKind = kind; 400 RawContactModifier.getValidTypes(mState, mKind, null); 410 mEntry.put(mKind.typeColumn, mType.rawValue); 475 mEntry.put(mKind.typeColumn, mType.rawValue); 536 addAll(RawContactModifier.getValidTypes(mState, mKind, mType));
|
GroupMembershipView.java | 140 private DataKind mKind; 175 mKind = kind; 372 ValuesDelta entry = RawContactModifier.insertChild(mState, mKind);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
PathMatcher.java | 74 private int mKind = NOT_FOUND; 95 mKind = kind; 99 return mKind;
|
ClusterAlbumSet.java | 32 private int mKind; 41 mKind = kind; 83 switch (mKind) { 107 if (mKind == ClusterSource.CLUSTER_ALBUMSET_TAG) { 109 } else if (mKind == ClusterSource.CLUSTER_ALBUMSET_SIZE) {
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
SuggestedWordsTests.java | 57 assertEquals(SuggestedWordInfo.KIND_TYPED, words.getInfo(0).mKind); 59 assertEquals(SuggestedWordInfo.KIND_CORRECTION, words.getInfo(1).mKind); 61 assertEquals(SuggestedWordInfo.KIND_CORRECTION, words.getInfo(5).mKind); 66 assertEquals(SuggestedWordInfo.KIND_CORRECTION, wordsWithoutTyped.getInfo(0).mKind);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
SuggestedWords.java | 193 public final int mKind; // one of the KIND_* constants above 219 mKind = kind; 227 return (KIND_CORRECTION == mKind && NOT_AN_INDEX != mIndexOfTouchPointOfSecondWord); 283 if (SuggestedWordInfo.KIND_TYPED != info.mKind) { 305 newSuggestions.add(new SuggestedWordInfo(lastWord, info.mScore, info.mKind,
|
Suggest.java | 271 } else if (SuggestedWordInfo.KIND_WHITELIST != suggestionsSet.first().mKind) { 293 || SuggestedWordInfo.KIND_SHORTCUT == suggestionsSet.first().mKind) { 480 return new SuggestedWordInfo(sb.toString(), wordInfo.mScore, wordInfo.mKind,
|
/frameworks/wilhelm/src/ |
ThreadPool.h | 42 ClosureKind mKind;
|
ThreadPool.c | 37 ClosureKind kind = closure.mKind; 259 closure->mKind = kind;
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
DataAction.java | 56 private final DataKind mKind; 76 mKind = kind; 276 final String resourcePackageName = mKind.resourcePackageName;
|
/frameworks/av/media/libstagefright/include/ |
AVIExtractor.h | 68 } mKind;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
AutoCorrectionUtils.java | 86 if (suggestion.mKind == SuggestedWordInfo.KIND_WHITELIST) return true;
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
Allocation.java | 401 if (mType.getElement().mKind != Element.DataKind.PIXEL_A) { 403 mType.getElement().mKind + ", type " + 410 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) || 413 mType.getElement().mKind + ", type " + 420 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGB) || 423 mType.getElement().mKind + ", type " + 430 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) || 433 mType.getElement().mKind + ", type " + [all...] |
Element.java | 70 DataKind mKind; 299 return mKind; 717 mKind = DataKind.USER; 740 mKind = dk; 900 // Ignore mKind because it is allowed to be different (user vs. pixel). [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
Allocation.java | 466 if (mType.getElement().mKind != Element.DataKind.PIXEL_A) { 468 mType.getElement().mKind + ", type " + 475 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) || 478 mType.getElement().mKind + ", type " + 485 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGB) || 488 mType.getElement().mKind + ", type " + 495 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) || 498 mType.getElement().mKind + ", type " + [all...] |
Element.java | 66 DataKind mKind; 297 return mKind; 770 mKind = DataKind.USER; 793 mKind = dk; 806 // we will pack mType; mKind; mNormalized; mVectorSize; NumSubElements 821 mKind = dk; 985 // Ignore mKind because it is allowed to be different (user vs. pixel). [all...] |
/frameworks/av/media/libstagefright/ |
AVIExtractor.cpp | 658 track->mKind = kind; 676 if (track->mKind == Track::OTHER) { 681 bool isVideo = (track->mKind == Track::VIDEO); 799 if (!IsCorrectChunkType(-1, track->mKind, chunkType)) { 803 if (track->mKind == Track::OTHER) { 1137 if (!IsCorrectChunkType(trackIndex, track.mKind, chunkType)) { [all...] |
/frameworks/rs/cpp/ |
Element.cpp | 180 mKind = RS_KIND_USER; 260 mKind = dk; 350 // Ignore mKind because it is allowed to be different (user vs. pixel).
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
JsonUtils.java | 105 jsonWriter.name("kind").value(wordInfo.mKind);
|