Searched defs:type (Results 176 - 200 of 434) sorted by path

1234567891011>>

/frameworks/base/graphics/java/android/renderscript/
H A DFileA3D.java46 * Specifies what renderscript object type is contained within
76 * object's type and also name and load the object itself if
102 * Returns the type of a renderscript object the index entry
104 * @return type of a renderscript object the index entry
158 IndexEntry(RenderScript rs, int index, int id, String name, EntryType type) { argument
163 mEntryType = type;
H A DRenderScript.java221 native int rsnElementCreate(int con, int type, int kind, boolean norm, int vecSize); argument
222 synchronized int nElementCreate(int type, int kind, boolean norm, int vecSize) { argument
224 return rsnElementCreate(mContext, type, kind, norm, vecSize);
254 native int rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer); argument
255 synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) { argument
257 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
259 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage); argument
260 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) { argument
262 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
264 native int rsnAllocationCubeCreateFromBitmap(int con, int type, in argument
265 nAllocationCubeCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) argument
269 rsnAllocationCreateBitmapRef(int con, int type, Bitmap bmp) argument
270 nAllocationCreateBitmapRef(int type, Bitmap bmp) argument
[all...]
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp351 nElementCreate(JNIEnv *_env, jobject _this, RsContext con, jint type, jint kind, jboolean norm, jint size) argument
353 LOG_API("nElementCreate, con(%p), type(%i), kind(%i), norm(%i), size(%i)", con, type, kind, norm, size);
354 return (jint)rsElementCreate(con, (RsDataType)type, (RsDataKind)kind, norm, size);
460 nAllocationCreateTyped(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mips, jint usage, jint pointer) argument
462 LOG_API("nAllocationCreateTyped, con(%p), type(%p), mip(%i), usage(%i), ptr(%p)", con, (RsElement)type, mips, usage, (void *)pointer);
463 return (jint) rsAllocationCreateTyped(con, (RsType)type, (RsAllocationMipmapControl)mips, (uint32_t)usage, (uint32_t)pointer);
526 nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage) argument
535 (RsType)type, (RsAllocationMipmapContro
542 nAllocationCubeCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage) argument
[all...]
/frameworks/base/include/androidfw/
H A DAssetDir.h61 * Get the type of a file (usually regular or directory).
109 void set(const String8& path, FileType type) { argument
111 mFileType = type;
118 void setFileType(FileType type) { mFileType = type; } argument
H A DAssetManager.h189 * Get the type of a file in the asset hierarchy. They will either
225 FileType type; member in struct:android::AssetManager::asset_path
H A DBackupHelpers.h31 int type; // BACKUP_HEADER_ENTITY_V1 member in struct:android::__anon1009
110 status_t ReadNextHeader(bool* done, int* type);
128 int type; member in union:android::BackupDataReader::__anon1010
H A DCursorWindow.h46 * FieldSlot per column, which has the size, offset, and type of the data for that field.
65 /* Opaque type that describes a field slot. */
68 int32_t type; member in struct:android::CursorWindow::FieldSlot
117 return fieldSlot->type;
188 const void* value, size_t size, int32_t type);
H A DInputTransport.h51 uint32_t type; member in struct:android::InputMessage::Header
H A DResourceTypes.h102 * The PNG chunk type is "npTc".
164 uint16_t type; member in struct:android::ResChunk_header
208 #define Res_MAKEID(package, type, entry) \
209 (((package+1)<<24) | (((type+1)&0xFF)<<16) | (entry&0xFFFF))
221 * Representation of a value in a resource, supplying type
285 // Where the unit type information is. This gives us 16 possible
338 * where pp is the package index, tt is the type index in that
339 * package, and eeee is the entry index in that type. The package
340 * and type values start at 1 for the first item, to help catch cases
759 * the names of entries or type identifier
1295 const char16_t* type; member in struct:android::ResTable::resource_name
[all...]
/frameworks/base/keystore/java/android/security/
H A DCredentials.java72 /** Data type for public keys. */
75 /** Data type for private keys. */
149 throw new IllegalArgumentException("Unknown type " + o.getType());
194 public void install(Context context, String type, byte[] value) { argument
197 intent.putExtra(type, value);
211 * Make sure every type is deleted. There can be all three types, so
225 * Make sure every certificate type is deleted. There can be two types,
/frameworks/base/libs/androidfw/
H A DBackupData.cpp124 header.type = tolel(BACKUP_HEADER_ENTITY_V1);
228 BackupDataReader::ReadNextHeader(bool* done, int* type) argument
252 if (type) {
253 *type = m_header.type;
257 m_header.type = fromlel(m_header.type);
258 switch (m_header.type)
288 ALOGD("Chunk header at %d has invalid type: 0x%08x",
289 (int)(m_pos - sizeof(m_header)), (int)m_header.type);
[all...]
H A DBackupHelpers.cpp584 // [ 156 : 1 ] link/file type
585 uint8_t type; local
587 type = '5'; // tar magic: '5' == directory
589 type = '0'; // tar magic: '0' == normal file
594 buf[156] = type;
1203 int type;
1208 err = reader.ReadNextHeader(&done, &type);
1217 if (type != BACKUP_HEADER_ENTITY_V1) {
1219 fprintf(stderr, "type=0x%08x expected 0x%08x\n", type, BACKUP_HEADER_ENTITY_V
[all...]
H A DCursorWindow.cpp282 const void* value, size_t size, int32_t type) {
299 fieldSlot->type = type;
315 fieldSlot->type = FIELD_TYPE_INTEGER;
330 fieldSlot->type = FIELD_TYPE_FLOAT;
345 fieldSlot->type = FIELD_TYPE_NULL;
281 putBlobOrString(uint32_t row, uint32_t column, const void* value, size_t size, int32_t type) argument
H A DInputDevice.cpp44 const String8& name, InputDeviceConfigurationFileType type) {
45 path.append(CONFIGURATION_FILE_DIR[type]);
53 path.append(CONFIGURATION_FILE_EXTENSION[type]);
58 InputDeviceConfigurationFileType type) {
66 type));
76 type));
83 return getInputDeviceConfigurationFilePathByName(deviceIdentifier.name, type);
87 const String8& name, InputDeviceConfigurationFileType type) {
92 appendInputDeviceConfigurationFileRelativePath(path, name, type);
107 appendInputDeviceConfigurationFileRelativePath(path, name, type);
43 appendInputDeviceConfigurationFileRelativePath(String8& path, const String8& name, InputDeviceConfigurationFileType type) argument
56 getInputDeviceConfigurationFilePathByDeviceIdentifier( const InputDeviceIdentifier& deviceIdentifier, InputDeviceConfigurationFileType type) argument
86 getInputDeviceConfigurationFilePathByName( const String8& name, InputDeviceConfigurationFileType type) argument
[all...]
H A DKeyCharacterMap.cpp688 if (keywordToken == "type") {
734 ALOGE("%s: Keyboard layout missing required keyboard 'type' declaration.",
741 ALOGE("%s: Base keyboard layout must specify a keyboard 'type' other than 'OVERLAY'.",
748 "'type OVERLAY' declaration.",
759 ALOGE("%s: Duplicate keyboard 'type' declaration.",
764 KeyboardType type; local
767 type = KEYBOARD_TYPE_NUMERIC;
769 type = KEYBOARD_TYPE_PREDICTIVE;
771 type = KEYBOARD_TYPE_ALPHA;
773 type
[all...]
H A DKeyboard.cpp143 const String8& name, InputDeviceConfigurationFileType type) {
145 ? getInputDeviceConfigurationFilePathByDeviceIdentifier(deviceIdentifier, type)
146 : getInputDeviceConfigurationFilePathByName(name, type);
142 getPath(const InputDeviceIdentifier& deviceIdentifier, const String8& name, InputDeviceConfigurationFileType type) argument
H A DResourceTypes.cpp244 const uint32_t type = Res_GETTYPE(key) + 1; // add one, idmap stores "public" type id local
248 if (type > typeCount) {
249 ALOGW("Resource ID map: type=%d exceeds number of types=%d\n", type, typeCount);
256 const uint32_t typeOffset = map[type];
262 ALOGW("Resource ID map: type offset=%d exceeds reasonable value, size of map=%d\n",
350 h->header.type = dtohs(mHeader->header.type);
1129 event_code_t eventCode = (event_code_t)dtohs(next->header.type);
1250 const uint16_t type = dtohs(chunk->type); local
2394 const Type* type = pkg->getType(i); local
2542 const Type* type = grp->packages[0]->getType(t); local
2645 const uint8_t type = te.value.dataType; local
2970 const ResTable_type* type; local
3071 const ResTable_type* type; local
3348 const ResTable_type* type; local
3560 identifierForName(const char16_t* name, size_t nameLen, const char16_t* type, size_t typeLen, const char16_t* package, size_t packageLen, uint32_t* outTypeSpecFlags) const argument
3848 uint8_t type; member in struct:android::unit_entry
4170 String16 package, type, name; local
4320 String16 package, type, name; local
4792 const Type* type = package->types[k]; local
4861 const ResTable_type* type = NULL; local
5111 const ResTable_type* type = (const ResTable_type*)(chunk); local
5496 const ResTable_type* type = typeConfigs->configs[configIndex]; local
[all...]
/frameworks/base/libs/hwui/
H A DCaches.h218 * bind a VBO of type GL_ELEMENT_ARRAY_BUFFER that contains the
290 static void setLabelNull(GLenum type, uint object, GLsizei length, argument
292 static void getLabelNull(GLenum type, uint object, GLsizei bufferSize, argument
H A DLayerRenderer.cpp377 GLenum type; local
385 type = GL_UNSIGNED_BYTE;
389 type = GL_UNSIGNED_SHORT_5_6_5;
393 type = GL_UNSIGNED_SHORT_4_4_4_4;
398 type = GL_UNSIGNED_BYTE;
428 0, format, type, NULL);
460 type, bitmap->getPixels());
H A DProgram.cpp134 GLuint Program::buildShader(const char* source, GLenum type) { argument
135 GLuint shader = glCreateShader(type);
H A DResourceCache.h46 ResourceReference(ResourceType type) { argument
47 refCount = 0; recycled = false; destroyed = false; resourceType = type;
H A DShapeCache.h99 ShapeCacheEntry(ShapeType type, SkPaint* paint) { argument
100 shapeType = type;
H A DSkiaColorFilter.cpp26 SkiaColorFilter::SkiaColorFilter(SkColorFilter *skFilter, Type type, bool blend): argument
27 mType(type), mBlend(blend), mSkFilter(skFilter) {
H A DSkiaColorFilter.h50 ANDROID_API SkiaColorFilter(SkColorFilter *skFilter, Type type, bool blend);
60 Type type() const { function in struct:android::uirenderer::SkiaColorFilter
H A DSkiaShader.cpp72 SkiaShader::SkiaShader(Type type, SkShader* key, SkShader::TileMode tileX, argument
74 mType(type), mKey(key), mTileX(tileX), mTileY(tileY), mBlend(blend) {
313 SkiaSweepGradientShader::SkiaSweepGradientShader(Type type, float x, float y, uint32_t* colors, argument
316 SkiaShader(type, key, tileMode, tileMode, matrix, blend),
406 if (mFirst->type() == kBitmap) {

Completed in 8979 milliseconds

1234567891011>>