Searched defs:ct (Results 1 - 25 of 71) sorted by relevance

123

/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeDataView.java67 * public CompositeData toCompositeData(CompositeType ct) {
69 * {@code List<String> itemNames = new ArrayList<String>(ct.keySet());}
73 * itemDescriptions.add(ct.getDescription(item));
74 * itemTypes.add(ct.getType(item));
81 * new CompositeType(ct.getTypeName(),
82 * ct.getDescription(),
90 * assert ct.isValue(cd); // check we've done it right
118 * @param ct The expected {@code CompositeType} of the returned
120 * {@code cd.getCompositeType().equals(ct)} should be true.
122 * {@link CompositeDataSupport} constructed with {@code ct} a
127 toCompositeData(CompositeType ct) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ct/
H A DChoiceContentComplexTypeBuilder.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
30 import static com.sun.tools.internal.xjc.reader.xmlschema.ct.ComplexTypeBindingMode.NORMAL;
43 public boolean isApplicable(XSComplexType ct) { argument
47 if( ct.getBaseType()!=schemas.getAnyType() )
55 XSParticle p = ct.getContentType().asParticle();
79 public void build(XSComplexType ct) { argument
80 XSParticle p = ct.getContentType().asParticle();
82 builder.recordBindingMode(ct,NORMAL);
86 green.attContainer(ct);
H A DExtendedComplexTypeBuilder.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
43 public boolean isApplicable(XSComplexType ct) { argument
44 XSType baseType = ct.getBaseType();
47 && ct.getDerivationMethod()==XSType.EXTENSION;
50 public void build(XSComplexType ct) { argument
51 XSComplexType baseType = ct.getBaseType().asComplexType();
54 CClass baseClass = selector.bindToType(baseType, ct, true);
62 XSContentType explicitContent = ct.getExplicitContent();
64 if (!checkIfExtensionSafe(baseType, ct)) {
66 errorReceiver.error(ct
[all...]
H A DFreshComplexTypeBuilder.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
31 import static com.sun.tools.internal.xjc.reader.xmlschema.ct.ComplexTypeBindingMode.FALLBACK_CONTENT;
32 import static com.sun.tools.internal.xjc.reader.xmlschema.ct.ComplexTypeBindingMode.NORMAL;
50 public boolean isApplicable(XSComplexType ct) { argument
51 return ct.getBaseType()==schemas.getAnyType()
52 && !ct.isMixed(); // not mixed
55 public void build(final XSComplexType ct) { argument
56 XSContentType contentType = ct.getContentType();
60 builder.recordBindingMode(ct,ComplexTypeBindingMode.NORMAL);
62 simpleTypeBuilder.refererStack.push(ct);
[all...]
H A DMixedComplexTypeBuilder.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
34 import static com.sun.tools.internal.xjc.reader.xmlschema.ct.ComplexTypeBindingMode.FALLBACK_CONTENT;
45 public boolean isApplicable(XSComplexType ct) { argument
46 XSType bt = ct.getBaseType();
47 if(bt ==schemas.getAnyType() && ct.isMixed())
53 ct.isMixed() &&
54 ct.getDerivationMethod() == XSType.EXTENSION) {
55 if (!bgmBuilder.isGenerateMixedExtensions() && (ct.getContentType().asParticle() == null)) {
64 public void build(XSComplexType ct) { argument
65 XSContentType contentType = ct
[all...]
H A DMixedExtendedComplexTypeBuilder.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
43 public boolean isApplicable(XSComplexType ct) { argument
47 XSType bt = ct.getBaseType();
50 ct.isMixed() &&
51 ct.getDerivationMethod()==XSType.EXTENSION &&
52 ct.getContentType().asParticle() != null &&
53 ct.getExplicitContent().asEmpty() == null
61 public void build(XSComplexType ct) { argument
62 XSComplexType baseType = ct.getBaseType().asComplexType();
65 CClass baseClass = selector.bindToType(baseType, ct, tru
[all...]
H A DMultiWildcardComplexTypeBuilder.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
33 import static com.sun.tools.internal.xjc.reader.xmlschema.ct.ComplexTypeBindingMode.FALLBACK_CONTENT;
44 public boolean isApplicable(XSComplexType ct) { argument
48 XSType bt = ct.getBaseType();
49 if (bt ==schemas.getAnyType() && ct.getContentType() != null) {
50 XSParticle part = ct.getContentType().asParticle();
67 public void build(XSComplexType ct) { argument
68 XSContentType contentType = ct.getContentType();
70 builder.recordBindingMode(ct, FALLBACK_CONTENT);
71 BIProperty prop = BIProperty.getCustomization(ct);
[all...]
H A DRestrictedComplexTypeBuilder.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
47 public boolean isApplicable(XSComplexType ct) { argument
48 XSType baseType = ct.getBaseType();
51 && ct.getDerivationMethod()==XSType.RESTRICTION;
54 public void build(XSComplexType ct) { argument
58 new FreshComplexTypeBuilder().build(ct);
62 XSComplexType baseType = ct.getBaseType().asComplexType();
65 CClass baseClass = selector.bindToType(baseType,ct,true);
72 ct.isMixed() &&
73 (ct
[all...]
H A DSTDerivedComplexTypeBuilder.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
46 public boolean isApplicable(XSComplexType ct) { argument
47 return ct.getBaseType().isSimpleType();
50 public void build(XSComplexType ct) { argument
51 assert ct.getDerivationMethod()==XSType.EXTENSION;
54 XSSimpleType baseType = ct.getBaseType().asSimpleType();
57 builder.recordBindingMode(ct,ComplexTypeBindingMode.NORMAL);
59 simpleTypeBuilder.refererStack.push(ct);
63 BIProperty prop = BIProperty.getCustomization(ct);
68 green.attContainer(ct);
[all...]
H A DCTBuilder.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
55 abstract boolean isApplicable(XSComplexType ct); argument
61 abstract void build(XSComplexType ct); argument
H A DComplexTypeBindingMode.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
H A DComplexTypeFieldBuilder.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
H A DMessages.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
H A DAbstractExtendedComplexTypeBuilder.java26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
/openjdk7/jdk/test/java/lang/management/GarbageCollectorMXBean/
H A DGcInfoCompositeType.java82 private static int checkType(CompositeType ct) throws Exception { argument
89 Set<String> items = new HashSet<String>(ct.keySet());
101 for (String key : ct.keySet()) {
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsPermGen.cpp40 CardTableRS* ct,
43 new CMSPermGenGen(rs, initial_byte_size, -1, ct);
39 CMSPermGen(ReservedSpace rs, size_t initial_byte_size, CardTableRS* ct, FreeBlockDictionary<FreeChunk>::DictionaryChoice dictionaryChoice) argument
H A DcmsPermGen.hpp48 CardTableRS* ct, FreeBlockDictionary<FreeChunk>::DictionaryChoice);
63 int level, CardTableRS* ct):
67 level, ct, false /* use adaptive freelists */,
62 CMSPermGenGen(ReservedSpace rs, size_t initial_byte_size, int level, CardTableRS* ct) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/nav/
H A DGenericArrayTypeImpl.java37 GenericArrayTypeImpl(Type ct) { argument
38 assert ct!=null;
39 genericComponentType = ct;
/openjdk7/jdk/test/javax/management/openmbean/
H A DTabularDataOrderTest.java82 private static final CompositeType ct; field in class:TabularDataOrderTest
86 ct = new CompositeType(
92 "d.e.f", "name and int indexed by name", ct,
103 ct,
/openjdk7/jdk/src/share/classes/sun/reflect/generics/reflectiveObjects/
H A DGenericArrayTypeImpl.java40 private GenericArrayTypeImpl(Type ct) { argument
41 genericComponentType = ct;
46 * @param ct - the desired component type of the generic array type
50 public static GenericArrayTypeImpl make(Type ct) { argument
51 return new GenericArrayTypeImpl(ct);
/openjdk7/jdk/src/share/classes/sun/reflect/generics/tree/
H A DArrayTypeSignature.java33 private ArrayTypeSignature(TypeSignature ct) {componentType = ct;} argument
35 public static ArrayTypeSignature make(TypeSignature ct) { argument
36 return new ArrayTypeSignature(ct);
/openjdk7/langtools/test/tools/javac/warnings/6885255/
H A DT6885255.java12 Class<Test> ct; //no warn - outer Class w/ raw param field in class:T6885255
/openjdk7/jdk/src/share/classes/com/sun/management/
H A DGarbageCollectionNotificationInfo.java233 public CompositeData toCompositeData(CompositeType ct) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DXmlDataContentHandler.java82 ContentType ct = new ContentType(ctStr);
83 if (!isXml(ct)) {
88 charset = ct.getParameter("charset");
106 ContentType ct = new ContentType(mimeType);
107 if (!isXml(ct)) {
112 String charset = ct.getParameter("charset");
140 private boolean isXml(ContentType ct) { argument
141 return ct.getSubType().equals("xml") &&
142 (ct.getPrimaryType().equals("text") || ct
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/rcache/
H A DReplayCache.java59 * @param ct CacheTable.
61 public ReplayCache (String p, CacheTable ct) { argument
63 table = ct;

Completed in 95 milliseconds

123