Searched refs:builder (Results 126 - 150 of 475) sorted by relevance

1234567891011>>

/openjdk10/hotspot/test/compiler/testlibrary/rtm/
H A DRTMLockingStatistics.java213 StringBuilder builder = new StringBuilder();
214 builder.append(getLockName()).append('\n');
215 builder.append(String.format("# rtm locks total (estimated): %d\n",
217 builder.append(String.format("# rtm lock aborts: %d\n",
221 builder.append(String.format("# rtm lock aborts %s %d\n",
224 return builder.toString();
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/factories/
H A DTryCatchBlockFactory.java73 IRNodeBuilder builder = new IRNodeBuilder().setOwnerKlass(ownerClass)
81 Block body = getBlock(builder, 0.6);
93 catchBlocks.add(new CatchBlock(getBlock(builder, 0.3/catchBlocksCount),
96 Block finallyBody = PseudoRandom.randomBoolean() || catchBlocksCount == 0 ? getBlock(builder, 0.1) : null;
110 private Block getBlock(IRNodeBuilder builder, double weight) argument
116 return builder.setStatementLimit(actualStatementLim)
H A DCompoundShiftAssignmentOperatorFactory.java60 IRNodeBuilder builder = new IRNodeBuilder().setOwnerKlass((TypeKlass) ownerClass)
63 IRNode leftExpr = builder.setComplexityLimit(leftComplexityLimit)
70 IRNode rightExpr = builder.setComplexityLimit(rightComplexityLimit)
H A DCompoundBitwiseAssignmentOperatorFactory.java59 IRNodeBuilder builder = new IRNodeBuilder().setOwnerKlass((TypeKlass) ownerClass)
62 IRNode leftExpr = builder.setComplexityLimit(leftComplexityLimit)
69 IRNode rightExpr = builder.setComplexityLimit(rightComplexityLimit)
H A DAssignmentOperatorImplFactory.java64 IRNodeBuilder builder = new IRNodeBuilder().setOwnerKlass((TypeKlass) ownerClass)
72 rule.add("initialized_nonconst_var", builder.setIsInitialized(true).getVariableFactory());
73 rule.add("uninitialized_nonconst_var", builder.setIsInitialized(false).getVariableFactory());
75 IRNode rightOperandValue = builder.setComplexityLimit(rightComplexityLimit)
H A DTernaryOperatorFactory.java57 IRNodeBuilder builder = new IRNodeBuilder().setOwnerKlass(ownerClass)
59 IRNode conditionalExp = builder.setComplexityLimit(condComplLimit)
69 leftExp = builder.setComplexityLimit(leftComplLimit)
81 rightExp = builder.setComplexityLimit(rightComplLimit)
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/catalog/
H A DCatalogFeatures.java194 * A CatalogFeatures instance can be created through its builder as illustrated
197 CatalogFeatures f = CatalogFeatures.builder()
538 return CatalogFeatures.builder().build();
542 * Constructs a new CatalogFeatures instance with the builder.
544 * @param builder the builder to build the CatalogFeatures
546 CatalogFeatures(Builder builder) { argument
548 setProperties(builder);
576 * @param builder the CatalogFeatures builder
578 setProperties(Builder builder) argument
641 public static Builder builder() { method in class:CatalogFeatures
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/api/impl/j2s/
H A DJavaCompilerImpl.java65 ModelBuilder<TypeMirror, TypeElement, VariableElement, ExecutableElement> builder =
72 builder.setErrorHandler(new ErrorHandlerImpl(env.getMessager()));
80 builder.getTypeInfo(new Ref<TypeMirror, TypeElement>(builder, t, xjta, xl));
83 TypeInfoSet<TypeMirror, TypeElement, VariableElement, ExecutableElement> r = builder.link();
95 return new JAXBModelImpl(r, builder.reader, rootClasses, new HashMap<QName, Reference>(additionalElementDecls));
/openjdk10/hotspot/src/share/vm/shark/
H A DsharkValue.cpp203 Value* SharkValue::intptr_value(SharkBuilder* builder) const {
206 Value* SharkNormalValue::intptr_value(SharkBuilder* builder) const {
207 return builder->CreatePtrToInt(jobject_value(), SharkType::intptr_type());
228 SharkValue* SharkNormalValue::merge(SharkBuilder* builder, argument
236 PHINode *phi = builder->CreatePHI(SharkType::to_stackType(type()), 0, name);
241 SharkValue* SharkAddressValue::merge(SharkBuilder* builder, argument
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/
H A DBasicImageWriter.java98 PerfectHashBuilder<ImageLocationWriter> builder =
104 builder.put(location.getFullName(), location);
107 builder.generate();
109 length = builder.getCount();
110 redirect = builder.getRedirect();
111 PerfectHashBuilder.Entry<ImageLocationWriter>[] order = builder.getOrder();
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/model/core/
H A DRef.java71 public Ref(ModelBuilderI<T,C,?,?> builder, T type, XmlJavaTypeAdapter xjta, XmlList xl ) { argument
72 this(builder.getReader(),builder.getNavigator(),type,xjta,xl);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/parse/host/
H A DScopeHost.java48 import com.sun.xml.internal.rngom.ast.builder.Annotations;
49 import com.sun.xml.internal.rngom.ast.builder.BuildException;
50 import com.sun.xml.internal.rngom.ast.builder.Scope;
H A DAnnotationsHost.java48 import com.sun.xml.internal.rngom.ast.builder.Annotations;
49 import com.sun.xml.internal.rngom.ast.builder.BuildException;
50 import com.sun.xml.internal.rngom.ast.builder.CommentList;
H A DBase.java48 import com.sun.xml.internal.rngom.ast.builder.Annotations;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/digested/
H A DDataPatternBuilderImpl.java48 import com.sun.xml.internal.rngom.ast.builder.Annotations;
49 import com.sun.xml.internal.rngom.ast.builder.BuildException;
50 import com.sun.xml.internal.rngom.ast.builder.DataPatternBuilder;
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/model/impl/
H A DSingleTypePropertyInfoImpl.java78 assert parent.builder!=null : "this method must be called during the build stage";
79 type = parent.builder.getTypeInfo(getIndividualType(),this);
92 parent.builder.reportError(new IllegalAnnotationException(
99 parent.builder.reportError(new IllegalAnnotationException(
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/ast/builder/
H A DAnnotations.java46 package com.sun.xml.internal.rngom.ast.builder;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/nc/
H A DNameClassBuilderImpl.java48 import com.sun.xml.internal.rngom.ast.builder.Annotations;
49 import com.sun.xml.internal.rngom.ast.builder.BuildException;
50 import com.sun.xml.internal.rngom.ast.builder.CommentList;
51 import com.sun.xml.internal.rngom.ast.builder.NameClassBuilder;
/openjdk10/jdk/make/src/classes/build/tools/generatebreakiteratordata/
H A DGenerateBreakIteratorData.java122 private static void generateDataFile(String datafile, String rule, String builder) { argument
124 if (builder.equals("RuleBasedBreakIterator")) {
126 } else if (builder.equals("DictionaryBasedBreakIterator")) {
129 throw new IllegalArgumentException("Invalid break iterator class \"" + builder + "\"");
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DHttpClientImpl.java99 public static HttpClientImpl create(HttpClientBuilderImpl builder) { argument
100 HttpClientImpl impl = new HttpClientImpl(builder);
105 private HttpClientImpl(HttpClientBuilderImpl builder) { argument
106 if (builder.sslContext == null) {
113 sslContext = builder.sslContext;
115 Executor ex = builder.executor;
119 ex = builder.executor;
123 cookieManager = builder.cookieManager;
124 followRedirects = builder.followRedirects == null ?
125 Redirect.NEVER : builder
[all...]
/openjdk10/jdk/test/java/util/Locale/
H A DLocaleCategory.java39 Locale.Builder builder = new Locale.Builder();
41 base = builder.setLanguage(System.getProperty("user.language", ""))
45 disp = builder.setLanguage(
54 fmt = builder.setLanguage(System.getProperty("user.language.format",
/openjdk10/langtools/test/jdk/jshell/
H A DJdiBadOptionLaunchExecutionControlTest.java49 JShell.builder()
H A DJdiBadOptionListenExecutionControlTest.java49 JShell.builder()
H A DJdiBogusHostListenExecutionControlTest.java49 JShell.builder()
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DScriptLoader.java72 final ModuleDescriptor.Builder builder =
80 builder.requires("java.sql");
84 builder.requires("java.sql.rowset");
87 final ModuleDescriptor descriptor = builder.build();

Completed in 358 milliseconds

1234567891011>>