Searched refs:ctype (Results 1 - 25 of 69) sorted by relevance

123

/openjdk7/jdk/src/share/classes/java/io/
H A DStreamTokenizer.java94 private byte ctype[] = new byte[256]; field in class:StreamTokenizer
261 for (int i = ctype.length; --i >= 0;)
262 ctype[i] = 0;
277 if (hi >= ctype.length)
278 hi = ctype.length - 1;
280 ctype[low++] |= CT_ALPHA;
298 if (hi >= ctype.length)
299 hi = ctype.length - 1;
301 ctype[low++] = CT_WHITESPACE;
318 if (hi >= ctype
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAttribute.java128 // Find the canonical empty attribute with the given ctype, name, layout.
129 public static Attribute find(int ctype, String name, String layout) { argument
130 Layout key = Layout.makeKey(ctype, name, layout);
134 a = new Layout(ctype, name, layout).canonicalInstance();
141 public static Layout keyForLookup(int ctype, String name) { argument
142 return Layout.makeKey(ctype, name);
145 // Find canonical empty attribute with given ctype and name,
147 public static Attribute lookup(Map<Layout, Attribute> defs, int ctype, argument
152 return defs.get(Layout.makeKey(ctype, name));
155 public static Attribute define(Map<Layout, Attribute> defs, int ctype, argument
280 contextName(int ctype) argument
451 int ctype; // attribute context type, e.g., ATTR_CONTEXT_CODE field in class:Attribute.Layout
459 public int ctype() { return ctype; } method in class:Attribute.Layout
472 Layout(int ctype, String name, String layout) argument
510 makeKey(int ctype, String name, String layout) argument
518 makeKey(int ctype, String name) argument
666 private int ctype; field in class:Attribute.FormatException
669 FormatException(String message, int ctype, String name, String layout) argument
677 FormatException(String message, int ctype, String name) argument
[all...]
H A DBandStructure.java1776 for (int ctype = 0; ctype < ATTR_CONTEXT_LIMIT; ctype++) {
1777 MultiBand xxx_metadata_bands = metadataBands[ctype];
1784 ATTR_CONTEXT_NAME[ctype]+"_RVA_",
1786 Attribute.lookup(null, ctype,
1789 ATTR_CONTEXT_NAME[ctype]+"_RIA_",
1791 Attribute.lookup(null, ctype,
1793 if (ctype != ATTR_CONTEXT_METHOD)
1798 Attribute.lookup(null, ctype,
1879 haveFlagsHi(int ctype) argument
1896 getPredefinedAttrs(int ctype) argument
1910 isPredefinedAttr(int ctype, int ai) argument
2016 predefineAttribute(int index, int ctype, Band[] ab, String name, String layout) argument
2051 undefineAttribute(int index, int ctype) argument
[all...]
H A DClassReader.java341 void readAttributes(int ctype, Attribute.Holder h) throws IOException { argument
351 Object lkey = Attribute.keyForLookup(ctype, name);
357 throw new Attribute.FormatException(message1, ctype, name, cmd);
360 throw new Attribute.FormatException(message2, ctype, name, cmd);
368 Attribute a = Attribute.lookup(Package.attrDefs, ctype, name);
372 a = Attribute.lookup(this.attrDefs, ctype, name);
377 a = Attribute.lookup(null, ctype, name);
385 a = Attribute.find(ctype, name, "");
387 boolean isStackMap = (ctype == ATTR_CONTEXT_CODE
407 throw new Attribute.FormatException(message, ctype, nam
[all...]
H A DPackageWriter.java865 void visitAttributeLayoutsIn(int ctype, Attribute.Holder h) { argument
868 maxFlags[ctype] |= h.flags;
871 Map<Attribute.Layout, int[]> defMap = allLayouts.get(ctype);
890 int header = i; // ctype
894 // (...else header is simply ctype, with zero high bits.)
934 assert((header & ADH_CONTEXT_MASK) == def.ctype());
944 if (hdrIndex < 0) hdrIndex = indexForDebug[def.ctype()]++;
958 for (int ctype = 0; ctype < ATTR_CONTEXT_LIMIT; ctype
1170 writeAttrs(int ctype, final Attribute.Holder h, Class cls) argument
[all...]
H A DPackageReader.java838 int ctype = (header & ADH_CONTEXT_MASK);
840 Attribute.Layout def = new Attribute.Layout(ctype,
1335 void countAndReadAttrs(int ctype, Collection holders) throws IOException { argument
1383 countAttrs(ctype, holders);
1384 readAttrs(ctype, holders);
1389 void countAttrs(int ctype, Collection holders) throws IOException { argument
1391 MultiBand xxx_attr_bands = attrBands[ctype];
1392 long flagMask = attrFlagMask[ctype];
1394 Utils.log.fine("scanning flags and attrs for "+Attribute.contextName(ctype)+"["+holders.size()+"]");
1399 List<Attribute.Layout> defList = attrDefs.get(ctype);
1580 badAttrIndex(int ai, int ctype) argument
1586 readAttrs(int ctype, Collection holders) argument
[all...]
/openjdk7/jdk/make/tools/GenerateCharacter/
H A DCharacter.c.template26 #include <ctype.h>
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DASCII.java30 * Utility class that implements the standard C ctype functionality.
67 private static final int[] ctype = new int[] { field in class:ASCII
199 return ((ch & 0xFFFFFF80) == 0 ? ctype[ch] : 0);
263 return (ctype[ch & 0x7F] & 0x3F);
/openjdk7/jdk/src/share/native/common/
H A Djdk_util.c28 #include <ctype.h>
/openjdk7/jdk/src/solaris/back/
H A Dexec_md.c29 #include <ctype.h>
/openjdk7/jdk/test/java/util/regex/
H A DPOSIX_ASCII.java57 private static final int[] ctype = new int[] { field in class:POSIX_ASCII
189 return ((ch & 0xFFFFFF80) == 0 ? ctype[ch] : 0);
/openjdk7/jdk/src/windows/native/java/net/
H A DSocketInputStream.c28 #include <ctype.h>
H A DSocketOutputStream.c28 #include <ctype.h>
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DServerSocketChannelImpl.c28 #include <ctype.h>
H A DSocketChannelImpl.c28 #include <ctype.h>
/openjdk7/jdk/src/share/instrument/
H A DJarFacade.c32 #include <ctype.h>
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DExpression.java190 * <code>ctype</code>. Two methods match if they have the same arity.
196 MethodType ctype) {
205 if (ptype.argsCount() != ctype.argsCount()) {
215 final int distance = ctype.distanceTo(ptype);
195 lookupPrimop(SymbolTable stable, String op, MethodType ctype) argument
/openjdk7/hotspot/src/share/vm/opto/
H A DdoCall.cpp520 ciType* ctype = declared_signature->return_type(); local
524 if (ctype != rtype) {
526 BasicType ct = ctype->basic_type();
537 if (ctype->is_loaded()) {
539 const Type* sig_type = TypeOopPtr::make_from_klass(ctype->as_klass());
554 rtype = ctype;
562 assert(!rtype->is_loaded() || !ctype->is_loaded() || rtype == ctype,
563 err_msg_res("mismatched return types: rtype=%s, ctype=%s", rtype->name(), ctype
[all...]
/openjdk7/jdk/src/solaris/instrument/
H A DEncodingSupport_md.c29 #include <ctype.h>
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DLauncher.c14 #include <ctype.h>
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DAbstractField.java241 * xew.name(ctype.getTagName().getLocalPart())
242 * .namespace(ctype.getTagName().getNamespaceURI())
244 * .defaultValue(ctype.getDefaultValue());
247 * @param ctype
251 private void writeXmlElementAnnotation( JAnnotatable field, CTypeRef ctype, JType jtype, argument
269 String generatedName = ctype.getTagName().getLocalPart();
276 String generatedNS = ctype.getTagName().getNamespaceURI();
308 final String defaultValue = ctype.getDefaultValue();
315 if (ctype.isNillable()) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttr.java1127 Type ctype = attribStat(c.param, catchEnv);
1136 chk.checkClassType(c.param.vartype.pos(), ctype),
1201 Type ctype = condType1(pos, condtype, thentype, elsetype);
1208 ? cfolder.coerce(condtype.isTrue()?thentype:elsetype, ctype)
1209 : ctype;
1907 private Pair<Scope, Scope> getSyntheticScopeMapping(Type ctype) { argument
1908 if (ctype.tag != CLASS) {
1913 new Pair<Scope, Scope>(ctype.tsym.members(), new Scope(ctype.tsym));
1921 Type synthRestype = new ClassType(ctype
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DInstructionAssembler.java411 static int getCPIndex(Element ins, char ctype, argument
420 switch (ctype) {
437 throw new Error("bad ctype " + ctype + " in " + ins);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java959 XSComplexTypeDecl ctype = (XSComplexTypeDecl) fCurrentType;
960 if (ctype.fContentType == XSComplexTypeDecl.CONTENTTYPE_ELEMENT) {
1593 XSComplexTypeDecl ctype = (XSComplexTypeDecl) fCurrentType;
1594 if (ctype.fContentType == XSComplexTypeDecl.CONTENTTYPE_ELEMENT) {
1793 XSComplexTypeDecl ctype = (XSComplexTypeDecl) fCurrentType;
1796 if (ctype.fParticle != null
1965 XSComplexTypeDecl ctype = (XSComplexTypeDecl) fCurrentType;
1966 fAppendBuffer = (ctype.fContentType == XSComplexTypeDecl.CONTENTTYPE_SIMPLE);
1992 XSComplexTypeDecl ctype = (XSComplexTypeDecl) fCurrentType;
1993 if (ctype
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions_gcc.hpp34 #include <ctype.h>

Completed in 80 milliseconds

123