Searched refs:builder (Results 1 - 25 of 1146) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs102 System.Text.StringBuilder builder = new StringBuilder( str );
103 builder[index] = newValue;
104 return builder.ToString();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DDotTreeGenerator.cs97 StringBuilder builder = new StringBuilder();
99 builder.AppendLine( line );
107 builder.AppendLine( s );
109 builder.AppendLine();
112 builder.AppendLine( s );
114 builder.AppendLine();
116 builder.AppendLine( Footer );
117 return builder.ToString();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
H A DDOTTreeGenerator.cs94 StringBuilder builder = new StringBuilder();
96 builder.AppendLine(line);
104 builder.AppendLine(s);
106 builder.AppendLine();
109 builder.AppendLine(s);
111 builder.AppendLine();
113 builder.AppendLine(Footer);
114 return builder.ToString();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
H A DTestFastLexer.cs48 StringBuilder builder = new StringBuilder( inputElement, 1000000 * inputElement.Length );
50 builder.Append( inputElement );
52 string text = builder.ToString();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DDotTreeGenerator.cs97 StringBuilder builder = new StringBuilder();
99 builder.AppendLine( line );
107 builder.AppendLine( s );
109 builder.AppendLine();
112 builder.AppendLine( s );
114 builder.AppendLine();
116 builder.AppendLine( Footer );
117 return builder.ToString();
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
H A DTest.pm56 my $tb = $CLASS->builder;
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DANTLR.g1170 StringBuilder builder = new StringBuilder();
1172 : '"' {builder.append('"');}
1173 ( ('\\\"') => '\\' '"' {builder.append('"');}
1174 | '\\' c=~'"' {builder.append("\\" + (char)$c);}
1175 | c=~('\\'|'"') {builder.append((char)$c);}
1177 '"' {builder.append('"');}
1179 setText(builder.toString());
1235 StringBuilder builder = new StringBuilder();
1237 : ( ('\\]') => '\\' ']' {builder.append("]");}
1238 | '\\' c=~(']') {builder
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
H A DCountModifierTest.java79 EventBuilder builder = createBreakpointEventBuilder(typeTag,
81 testEventWithCountModifier(builder, LOCATION_COUNT_FIELD_NAME);
100 EventBuilder builder = createMethodEntryEventBuilder(TEST_CLASS_NAME);
101 testEventWithCountModifier(builder, LOCATION_COUNT_FIELD_NAME);
120 EventBuilder builder = createMethodExitEventBuilder(TEST_CLASS_NAME);
121 testEventWithCountModifier(builder, LOCATION_COUNT_FIELD_NAME);
142 EventBuilder builder = createMethodExitWithReturnValueEventBuilder(TEST_CLASS_NAME);
143 testEventWithCountModifier(builder, LOCATION_COUNT_FIELD_NAME);
163 EventBuilder builder = createExceptionEventBuilder(EXCEPTION_SIGNATURE,
165 testEventWithCountModifier(builder,
231 testEventWithCountModifier(EventBuilder builder, String countFieldName) argument
[all...]
H A DInstanceOnlyModifierTest.java79 EventBuilder builder = createBreakpointEventBuilder(typeTag,
81 testEventWithInstanceOnlyModifier(builder);
107 EventBuilder builder = createMethodEntryEventBuilder(TEST_CLASS_NAME);
108 testEventWithInstanceOnlyModifier(builder);
135 EventBuilder builder = createMethodExitEventBuilder(TEST_CLASS_NAME);
136 testEventWithInstanceOnlyModifier(builder);
165 EventBuilder builder = createMethodExitWithReturnValueEventBuilder(TEST_CLASS_NAME);
166 testEventWithInstanceOnlyModifier(builder);
194 EventBuilder builder = createExceptionEventBuilder(exceptionClassSignature, true, false);
195 testEventWithInstanceOnlyModifier(builder);
287 testEventWithInstanceOnlyModifier(EventBuilder builder) argument
[all...]
H A DJDWPEventModifierTestCase.java63 EventBuilder builder = new EventBuilder(eventKind, TEST_SUSPEND_POLICY);
64 builder.setLocationOnly(new Location(typeTag, typeID, methodID,
66 return builder;
81 EventBuilder builder = new EventBuilder(eventKind, TEST_SUSPEND_POLICY);
86 builder.setExceptionOnly(exceptionClassID, caught, uncaught);
87 return builder;
99 EventBuilder builder = new EventBuilder(
101 return builder.setClassMatch(className);
113 EventBuilder builder = new EventBuilder(
115 return builder
[all...]
H A DThreadOnlyModifierTest.java70 EventBuilder builder = createBreakpointEventBuilder(typeTag,
72 testEventWithThreadOnlyModifier(builder);
90 EventBuilder builder = createMethodEntryEventBuilder(TEST_CLASS_NAME);
91 testEventWithThreadOnlyModifier(builder);
109 EventBuilder builder = createMethodExitEventBuilder(TEST_CLASS_NAME);
110 testEventWithThreadOnlyModifier(builder);
131 EventBuilder builder = createMethodExitWithReturnValueEventBuilder(TEST_CLASS_NAME);
132 testEventWithThreadOnlyModifier(builder);
151 EventBuilder builder = createExceptionEventBuilder(
154 testEventWithThreadOnlyModifier(builder);
260 testEventWithThreadOnlyModifier(EventBuilder builder) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DEventLocationEventTestCase.java42 protected abstract void createEventBuilder(EventBuilder builder); argument
112 EventBuilder builder = new EventBuilder(eventKind,
114 createEventBuilder(builder);
115 setEvent(builder, location);
121 private void setEvent(EventBuilder builder, Location location) { argument
122 builder.setLocationOnly(location);
123 Event event = builder.build();
H A DExceptionWithLocationTest.java68 protected void createEventBuilder(EventBuilder builder) { argument
73 builder.setExceptionOnly(exceptionClassId, true, false);
H A DFieldWithLocationTest.java88 protected final void createEventBuilder(EventBuilder builder) { argument
95 builder.setFieldOnly(debuggeeClassId, fieldId);
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
H A DUnixNetworkInterfaceTest.java221 StringBuilder builder = new StringBuilder();
223 builder.append(Integer.toHexString(b >= 0 ? b : b + 256)
226 builder.append(":");
229 return builder.toString();
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DKeyStoreBuilderParametersTest.java82 KeyStore.Builder builder = new EmptyBuilder();
84 KeyStoreBuilderParameters param = new KeyStoreBuilderParameters(builder);
92 assertTrue("incorrect list", result.contains(builder));
95 ksbuilders.add(builder);
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DTransformerFactoryImpl.java114 TemplatesHandler builder = newTemplatesHandler();
115 TreeWalker walker = new TreeWalker(builder,
117 builder.getSystemId());
121 return builder.getTemplates();
867 TemplatesHandler builder = newTemplatesHandler();
868 builder.setSystemId(baseID);
921 reader.setContentHandler(builder);
970 return builder.getTemplates();
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerIdentityImpl.java349 DocumentBuilder builder = builderF.newDocumentBuilder();
351 source = new DOMSource(builder.newDocument());
H A DTransformerImpl.java592 DocumentBuilder builder = builderF.newDocumentBuilder();
594 source = new DOMSource(builder.newDocument());
/external/bison/build-aux/
H A Dtexinfo.tex5164 % The following penalty ensures that the page builder is exercised
5173 % penalty the page builder will not be exercised until \eject
5189 % page builder, unlike penalties (see The TeXbook, pp. 280-281).
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/jcajce/
H A DJcaSignerInfoGeneratorBuilder.java17 private SignerInfoGeneratorBuilder builder; field in class:JcaSignerInfoGeneratorBuilder
21 builder = new SignerInfoGeneratorBuilder(digestProvider);
28 * @return the builder object
32 builder.setDirectSignature(hasNoSignedAttributes);
39 builder.setSignedAttributeGenerator(signedGen);
46 builder.setUnsignedAttributeGenerator(unsignedGen);
54 return builder.build(contentSigner, certHolder);
60 return builder.build(contentSigner, keyIdentifier);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DIETFUtils.java132 X500NameBuilder builder = new X500NameBuilder(x500Style);
180 builder.addMultiValuedRDN(toOIDArray(oids), toValueArray(values));
184 builder.addRDN(oid, unescape(value));
201 builder.addRDN(oid, unescape(value));
205 return builder.build().getRDNs();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DRFC3280CertPathUtilities.java494 CertPathBuilder builder = CertPathBuilder.getInstance("PKIX", BouncyCastleProvider.PROVIDER_NAME);
518 List certs = builder.build(params).getCertPath().getCertificates();

Completed in 8215 milliseconds

1234567891011>>