Home
last modified time | relevance | path

Searched refs:typeLength (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java826 int typeLength = buffer.get() & 0xFF; in parse() local
830 if (inChunk && typeLength != 0) { in parse()
835 type = (typeLength > 0 ? new byte[typeLength] : EMPTY_BYTE_ARRAY); in parse()
847 if (typeLength == 0 && tnf != NdefRecord.TNF_UNKNOWN) { in parse()
1003 int typeLength = in.readInt();
1004 byte[] type = new byte[typeLength];
/aosp14/frameworks/base/core/java/android/content/
H A DClipDescription.java228 final int typeLength = desiredType.length(); in compareMimeTypes() local
229 if (typeLength == 3 && desiredType.equals("*/*")) { in compareMimeTypes()
235 if (typeLength == slashpos+2 && desiredType.charAt(slashpos+1) == '*') { in compareMimeTypes()
H A DIntentFilter.java3009 final int typeLength = type.length(); in findMimeType() local
3010 if (typeLength == 3 && type.equals("*/*")) { in findMimeType()
3024 if (typeLength == slashpos+2 && type.charAt(slashpos+1) == '*') { in findMimeType()
/aosp14/frameworks/base/core/java/android/app/slice/
H A DSliceQuery.java178 final int typeLength = desiredType.length(); in compareTypes() local
179 if (typeLength == 3 && desiredType.equals("*/*")) { in compareTypes()