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

1 2

  /frameworks/rs/
rsComponent.cpp 31 mKind = dk;
42 switch (mKind) {
65 rsAssert(mKind != RS_KIND_INVALID);
76 rsAssert(mKind == RS_KIND_PIXEL_RGB);
82 rsAssert(mKind == RS_KIND_PIXEL_RGBA);
88 rsAssert(mKind == RS_KIND_PIXEL_RGBA);
95 rsAssert(mKind == RS_KIND_USER);
101 rsAssert(mKind == RS_KIND_USER);
107 rsAssert(mKind == RS_KIND_USER);
123 rsAssert(mKind == RS_KIND_USER)
    [all...]
rsComponent.h 39 RsDataKind getKind() const {return mKind;}
55 RsDataKind mKind;
  /frameworks/support/renderscript/v8/rs_support/
rsComponent.cpp 31 mKind = dk;
42 switch (mKind) {
65 rsAssert(mKind != RS_KIND_INVALID);
76 rsAssert(mKind == RS_KIND_PIXEL_RGB);
82 rsAssert(mKind == RS_KIND_PIXEL_RGBA);
88 rsAssert(mKind == RS_KIND_PIXEL_RGBA);
95 rsAssert(mKind == RS_KIND_USER);
101 rsAssert(mKind == RS_KIND_USER);
107 rsAssert(mKind == RS_KIND_USER);
123 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;
129 return mKind;
147 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)) {
190 view = mInflater.inflate(mKind.editorLayoutResourceId, mEditors, false);
194 mKind.editorLayoutResourceId + " for MIME type " + mKind.mimeType +
203 editor.setValues(mKind, entry, mState, mReadOnly, mViewIdGenerator);
215 final int fieldCount = mKind.fieldList.size();
217 final String column = mKind.fieldList.get(i).column
    [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 139 private DataKind mKind;
174 mKind = kind;
373 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/java/src/com/android/inputmethod/latin/
SuggestedWords.java 133 public final int mKind; // one of the KIND_* constants above
142 mKind = kind;
AutoCorrection.java 87 if (suggestion.mKind == SuggestedWordInfo.KIND_WHITELIST) return true;
  /frameworks/wilhelm/src/
ThreadPool.h 42 ClosureKind mKind;
ThreadPool.c 37 ClosureKind kind = closure.mKind;
259 closure->mKind = kind;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HeapSegment.java 115 private int mKind;
197 return mKind;
201 this.mKind = kind;
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 54 private final DataKind mKind;
74 mKind = item.getDataKind();
269 final String resourcePackageName = mKind.resourcePackageName;
  /frameworks/av/media/libstagefright/include/
AVIExtractor.h 68 } mKind;
  /frameworks/base/graphics/java/android/renderscript/
Allocation.java 416 if (mType.getElement().mKind != Element.DataKind.PIXEL_A) {
418 mType.getElement().mKind + ", type " +
425 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
428 mType.getElement().mKind + ", type " +
435 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGB) ||
438 mType.getElement().mKind + ", type " +
445 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
448 mType.getElement().mKind + ", type " +
    [all...]
Element.java 60 DataKind mKind;
290 return mKind;
756 mKind = DataKind.USER;
779 mKind = dk;
792 // we will pack mType; mKind; mNormalized; mVectorSize; NumSubElements
807 mKind = dk;
970 // Ignore mKind because it is allowed to be different (user vs. pixel).
    [all...]
  /frameworks/rs/cpp/
Element.h 86 return mKind;
196 RsDataKind mKind;
Element.cpp 162 mKind = RS_KIND_USER;
242 mKind = dk;
259 // we will pack mType; mKind; mNormalized; mVectorSize; NumSubElements
274 mKind = dk;
368 // Ignore mKind because it is allowed to be different (user vs. pixel).
  /frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
Allocation.java 308 if (mType.getElement().mKind != Element.DataKind.PIXEL_A) {
310 mType.getElement().mKind + ", type " +
317 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
320 mType.getElement().mKind + ", type " +
327 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGB) ||
330 mType.getElement().mKind + ", type " +
337 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
340 mType.getElement().mKind + ", type " +
    [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...]

Completed in 888 milliseconds

1 2