Searched refs:builder (Results 201 - 225 of 475) sorted by relevance

1234567891011>>

/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/ast/builder/
H A DIncludedGrammar.java46 package com.sun.xml.internal.rngom.ast.builder;
H A DElementAnnotationBuilder.java46 package com.sun.xml.internal.rngom.ast.builder;
H A DInclude.java46 package com.sun.xml.internal.rngom.ast.builder;
H A DGrammar.java46 package com.sun.xml.internal.rngom.ast.builder;
H A DScope.java46 package com.sun.xml.internal.rngom.ast.builder;
H A DDiv.java46 package com.sun.xml.internal.rngom.ast.builder;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/parse/xml/
H A DSAXParseable.java50 import com.sun.xml.internal.rngom.ast.builder.BuildException;
51 import com.sun.xml.internal.rngom.ast.builder.IncludedGrammar;
52 import com.sun.xml.internal.rngom.ast.builder.SchemaBuilder;
53 import com.sun.xml.internal.rngom.ast.builder.Scope;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/parse/compact/
H A DCompactParseable.java55 import com.sun.xml.internal.rngom.ast.builder.BuildException;
56 import com.sun.xml.internal.rngom.ast.builder.IncludedGrammar;
57 import com.sun.xml.internal.rngom.ast.builder.SchemaBuilder;
58 import com.sun.xml.internal.rngom.ast.builder.Scope;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/parse/
H A DParseable.java48 import com.sun.xml.internal.rngom.ast.builder.*;
63 * The builder of the schema object model. This object
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/
H A DCatalogUtil.java45 private static final CatalogFeatures CATALOG_FEATURES = CatalogFeatures.builder()
/openjdk10/jdk/src/jdk.management/share/classes/com/sun/management/internal/
H A DGarbageCollectionNotifInfoCompositeData.java67 final GcInfoBuilder builder = AccessController.doPrivileged (new PrivilegedAction<GcInfoBuilder>() {
71 Field f = cl.getDeclaredField("builder");
81 gict = compositeTypeByBuilder.get(builder);
87 builder.getGcInfoCompositeType(),
97 compositeTypeByBuilder.put(builder,gict);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DClassSelector.java80 private final BGMBuilder builder = Ring.get(BGMBuilder.class); field in class:ClassSelector
175 if(builder.getGlobalBinding().getFlattenClasses()==LocalScoping.NESTED)
191 BIProperty prop = builder.getBindInfo(sc).get(BIProperty.class);
316 BISchemaBinding sb = builder.getBindInfo(os).get(BISchemaBinding.class);
386 String doc = builder.getBindInfo(sc).getDocumentation();
445 builder.getBindInfo(s).get(BISchemaBinding.class);
451 if( builder.defaultPackage1 != null )
452 name = builder.defaultPackage1;
459 if( name == null && builder.defaultPackage2 != null )
460 name = builder
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/
H A DHotSpotAOTProfilingPlugin.java51 public boolean shouldProfile(GraphBuilderContext builder, ResolvedJavaMethod method) { argument
52 return super.shouldProfile(builder, method) && ((HotSpotResolvedObjectType) method.getDeclaringClass()).getFingerprint() != 0;
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/factories/
H A DNonStaticMemberVariableFactory.java61 IRNodeBuilder builder = new IRNodeBuilder().setComplexityLimit(complexityLimit)
73 IRNode object = builder.setResultType(varInfo.owner)
H A DFunctionRedefinitionBlockFactory.java60 IRNodeBuilder builder = new IRNodeBuilder().setOwnerKlass(ownerClass)
73 content.add(builder.setFunctionInfo(functionInfo)
/openjdk10/hotspot/test/gc/survivorAlignment/
H A DSurvivorAlignmentTestMain.java384 StringBuilder builder = new StringBuilder();
386 builder.append(String.format("SurvivorAlignmentTestMain info:%n"));
387 builder.append(String.format("Desired object size: %d%n", objectSize));
388 builder.append(String.format("Memory to fill: %d%n", memoryToFill));
389 builder.append(String.format("Objects to be allocated: %d%n",
392 builder.append(String.format("Alignment helpers to be used: %n"));
394 builder.append(String.format("For space %s:%n%s%n", heapSpace,
398 return builder.toString();
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/transform/
H A DCR6551600Test.java72 DocumentBuilder builder = factory.newDocumentBuilder();
73 Document doc = builder.newDocument();
/openjdk10/jaxp/test/javax/xml/jaxp/functional/catalog/
H A DResolveFeatureTest.java35 import static javax.xml.catalog.CatalogFeatures.builder;
130 return builder().with(Feature.RESOLVE, resolve).build();
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/dom/
H A DCR6333993Test.java62 DocumentBuilder builder = dbf.newDocumentBuilder();
64 Document testDoc = builder.parse(bis);
/openjdk10/jdk/test/java/time/tck/java/time/format/
H A DTCKFormatStyle.java110 DateTimeFormatterBuilder builder = new DateTimeFormatterBuilder();
111 DateTimeFormatter formatter = builder.appendLocalized(style, style).appendLiteral(" ").appendZoneOrOffsetId().toFormatter();
/openjdk10/jdk/test/java/security/cert/CertPathBuilder/targetConstraints/
H A DBuildOddSel.java135 CertPathBuilder builder =
137 CertPathBuilderResult cpbr = builder.build(params);
/openjdk10/langtools/test/jdk/jshell/
H A DUserJdiUserRemoteTest.java52 setUp(builder -> builder.executionEngine(new MyExecutionControlProvider(this), null));
/openjdk10/hotspot/test/compiler/jvmci/common/
H A DCTVMUtilities.java117 StringBuilder builder = new StringBuilder("(");
119 builder.append(Utils.toJVMTypeSignature(parameter.getType()));
121 builder.append(")");
124 builder.append("V");
127 builder.append(Utils.toJVMTypeSignature(
130 targetDesc = builder.toString();
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/validation/
H A DBug6467424Test.java75 DocumentBuilder builder = domFactory.newDocumentBuilder();
76 Document doc = builder.parse(new File(getClass().getResource("Bug6467424.xml").getFile()));
132 DocumentBuilder builder = domFactory.newDocumentBuilder();
133 Document doc = builder.parse(new File(getClass().getResource("Bug6467424.xml").getFile()));
177 DocumentBuilder builder = domFactory.newDocumentBuilder();
178 Document doc = builder.parse(new File(getClass().getResource("Bug6467424.xml").getFile()));
/openjdk10/jdk/test/java/time/test/java/time/format/
H A DTestReducedPrinter.java84 return builder.appendValueReduced(field, width, width, baseValue).toFormatter(locale).withDecimalStyle(decimalStyle);
88 return builder.appendValueReduced(field, minWidth, maxWidth, baseValue).toFormatter(locale).withDecimalStyle(decimalStyle);
92 return builder.appendValueReduced(field, minWidth, maxWidth, LocalDate.of(baseValue, 1, 1)).toFormatter(locale).withDecimalStyle(decimalStyle);
270 builder = new DateTimeFormatterBuilder();
271 builder.appendPattern(pattern);
272 DateTimeFormatter dtf = builder.toFormatter();

Completed in 291 milliseconds

1234567891011>>