HomeSort by relevance Sort by last modified time
    Searched refs:DataType (Results 26 - 50 of 51) sorted by null

12 3

  /frameworks/compile/slang/
slang_rs_spec_table.cpp 125 const RSDataTypeSpec *DataType)
127 mDataType(DataType) {
162 const RSDataTypeSpec *DataType,
167 mDataType(DataType),
slang_rs_export_type.cpp 549 RSExportPrimitiveType::DataType dt =
701 RSExportPrimitiveType::DataType
708 RSSpecificTypeMap->GetOrCreateValue(cname, DataType ## type);
711 RSSpecificTypeMap->GetOrCreateValue(cname, DataType ## type);
722 RSExportPrimitiveType::DataType
731 bool RSExportPrimitiveType::IsRSMatrixType(DataType DT) {
735 bool RSExportPrimitiveType::IsRSObjectType(DataType DT) {
763 RSExportPrimitiveType::DataType DT = GetRSSpecificType(FT);
807 RSExportPrimitiveType::DataType
819 return DataType ## type;
    [all...]
slang_rs_export_element.cpp 41 EI->type = RSExportPrimitiveType::DataType ## _dt; \
slang_rs_object_ref_count.cpp 81 RSExportPrimitiveType::DataType DT =
575 RSExportPrimitiveType::DataType DT =
619 RSExportPrimitiveType::DataType DT =
    [all...]
slang_rs_reflection.cpp 502 static const char *GetElementDataTypeName(RSExportPrimitiveType::DataType DT) {
505 "Element.DataType.FLOAT_32", // RSExportPrimitiveType::DataTypeFloat32
506 "Element.DataType.FLOAT_64", // RSExportPrimitiveType::DataTypeFloat64
507 "Element.DataType.SIGNED_8", // RSExportPrimitiveType::DataTypeSigned8
508 "Element.DataType.SIGNED_16", // RSExportPrimitiveType::DataTypeSigned16
509 "Element.DataType.SIGNED_32", // RSExportPrimitiveType::DataTypeSigned32
510 "Element.DataType.SIGNED_64", // RSExportPrimitiveType::DataTypeSigned64
511 "Element.DataType.UNSIGNED_8", // RSExportPrimitiveType::DataTypeUnsigned8
512 "Element.DataType.UNSIGNED_16",
514 "Element.DataType.UNSIGNED_32"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
DebuggerMessage.java 490 public enum DataType
499 public static DataType valueOf(int value) {
507 public static com.google.protobuf.Internal.EnumLiteMap<DataType>
511 private static com.google.protobuf.Internal.EnumLiteMap<DataType>
513 new com.google.protobuf.Internal.EnumLiteMap<DataType>() {
514 public DataType findValueByNumber(int number) {
515 return DataType.valueOf(number)
521 private DataType(int index, int value) {
526 // @@protoc_insertion_point(enum_scope:com.android.glesv2debugger.Message.DataType)
679 // optional .com.android.glesv2debugger.Message.DataType data_type = 23
    [all...]
Context.java 20 import com.android.ide.eclipse.gldebugger.DebuggerMessage.Message.DataType;
212 if (msg.hasDataType() && msg.getDataType() == DataType.ReferencedImage) {
219 msg = msg.toBuilder().setDataType(DataType.NonreferencedImage)
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 24 import android.app.DownloadManagerBaseTest.DataType;
97 protected enum DataType {
295 * @param type The type of data to generate: currently, one of {@link DataType.TEXT} or
296 * {@link DataType.BINARY}.
299 protected byte[] generateData(int size, DataType type) {
307 * @param type The type of data to generate: currently, one of {@link DataType.TEXT} or
308 * {@link DataType.BINARY}.
312 protected byte[] generateData(int size, DataType type, Random rng) {
317 if (type == DataType.TEXT) {
592 protected File createFileOnSD(String filename, long fileSize, DataType type
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 306 Dictionary.DataType.UNIGRAM);
409 final int dicTypeId, final Dictionary.DataType dataType) {
410 Dictionary.DataType dataTypeForLog = dataType;
414 if(dataType == Dictionary.DataType.BIGRAM) {
442 if (dataType == Dictionary.DataType.UNIGRAM) {
446 dataTypeForLog = Dictionary.DataType.BIGRAM
    [all...]
BinaryDictionary.java 161 mDicTypeId, DataType.BIGRAM);
181 DataType.UNIGRAM);
ExpandableDictionary.java 303 DataType.UNIGRAM)) {
344 DataType.UNIGRAM);
508 DataType.BIGRAM);
    [all...]
  /frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
FBOSyncRS.java 23 import android.renderscript.Element.DataType;
192 Element.createPixel(mRS, DataType.UNSIGNED_16,
FBOTestRS.java 23 import android.renderscript.Element.DataType;
184 Element.createPixel(mRS, DataType.UNSIGNED_16,
  /frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
ShadersTestRS.java 23 import android.renderscript.Element.DataType;
196 b = new Builder(mRS, Element.createPixel(mRS, DataType.UNSIGNED_16, DataKind.PIXEL_DEPTH));
  /external/llvm/include/llvm/MC/
MCStreamer.h 80 enum DataType {
87 DataType RegionIndicator;
  /frameworks/base/opengl/libs/GLES2_dbg/src/
debugger_message.pb.h 530 typedef Message_DataType DataType;
531 static const DataType ReferencedImage = Message_DataType_ReferencedImage;
532 static const DataType NonreferencedImage = Message_DataType_NonreferencedImage;
536 static const DataType DataType_MIN =
538 static const DataType DataType_MAX =
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
Context.java 20 import com.android.glesv2debugger.DebuggerMessage.Message.DataType;
212 if (msg.hasDataType() && msg.getDataType() == DataType.ReferencedImage) {
219 msg = msg.toBuilder().setDataType(DataType.NonreferencedImage)
  /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/
DownloadManagerBaseTest.java 102 protected enum DataType {
289 * @param type The type of data to generate: currently, one of {@link DataType.TEXT} or
290 * {@link DataType.BINARY}.
294 private byte[] generateData(int size, DataType type, Random rng) {
299 if (type == DataType.TEXT) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 31 import com.android.inputmethod.latin.Dictionary.DataType;
145 int dicTypeId, DataType dataType) {
  /external/webkit/Source/JavaScriptGlue/
JSUtils.cpp 139 switch (ptr->DataType())
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java 33 import android.renderscript.Element.DataType;
688 Element.createPixel(mRS, DataType.UNSIGNED_16,
  /frameworks/base/graphics/java/android/renderscript/
Mesh.java 734 Element.DataType.FLOAT_32,
  /prebuilt/common/ant/
ant.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilt/sdk/14/
android.jar 

Completed in 766 milliseconds

12 3