Searched refs:isPrimitive (Results 51 - 75 of 122) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokerBytecodeGenerator.java609 if (cls.isArray() || cls.isPrimitive())
625 if (cls.isPrimitive())
960 if (ptype.isPrimitive()) {
973 if (rtype.isPrimitive() && rtype != void.class) {
1025 if (dptype.isPrimitive()) {
1040 if (rtype != void.class && rtype.isPrimitive()) {
H A DMethodType.java745 if (src.isPrimitive()) {
748 if (src == void.class) return true; //or !dst.isPrimitive()?
750 if (dst.isPrimitive()) {
757 } else if (dst.isPrimitive()) {
H A DMethodHandleImpl.java110 return !elemClass.isPrimitive() && elemClass != Object.class;
121 if (!elemClass.isPrimitive()) {
220 if (src.isPrimitive()) {
221 if (dst.isPrimitive()) {
232 if (dst.isPrimitive()) {
809 hostClass.isPrimitive() ||
H A DMethodTypeForm.java304 } else if (!t.isPrimitive()) {
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DHprofReader.java746 private int readArray(boolean isPrimitive) throws IOException { argument
753 if (isPrimitive) {
764 if (isPrimitive || version < VERSION_JDK12BETA4) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/model/nav/
H A DAPTNavigator.java214 if(c.isPrimitive())
356 public boolean isPrimitive(TypeMirror t) { method in class:APTNavigator
375 assert primitiveType.isPrimitive();
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DClassUseMapper.java207 if (! fd.type().isPrimitive()) {
222 if (! (md.returnType().isPrimitive() || md.returnType() instanceof TypeVariable)) {
305 if ((! params[k].type().isPrimitive()) &&
/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java626 if (newReturnType.isPrimitive()) {
1008 if (type.isPrimitive()) {
1048 if (type.isPrimitive()) {
1108 if (parameterTypes[i].isPrimitive()) {
1454 if (type.isPrimitive()) {
1654 assert primitiveClass.isPrimitive();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DDynamicMethodMarshallerImpl.java375 if (!argTypes[ctr].isPrimitive())
385 needsResultCopy = !resultType.isPrimitive() ;
H A DIDLNameTranslatorImpl.java713 if( !idlTypesUtil.isPrimitive(nextParamType) &&
734 if( idlTypesUtil.isPrimitive(c) ) {
H A DIDLNameTranslatorImpl_save.sjava690 if( !idlTypesUtil.isPrimitive(nextParamType) &&
711 if( idlTypesUtil.isPrimitive(c) ) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJCodeModel.java326 if (clazz.isPrimitive())
339 if(c.isPrimitive())
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DValueConversions.java557 if (type.isPrimitive()) throw new IllegalArgumentException("cannot cast primitive type "+type);
578 if (!type.isPrimitive())
844 assert(src.isPrimitive() && dst.isPrimitive());
875 Wrapper sw = (src.isPrimitive() ? Wrapper.forPrimitiveType(src) : null);
876 Wrapper dw = (dst.isPrimitive() ? Wrapper.forPrimitiveType(dst) : null);
1140 if (elemType.isPrimitive()) {
1161 if (elemType.isPrimitive())
H A DVerifyAccess.java180 if (type.isPrimitive() || type == Object.class) return true;
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DType.java249 } else if(cl.isPrimitive()) {
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DValueType.java472 if (fields[i].isPrimitive()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenOptions.java228 clazz.isPrimitive()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/nav/
H A DNavigatorImpl.java202 public boolean isPrimitive(NType type) { method in class:NavigatorImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DSingleElementLeafProperty.java105 (!valueType.isPrimitive() && acc.isValueTypeAbstractable() )) {
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/links/
H A DLinkFactory.java55 if (type.isPrimitive()) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java278 boolean tPrimitive = t.isPrimitive();
279 boolean sPrimitive = s.isPrimitive();
956 if (t.isPrimitive() != s.isPrimitive())
960 s.isPrimitive() &&
1803 if (t.elemtype.isPrimitive() || isSameType(t.elemtype, syms.objectType))
2875 if (t.isPrimitive())
2887 if (t.isPrimitive()) {
2987 else if (t.isPrimitive() || s.isPrimitive())
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectStreamClass.java747 if (!f.isPrimitive()) {
836 (type == Object.class && !f.isPrimitive()))
1483 if (cl.isPrimitive()) {
1905 if (!f.isPrimitive()) {
2251 if ((f.isPrimitive() || lf.isPrimitive()) &&
/openjdk7/jdk/test/sun/invoke/util/
H A DValueConversionsTest.java377 if (elemType.isPrimitive())
408 if (elemType.isPrimitive()) {
/openjdk7/jdk/src/share/classes/sun/management/
H A DMappedMXBeanType.java288 if (et.isPrimitive()) {
384 if (elementType instanceof Class && ((Class) elementType).isPrimitive()) {
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DUtil.java147 public static boolean isPrimitive (String name, Hashtable symbolTable) method in class:Util
162 } // isPrimitive

Completed in 187 milliseconds

12345