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

1 2

  /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;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
SuggestedWordsTests.java 49 assertEquals(SuggestedWordInfo.KIND_TYPED, words.getInfo(0).mKind);
51 assertEquals(SuggestedWordInfo.KIND_CORRECTION, words.getInfo(1).mKind);
53 assertEquals(SuggestedWordInfo.KIND_CORRECTION, words.getInfo(5).mKind);
58 assertEquals(SuggestedWordInfo.KIND_CORRECTION, wordsWithoutTyped.getInfo(0).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;
371 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) {
  /frameworks/wilhelm/src/
ThreadPool.h 42 ClosureKind mKind;
ThreadPool.c 37 ClosureKind kind = closure.mKind;
259 closure->mKind = kind;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SuggestedWords.java 143 public final int mKind; // one of the KIND_* constants above
152 mKind = kind;
211 if (SuggestedWordInfo.KIND_TYPED != info.mKind) {
AutoCorrection.java 88 if (suggestion.mKind == SuggestedWordInfo.KIND_WHITELIST) return true;
Suggest.java 222 } else if (SuggestedWordInfo.KIND_WHITELIST != suggestionsSet.first().mKind) {
422 return new SuggestedWordInfo(sb.toString(), wordInfo.mScore, wordInfo.mKind,
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 55 private final DataKind mKind;
75 mKind = kind;
270 final String resourcePackageName = mKind.resourcePackageName;
  /frameworks/av/media/libstagefright/include/
AVIExtractor.h 68 } mKind;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java 383 if (mType.getElement().mKind != Element.DataKind.PIXEL_A) {
385 mType.getElement().mKind + ", type " +
392 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
395 mType.getElement().mKind + ", type " +
402 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGB) ||
405 mType.getElement().mKind + ", type " +
412 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
415 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...]
ElementThunker.java 135 return mKind;
  /frameworks/base/graphics/java/android/renderscript/
Allocation.java 441 if (mType.getElement().mKind != Element.DataKind.PIXEL_A) {
443 mType.getElement().mKind + ", type " +
450 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
453 mType.getElement().mKind + ", type " +
460 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGB) ||
463 mType.getElement().mKind + ", type " +
470 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
473 mType.getElement().mKind + ", type " +
    [all...]
Element.java 66 DataKind mKind;
297 return mKind;
763 mKind = DataKind.USER;
786 mKind = dk;
799 // we will pack mType; mKind; mNormalized; mVectorSize; NumSubElements
814 mKind = dk;
978 // 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 159 mKind = RS_KIND_USER;
239 mKind = dk;
322 // Ignore mKind because it is allowed to be different (user vs. pixel).

Completed in 829 milliseconds

1 2