Searched refs:getType (Results 126 - 150 of 1319) sorted by relevance

1234567891011>>

/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DAttributesProxy.java91 public String getType(int i) { method in class:AttributesProxy
92 return fAttributes.getType(i);
95 public String getType(String name) { method in class:AttributesProxy
96 return fAttributes.getType(name);
99 public String getType(String uri, String localName) { method in class:AttributesProxy
101 fAttributes.getType(null, localName) :
102 fAttributes.getType(uri, localName);
/openjdk9/jdk/src/java.base/share/classes/sun/security/ssl/
H A DServerNameExtension.java93 if (sniMap.put(serverName.getType(), serverName) != null) {
96 "Duplicated server name of type " + serverName.getType());
160 if (sniMap.put(serverName.getType(), serverName) != null) {
163 serverName.getType());
204 SNIServerName sniName = sniMap.get(matcher.getType());
234 SNIServerName sniName = sniMap.get(sniInOther.getType());
261 s.putInt8(sniName.getType()); // server name type
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DLocation.java208 public Type getType() { method in class:Location
246 return getType() == Type.OOP;
250 return getType() == Type.NARROWOOP;
254 return getType() == Type.INT_IN_LONG;
258 return getType() == Type.LNG;
262 return getType() == Type.FLOAT_IN_DBL;
266 return getType() == Type.DBL;
270 return getType() == Type.ADDR;
274 return getType() == Type.INVALID;
307 Type type = getType();
[all...]
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/analysis/
H A DSimpleVerifier.java186 String desc = v.getType().getDescriptor();
190 v = new BasicValue(Type.getType(desc));
200 Type t = value.getType();
208 Type arrayType = objectArrayValue.getType();
211 return newValue(Type.getType(arrayType.getDescriptor()
223 Type expectedType = expected.getType();
224 Type type = value.getType();
249 Type t = v.getType();
250 Type u = w.getType();
299 return c == null ? null : Type.getType(
[all...]
H A DBasicInterpreter.java180 return newValue(Type.getType(((FieldInsnNode) insn).desc));
238 return newValue(Type.getType(((FieldInsnNode) insn).desc));
242 return newValue(Type.getType("[Z"));
244 return newValue(Type.getType("[C"));
246 return newValue(Type.getType("[B"));
248 return newValue(Type.getType("[S"));
250 return newValue(Type.getType("[I"));
252 return newValue(Type.getType("[F"));
254 return newValue(Type.getType("[D"));
256 return newValue(Type.getType("[
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DType.java72 public byte getType() { return type; } method in class:Type
122 public static final Type getType(String signature) method in class:Type
129 return BasicType.getType(type);
137 Type t = getType(signature.substring(dim));
164 return getType(signature.substring(index));
187 vec.add(getType(signature.substring(index)));
203 public static Type getType(java.lang.Class cl) { method in class:Type
212 return getType(cl.getName());
247 sb.append(getType(params[j]).getSignature());
251 sb.append(getType(met
[all...]
H A DJsrInstruction.java45 public Type getType(ConstantPoolGen cp) { method in class:JsrInstruction
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DEncodingHelper.java65 return (1 << Character.getType(code) & CharacterType.WORD_MASK) != 0;
244 return (1 << Character.getType(code) & CharacterType.ALPHA_MASK) != 0;
246 return code == 0x09 || Character.getType(code) == Character.SPACE_SEPARATOR;
248 type = Character.getType(code);
261 type = Character.getType(code);
267 type = Character.getType(code);
270 return (1 << Character.getType(code) & CharacterType.PUNCT_MASK) != 0;
282 return (1 << Character.getType(code) & CharacterType.SPACE_MASK) != 0
290 return (1 << Character.getType(code) & CharacterType.WORD_MASK) != 0;
292 return (1 << Character.getType(cod
[all...]
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DInterningXmlVisitor.java116 public String getType(int index) { method in class:InterningXmlVisitor.AttributesImpl
117 return intern(core.getType(index));
120 public String getType(String qName) { method in class:InterningXmlVisitor.AttributesImpl
121 return intern(core.getType(qName));
124 public String getType(String uri, String localName) { method in class:InterningXmlVisitor.AttributesImpl
125 return intern(core.getType(uri, localName));
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeNewArray.java35 public int getType() { method in class:BytecodeNewArray
48 switch (getType()) {
67 switch (getType()) {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DRelationalExpr.java83 return _left.getType() instanceof ReferenceType ||
84 _right.getType() instanceof ReferenceType;
88 return _left.getType() instanceof NodeType ||
89 _right.getType() instanceof NodeType;
93 return _left.getType() instanceof NodeSetType ||
94 _right.getType() instanceof NodeSetType;
119 typeL = var.getType();
126 typeR = var.getType();
151 tright = _right.getType();
215 + _left.getType()
[all...]
H A DVariableRefBase.java117 return "variable-ref("+_variable.getName()+'/'+_variable.getType()+')';
147 _type = _variable.getType();
153 _type = _variable.getType();
/openjdk9/hotspot/test/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/
H A DTestJavaField.java68 JavaType expected = metaAccess.lookupJavaType(e.getKey().getType()).resolve(rf.getDeclaringClass());
69 JavaType actual = rf.getType().resolve(rf.getDeclaringClass());
77 JavaKind expected = metaAccess.lookupJavaType(e.getKey().getType()).getJavaKind();
/openjdk9/jdk/test/javax/sound/midi/MetaMessage/
H A DMetaMessageClone.java34 System.out.println(""+msg.getLength()+" total bytes, type="+msg.getType()+", dataLength="+data.length);
47 || msg.getType()!=msg2.getType()
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicBaseClass.java42 public Type getType() { return type; } method in class:BasicBaseClass
H A DBasicLocalSym.java41 public Type getType() { return type; } method in class:BasicLocalSym
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/
H A DType.java245 public static Type getType(final String typeDescriptor) { method in class:Type
246 return getType(typeDescriptor.toCharArray(), 0);
263 * Equivalent to <code>Type.getType(methodDescriptor)</code>.
270 return getType(methodDescriptor.toCharArray(), 0);
286 return getType(getMethodDescriptor(returnType, argumentTypes));
296 public static Type getType(final Class<?> c) { method in class:Type
318 return getType(getDescriptor(c));
329 public static Type getType(final Constructor<?> c) { method in class:Type
330 return getType(getConstructorDescriptor(c));
340 public static Type getType(fina method in class:Type
475 private static Type getType(final char[] buf, final int off) { method in class:Type
[all...]
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/
H A DInsnNode.java97 public int getType() { method in class:InsnNode
H A DIntInsnNode.java103 public int getType() { method in class:IntInsnNode
H A DLineNumberNode.java100 public int getType() { method in class:LineNumberNode
H A DLdcInsnNode.java94 public int getType() { method in class:LdcInsnNode
H A DTypeInsnNode.java106 public int getType() { method in class:TypeInsnNode
H A DVarInsnNode.java109 public int getType() { method in class:VarInsnNode
/openjdk9/jaxp/src/jdk.xml.dom/share/classes/org/w3c/dom/html/
H A DHTMLLinkElement.java111 public String getType(); method in interface:HTMLLinkElement
H A DHTMLTextAreaElement.java117 public String getType(); method in interface:HTMLTextAreaElement

Completed in 130 milliseconds

1234567891011>>