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

1 2 3 4 5

  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
Relation.java 40 private final String mKind;
44 mKind = kind;
53 return mKind;
124 if (mKind != null ? !mKind.equals(relation.mKind) : relation.mKind != null) {
133 int result = mKind != null ? mKind.hashCode() : 0;
  /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;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
EventDataItem.java 45 if (!(t instanceof EventDataItem) || mKind == null || t.getDataKind() == null) {
52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
56 } else if (getKindTypeColumn(mKind) == Event.TYPE_CUSTOM &&
RelationDataItem.java 45 if (!(t instanceof RelationDataItem) || mKind == null || t.getDataKind() == null) {
52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
56 } else if (getKindTypeColumn(mKind) == Relation.TYPE_CUSTOM &&
DataItem.java 49 protected DataKind mKind;
172 mKind = kind;
176 return mKind;
199 mKind = thatKind;
203 mKind.maxLinesForDisplay = Math.max(thisKind.maxLinesForDisplay,
229 if (mKind == null || t.getDataKind() == null) {
232 return MoreContactUtils.shouldCollapse(getMimeType(), buildDataString(context, mKind),
ImDataItem.java 88 if (!(t instanceof ImDataItem) || mKind == null || t.getDataKind() == null) {
  /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/apps/Contacts/src/com/android/contacts/editor/
KindSectionView.java 70 private DataKind mKind;
190 mKind = kind;
220 boolean hasEntries = mState.hasMimeEntries(mKind.mimeType);
223 for (ValuesDelta entry : mState.getMimeEntries(mKind.mimeType)) {
241 final int layoutResId = EditorUiUtils.getLayoutResourceId(mKind.mimeType);
247 layoutResId + " for MIME type " + mKind.mimeType +
260 editor.setValues(mKind, entry, mState, mReadOnly, mViewIdGenerator);
272 final int fieldCount = mKind.fieldList.size();
274 final String column = mKind.fieldList.get(i).column;
305 } else if (mKind == null)
    [all...]
LabeledEditorView.java 75 private DataKind mKind;
312 return mKind;
394 setValues(mKind, mEntry, mState, mReadOnly, mViewIdGenerator);
405 mKind = kind;
462 RawContactModifier.getValidTypes(mState, mKind, null);
472 mEntry.put(mKind.typeColumn, mType.rawValue);
537 mEntry.put(mKind.typeColumn, mType.rawValue);
602 addAll(RawContactModifier.getValidTypes(mState, mKind, mType));
GroupMembershipView.java 145 private DataKind mKind;
180 mKind = kind;
377 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) {
  /external/doclava/src/com/google/doclava/
TagInfo.java 30 private String mKind;
36 mKind = k;
49 return mKind;
57 mKind = kind;
MemberInfo.java 39 mKind = kind;
163 return mKind;
185 String mKind;
  /frameworks/wilhelm/src/
ThreadPool.h 42 ClosureKind mKind;
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
AsyncListUtilTest.java 262 final private String mKind;
265 this.mKind = kind;
288 assertTrue("unexpected " + mKind + " @" + position, mExpectedPositions.get(position));
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 57 private final DataKind mKind;
80 mKind = kind;
292 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 519 if (mType.getElement().mKind != Element.DataKind.PIXEL_A) {
521 mType.getElement().mKind + ", type " +
528 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
531 mType.getElement().mKind + ", type " +
538 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGB) ||
541 mType.getElement().mKind + ", type " +
548 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
551 mType.getElement().mKind + ", type " +
    [all...]
Element.java 70 DataKind mKind;
307 return mKind;
725 mKind = DataKind.USER;
748 mKind = dk;
762 return mRS.nIncElementCreate(mType.mID, mKind.mID, mNormalized, mVectorSize);
902 // 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/base/rs/java/android/renderscript/
Element.java 63 DataKind mKind;
303 return mKind;
804 mKind = DataKind.USER;
827 mKind = dk;
840 // we will pack mType; mKind; mNormalized; mVectorSize; NumSubElements
855 mKind = dk;
    [all...]
Allocation.java 566 if (mType.getElement().mKind != Element.DataKind.PIXEL_A) {
568 mType.getElement().mKind + ", type " +
575 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
578 mType.getElement().mKind + ", type " +
585 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGB) ||
588 mType.getElement().mKind + ", type " +
595 if ((mType.getElement().mKind != Element.DataKind.PIXEL_RGBA) ||
598 mType.getElement().mKind + ", type " +
    [all...]
  /frameworks/rs/api/
Specification.h 285 TypeKind mKind; // The kind of type specification
287 // If mKind is SIMPLE:
290 // If mKind is STRUCT:
296 // If mKind is ENUM:
304 TypeKind getKind() const { return mKind; }

Completed in 5502 milliseconds

1 2 3 4 5