HomeSort by relevance Sort by last modified time
    Searched refs:javaType (Results 1 - 10 of 10) sorted by null

  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 74 * Lite equivalent to {@link Descriptors.FieldDescriptor.JavaType}. This is
77 public enum JavaType {
88 JavaType(final Object defaultDefault) {
108 DOUBLE (JavaType.DOUBLE , WIRETYPE_FIXED64 ),
109 FLOAT (JavaType.FLOAT , WIRETYPE_FIXED32 ),
110 INT64 (JavaType.LONG , WIRETYPE_VARINT ),
111 UINT64 (JavaType.LONG , WIRETYPE_VARINT ),
112 INT32 (JavaType.INT , WIRETYPE_VARINT ),
113 FIXED64 (JavaType.LONG , WIRETYPE_FIXED64 ),
114 FIXED32 (JavaType.INT , WIRETYPE_FIXED32 )
    [all...]
Descriptors.java 659 public JavaType getJavaType() { return type.getJavaType(); }
662 public WireFormat.JavaType getLiteJavaType() {
716 if (getJavaType() == JavaType.MESSAGE) {
768 if (getJavaType() != JavaType.MESSAGE) {
777 if (getJavaType() != JavaType.ENUM) {
818 DOUBLE (JavaType.DOUBLE ),
819 FLOAT (JavaType.FLOAT ),
820 INT64 (JavaType.LONG ),
821 UINT64 (JavaType.LONG ),
822 INT32 (JavaType.INT )
    [all...]
  /frameworks/native/opengl/tools/glgen/src/
JType.java 200 JType javaType = null;
202 javaType = arrayTypeMapping.get(ctype);
204 if (javaType == null) {
205 javaType = typeMapping.get(ctype);
207 if (javaType == null) {
210 return javaType;
  /external/webkit/Source/WebCore/bridge/jni/v8/
JNIUtilityPrivate.cpp 46 JavaType javaType = javaTypeFromClassName(javaClassName.data());
48 result.m_type = javaType;
51 switch (javaType) {
425 JavaValue jvalueToJavaValue(const jvalue& value, const JavaType& type, bool requireAnnotation)
427 JavaValue jvalueToJavaValue(const jvalue& value, const JavaType& type)
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JNIUtilityPrivate.cpp 175 jvalue convertValueToJValue(ExecState* exec, RootObject* rootObject, JSValue value, JavaType javaType, const char* javaClassName)
182 switch (javaType) {
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 441 native int doGetNdefType(int libnfctype, int javatype);
442 private int getNdefType(int libnfctype, int javatype) {
443 return doGetNdefType(libnfctype, javatype);
514 int javaType, int maxLength, int cardState) {
522 extras.putInt(Ndef.EXTRA_NDEF_TYPE, getNdefType(libnfcType, javaType));
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 449 native int doGetNdefType(int libnfctype, int javatype);
450 private int getNdefType(int libnfctype, int javatype) {
451 return doGetNdefType(libnfctype, javatype);
509 int javaType, int maxLength, int cardState) {
517 extras.putInt(Ndef.EXTRA_NDEF_TYPE, getNdefType(libnfcType, javaType));
  /packages/apps/Nfc/nci/jni/
NativeNfcTag.cpp 937 ** javaType: Not used.
942 static jint nativeNfcTag_doGetNdefType (JNIEnv*, jobject, jint libnfcType, jint javaType)
944 ALOGD ("%s: enter; libnfc type=%d; java type=%d", __FUNCTION__, libnfcType, javaType);
    [all...]
  /packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeNfcTag.cpp 896 jint libnfcType, jint javaType)
917 if (javaType == TARGET_TYPE_MIFARE_UL) {
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 451 private <T> void testReturnType(Class<T> javaType, T value) throws Exception {
459 TypeId<T> returnType = TypeId.get(javaType);
471 assertEquals(javaType, method.getReturnType());
    [all...]

Completed in 905 milliseconds