OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:javaType
(Results
1 - 8
of
8
) 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/base/opengl/tools/glgen/src/
JType.java
162
JType
javaType
= null;
164
javaType
= arrayTypeMapping.get(ctype);
166
if (
javaType
== null) {
167
javaType
= typeMapping.get(ctype);
169
if (
javaType
== null) {
172
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
) {
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/src/com/android/nfc/nxp/
NativeNfcTag.java
426
native int doGetNdefType(int libnfctype, int
javatype
);
427
private int getNdefType(int libnfctype, int
javatype
) {
428
return doGetNdefType(libnfctype,
javatype
);
486
int
javaType
, int maxLength, int cardState) {
494
extras.putInt(Ndef.EXTRA_NDEF_TYPE, getNdefType(libnfcType,
javaType
));
/packages/apps/Nfc/jni/
com_android_nfc_NativeNfcTag.cpp
909
jint libnfcType, jint
javaType
)
930
if (
javaType
== TARGET_TYPE_MIFARE_UL) {
[
all
...]
/dalvik/dx/junit-tests/com/android/dx/gen/
DexGeneratorTest.java
390
private <T> void testReturnType(Class<T>
javaType
, T value) throws Exception {
398
Type<T> returnType = Type.get(
javaType
);
411
assertEquals(
javaType
, method.getReturnType());
[
all
...]
Completed in 576 milliseconds