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

1 2

  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
Field.java 40 case Cursor.FIELD_TYPE_STRING:
58 throw buildException(Cursor.FIELD_TYPE_STRING);
66 throw buildException(Cursor.FIELD_TYPE_STRING);
82 case Cursor.FIELD_TYPE_STRING:
117 super(pos, name, Cursor.FIELD_TYPE_STRING);
  /cts/tests/tests/proto/src/android/util/proto/cts/
ProtoOutputStreamStringTest.java 55 final long fieldFlags = ProtoOutputStream.FIELD_COUNT_SINGLE | ProtoOutputStream.FIELD_TYPE_STRING;
90 final long fieldFlags = ProtoOutputStream.FIELD_COUNT_SINGLE | ProtoOutputStream.FIELD_TYPE_STRING;
129 final long fieldFlags = ProtoOutputStream.FIELD_COUNT_SINGLE | ProtoOutputStream.FIELD_TYPE_STRING;
165 final long fieldFlags = ProtoOutputStream.FIELD_COUNT_REPEATED | ProtoOutputStream.FIELD_TYPE_STRING;
227 final long fieldFlags = ProtoOutputStream.FIELD_COUNT_REPEATED | ProtoOutputStream.FIELD_TYPE_STRING;
270 ProtoOutputStream.FIELD_COUNT_PACKED | ProtoOutputStream.FIELD_TYPE_STRING), "");
290 ProtoOutputStream.FIELD_COUNT_PACKED | ProtoOutputStream.FIELD_TYPE_STRING), "");
ProtoOutputStreamSwitchedWriteTest.java 264 switched.write(FIELD_TYPE_STRING | FIELD_COUNT_SINGLE | id, val);
265 typed.writeString(FIELD_TYPE_STRING | FIELD_COUNT_SINGLE | id, val);
287 switched.write(FIELD_TYPE_STRING | FIELD_COUNT_REPEATED | id, val);
288 typed.writeRepeatedString(FIELD_TYPE_STRING | FIELD_COUNT_REPEATED | id, val);
ProtoOutputStreamObjectTest.java 307 ProtoOutputStream.FIELD_COUNT_SINGLE | ProtoOutputStream.FIELD_TYPE_STRING),
    [all...]
  /cts/tests/tests/content/jni/
NativeCursorWindow.c 52 FIELD_TYPE_STRING = 3,
91 fieldSlot->type = isBlob ? FIELD_TYPE_BLOB : FIELD_TYPE_STRING;
  /frameworks/base/core/java/android/database/
Cursor.java 50 static final int FIELD_TYPE_STRING = 3;
327 * <li>{@link #FIELD_TYPE_STRING}</li>
AbstractWindowedCursor.java 109 return getType(columnIndex) == Cursor.FIELD_TYPE_STRING;
AbstractCursor.java 110 return FIELD_TYPE_STRING;
CursorWindow.java 339 * has type {@link Cursor#FIELD_TYPE_STRING} or {@link Cursor#FIELD_TYPE_NULL}.
343 * @return True if the field has type {@link Cursor#FIELD_TYPE_STRING}
350 return type == Cursor.FIELD_TYPE_STRING || type == Cursor.FIELD_TYPE_NULL;
361 * <li>{@link Cursor#FIELD_TYPE_STRING}</li>
388 * <li>If the field is of type {@link Cursor#FIELD_TYPE_STRING}, then the result
416 * <li>If the field is of type {@link Cursor#FIELD_TYPE_STRING}, then the result
454 * <li>If the field is of type {@link Cursor#FIELD_TYPE_STRING}, then the buffer
493 * <li>If the field is of type {@link Cursor#FIELD_TYPE_STRING}, then the result
525 * <li>If the field is of type {@link Cursor#FIELD_TYPE_STRING}, then the result
DatabaseUtils.java 226 * <li>{@link Cursor#FIELD_TYPE_STRING}</li>
246 return Cursor.FIELD_TYPE_STRING;
301 case Cursor.FIELD_TYPE_STRING: {
    [all...]
  /frameworks/support/content/src/android/support/content/
InMemoryCursor.java 117 mStrings = new String[mRowCount * mColumnTypeCount[FIELD_TYPE_STRING]];
141 case FIELD_TYPE_STRING:
215 return mStrings[getCellPosition(getPosition(), column, FIELD_TYPE_STRING)];
228 case FIELD_TYPE_STRING:
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
PaginatedCursor.java 93 case Cursor.FIELD_TYPE_STRING:
143 case Cursor.FIELD_TYPE_STRING:
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/
DeviceEvent.java 313 .addField(EventTableConstants.SENDER, Cursor.FIELD_TYPE_STRING)
314 .addField(EventTableConstants.TYPE, Cursor.FIELD_TYPE_STRING)
316 .addField(EventTableConstants.EXTRAS, Cursor.FIELD_TYPE_STRING)
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailMessageCursor.java 119 return FIELD_TYPE_STRING;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhoneLookupWithStarPrefix.java 142 case Cursor.FIELD_TYPE_STRING:
  /frameworks/base/core/jni/
android_database_CursorWindow.cpp 205 if (type == CursorWindow::FIELD_TYPE_BLOB || type == CursorWindow::FIELD_TYPE_STRING) {
244 if (type == CursorWindow::FIELD_TYPE_STRING) {
340 if (type == CursorWindow::FIELD_TYPE_STRING) {
381 } else if (type == CursorWindow::FIELD_TYPE_STRING) {
412 } else if (type == CursorWindow::FIELD_TYPE_STRING) {
  /frameworks/base/libs/androidfw/include/androidfw/
CursorWindow.h 62 FIELD_TYPE_STRING = 3,
  /frameworks/support/content/tests/java/android/support/content/
TestContentProvider.java 221 * <li>{@link Cursor#FIELD_TYPE_STRING}</li>
237 return Cursor.FIELD_TYPE_STRING;
314 case Cursor.FIELD_TYPE_STRING:
  /frameworks/base/tools/streaming_proto/
main.cpp 35 const uint64_t FIELD_TYPE_STRING = 14L << FIELD_TYPE_SHIFT;
217 result |= FIELD_TYPE_STRING;
  /frameworks/base/core/java/android/util/proto/
ProtoOutputStream.java 143 public static final long FIELD_TYPE_STRING = 14L << FIELD_TYPE_SHIFT;
    [all...]
  /frameworks/base/libs/androidfw/
CursorWindow.cpp 284 return putBlobOrString(row, column, value, sizeIncludingNull, FIELD_TYPE_STRING);
  /packages/apps/TimeZoneData/src/main/com/android/timezone/data/
TimeZoneRulesDataProvider.java 192 return Cursor.FIELD_TYPE_STRING;
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 623 case Cursor.FIELD_TYPE_STRING:
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/wear/
WearPackageInstallerService.java 439 && Cursor.FIELD_TYPE_STRING == permCursor.getType(0)
  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnection.java     [all...]

Completed in 1038 milliseconds

1 2