Searched defs:ptype (Results 1 - 7 of 7) sorted by relevance
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/ |
| H A D | UnboxedField.java | 53 private final JPrimitiveType ptype; field in class:UnboxedField 61 ptype = (JPrimitiveType) implType; 62 assert ptype!=null; 79 JMethod $get = writer.declareMethod( ptype, getGetterMethod() ); 93 JVar $value = writer.addParameter( ptype, "value" ); 106 return ptype;
|
| /openjdk7/jdk/src/share/classes/java/lang/invoke/ |
| H A D | InvokerBytecodeGenerator.java | 441 * @param ptype type of value present on stack 444 private void emitImplicitConversion(char ptype, Class<?> pclass) { argument 445 switch (ptype) { 462 emitPrimCast(ptype, Wrapper.basicTypeChar(pclass)); 474 throw new InternalError("bad implicit conversion: tc="+ptype+": "+pclass); 754 char ptype = name.function.parameterType(paramIndex); 760 } else if ((arg == null || arg instanceof String) && ptype == 'L') { 763 if (Wrapper.isWrapperType(arg.getClass()) && ptype != 'L') { 912 for (Class<?> ptype : type.parameterList()) 913 buf.append(Wrapper.forBasicType(ptype) [all...] |
| H A D | MethodType.java | 87 private static final long serialVersionUID = 292L; // {rtype, {ptype...}} 147 private static int checkPtype(Class<?> ptype) { argument 148 ptype.getClass(); //NPE 149 if (ptype == void.class) 151 if (ptype == double.class || ptype == long.class) return 1; 157 for (Class<?> ptype : ptypes) { 158 slots += checkPtype(ptype); 678 for (Class<?> ptype : ptypes) 679 hashCode = 31*hashCode + ptype [all...] |
| /openjdk7/jdk/src/share/classes/sun/invoke/util/ |
| H A D | Wrapper.java | 53 private Wrapper(Class<?> wtype, Class<?> ptype, char tchar, Object zero, Object emptyArray, int format) { argument 55 this.primitiveType = ptype; 61 this.primitiveSimpleName = ptype.getSimpleName();
|
| /openjdk7/hotspot/src/share/vm/runtime/ |
| H A D | reflection.cpp | 987 BasicType ptype = basic_type_mirror_to_basic_type(type_mirror, CHECK_NULL); local 989 if (ptype != atype) { 990 widen(&value, atype, ptype, CHECK_NULL); 992 switch (ptype) {
|
| /openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/ |
| H A D | Parser.java | 3489 * @param ptype parent type entry. 3491 SymtabEntry searchParentInheritanceScope(String name, SymtabEntry ptype) { argument 3493 String cname = ptype.fullName(); 3495 while ((ptype != null) && !(cname.equals ("")) && 3496 !(ptype instanceof InterfaceEntry)) { 3502 ptype = (SymtabEntry) symbolTable.get(cname); 3506 if ((ptype == null) || !(ptype instanceof InterfaceEntry)) { 3511 String fullName = ptype.fullName () + '/' + name; 3518 return searchLocalInheritanceScope(name, ptype); [all...] |
| /openjdk7/hotspot/src/share/vm/classfile/ |
| H A D | javaClasses.cpp | 2585 if (ptype(mt1, i) != ptype(mt2, i)) 2601 oop java_lang_invoke_MethodType::ptype(oop mt, int idx) { function in class:java_lang_invoke_MethodType
|
Completed in 52 milliseconds