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

1 2 3

  /frameworks/support/room/common/src/main/java/android/arch/persistence/room/
ColumnInfo.java 51 * {@link #INTEGER}, {@link #REAL}, or {@link #BLOB}.
110 int BLOB = 5;
115 @IntDef({UNDEFINED, TEXT, INTEGER, REAL, BLOB})
  /libcore/ojluni/src/main/java/java/sql/
Types.java 224 * <code>BLOB</code>.
227 public final static int BLOB = 2004;
  /external/harfbuzz_ng/src/
hb-blob.cc 68 static bool _try_writable (hb_blob_t *blob);
71 _hb_blob_destroy_user_data (hb_blob_t *blob)
73 if (blob->destroy) {
74 blob->destroy (blob->user_data);
75 blob->user_data = NULL;
76 blob->destroy = NULL;
82 * @data: Pointer to blob data.
88 * Creates a new "blob" object wrapping @data. The @mode parameter is used
91 * Return value: New blob, or the empty blob if something failed or if @length i
103 hb_blob_t *blob; local
156 hb_blob_t *blob; local
    [all...]
  /frameworks/base/core/java/android/hardware/
HardwareBuffer.java 44 @IntDef({RGBA_8888, RGBA_FP16, RGBA_1010102, RGBX_8888, RGB_888, RGB_565, BLOB})
61 public static final int BLOB = 0x21;
113 * {@link #RGBX_8888}, {@link #RGB_565}, {@link #RGB_888}, {@link #RGBA_1010102}, {@link #BLOB}
141 if (format == BLOB && height != 1) {
142 throw new IllegalArgumentException("Height must be 1 when using the BLOB format");
201 * {@link #RGBX_8888}, {@link #RGB_565}, {@link #RGB_888}, {@link #RGBA_1010102}, {@link #BLOB}.
331 case BLOB:
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiPlatformDxe/
QemuFwCfgAcpi.c 34 // blob. This is the ordering / search
36 UINTN Size; // The number of bytes in this blob.
37 UINT8 *Base; // Pointer to the blob data.
38 BOOLEAN HostsOnlyTableData; // TRUE iff the blob has been found to
41 } BLOB;
66 CONST BLOB *Blob;
68 Blob = UserStruct;
69 return AsciiStrCmp (StandaloneKey, (CONST CHAR8 *)Blob->File);
94 CONST BLOB *Blob1;
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/solver/types/
ByteArrayColumnTypeAdapter.kt 27 typeAffinity = SQLTypeAffinity.BLOB) {
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 33 assertEquals(BLOB, 2004);
  /frameworks/support/room/runtime/src/main/java/android/arch/persistence/room/
RoomSQLiteQuery.java 175 case BLOB:
207 mBindingTypes[index] = BLOB;
243 private static final int BLOB = 5;
246 @IntDef({NULL, LONG, DOUBLE, STRING, BLOB})
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/parser/
SqlParser.kt 178 BLOB;
186 BLOB -> listOf(typeUtils.getArrayType(
204 ColumnInfo.BLOB -> BLOB
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pnrpns.h 48 BLOB blobPayload;
nspapi.h 22 } BLOB,*LPBLOB;
232 BLOB ServiceSpecificInfo;
245 BLOB ServiceSpecificInfo;
wtypesbase.h 385 } BLOB;
winsock2.h 592 } BLOB,*LPBLOB;
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
HardwareBufferTest.java 119 buffer = HardwareBuffer.create(2, 1, HardwareBuffer.BLOB, 1,
121 assertEquals(HardwareBuffer.BLOB, buffer.getFormat());
158 buffer = HardwareBuffer.create(2, 2, HardwareBuffer.BLOB, 1,
  /hardware/interfaces/graphics/common/1.0/
types.hal 134 * BLOB is used to carry task-specific data which does not have a standard
144 * The mapping of the dataspace to buffer contents for BLOB is as
154 BLOB = 0x21,
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/vo/
RelationCollector.kt 109 SQLTypeAffinity.BLOB -> "getBlob"
242 SQLTypeAffinity.BLOB -> types.getArrayType(types.getPrimitiveType(TypeKind.BYTE))
254 SQLTypeAffinity.BLOB -> ArrayTypeName.of(TypeName.BYTE)
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraMetadataTest.java 530 BLOB
560 AvailableFormat.BLOB
610 AvailableFormat.BLOB
894 final int BLOB = 0x21;
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseDatabaseHelperUpgradeTest.java 37 protected static final String BLOB = "BLOB";
  /prebuilts/maven_repo/android/android/arch/persistence/room/common/1.0.0-alpha10/
common-1.0.0-alpha10.jar 
  /frameworks/av/media/libstagefright/codec2/include/
C2Param.h 699 BLOB, ///< blob. Blobs have no sub-elements and can be thought of as byte arrays;
785 inline static Type getType(uint8_t*) { return BLOB; }
    [all...]
  /frameworks/support/room/compiler/src/test/kotlin/android/arch/persistence/room/processor/
FieldProcessorTest.kt 203 SQLTypeAffinity.BLOB
  /packages/providers/ContactsProvider/tests/assets/upgradeTest/
contacts2_1108.sql 55 CREATE TABLE metadata_sync_state (_id INTEGER PRIMARY KEY AUTOINCREMENT,account_id INTEGER NOT NULL,state BLOB);
106 CREATE TABLE 'search_index_segments'(blockid INTEGER PRIMARY KEY, block BLOB);
107 CREATE TABLE 'search_index_segdir'(level INTEGER,idx INTEGER,start_block INTEGER,leaves_end_block INTEGER,end_block INTEGER,root BLOB,PRIMARY KEY(level, idx));
108 CREATE TABLE 'search_index_docsize'(docid INTEGER PRIMARY KEY, size BLOB);
109 CREATE TABLE 'search_index_stat'(id INTEGER PRIMARY KEY, value BLOB);
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 27 import java.sql.Blob;
64 " DT DATETIME, " + " TBlob TINYBLOB, " + " BlobVal BLOB, "
    [all...]
  /frameworks/av/media/libstagefright/codec2/tests/
C2Param_test.cpp 40 case FD::BLOB: *os << "u8"; break;
134 { FD::BLOB, 100, "blob", 60, 1 },
136 { FD::BLOB, 100, "y-n", 260, 1 } };
170 C2FieldDescriptor(&((C2TestStruct_A*)(nullptr))->mBlob, "blob"),
185 C2FieldDescriptor((C2TestStruct_A*)0, &C2TestStruct_A::mBlob, "blob"),
216 C2FIELD(mBlob, "blob")
245 C2FIELD(mBlob, "blob")
269 std::is_same<T, uint8_t>::value ? FD::BLOB :
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 59 CREATE TABLE photos (_id INTEGER PRIMARY KEY AUTOINCREMENT,exists_on_server INTEGER NOT NULL DEFAULT 0,person INTEGER REFERENCES people(_id), local_version TEXT,data BLOB,sync_error TEXT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,UNIQUE(person) );

Completed in 754 milliseconds

1 2 3