Home
last modified time | relevance | path

Searched refs:Appendable (Results 1 – 25 of 52) sorted by relevance

123

/external/icu4c/common/
Dappendable.cpp21 Appendable::~Appendable() {} in ~Appendable()
24 Appendable::appendCodePoint(UChar32 c) { in appendCodePoint()
33 Appendable::appendString(const UChar *s, int32_t length) { in appendString()
53 Appendable::reserveAppendCapacity(int32_t /*appendCapacity*/) { in reserveAppendCapacity()
58 Appendable::getAppendBuffer(int32_t minCapacity, in getAppendBuffer()
/external/jsilver/src/com/google/clearsilver/jsilver/compatibility/
DClearsilverRenderer.java59 public void render(String templateName, Data data, Appendable output, in render()
87 public void render(String templateName, Data data, Appendable output) throws IOException, in render()
94 Appendable output = new StringBuilder(8192); in render()
100 public void render(Template template, Data data, Appendable output, ResourceLoader resourceLoader) in render()
107 public void render(Template template, Data data, Appendable output) throws IOException, in render()
114 Appendable output = new StringBuilder(8192); in render()
120 public void renderFromContent(String content, Data data, Appendable output) throws IOException, in renderFromContent()
127 Appendable output = new StringBuilder(8192); in renderFromContent()
/external/jsilver/src/com/google/clearsilver/jsilver/template/
DHtmlWhiteSpaceStripper.java46 public class HtmlWhiteSpaceStripper implements Appendable {
49 private final Appendable out;
89 public HtmlWhiteSpaceStripper(Appendable out) { in HtmlWhiteSpaceStripper()
100 public HtmlWhiteSpaceStripper(Appendable out, int level) { in HtmlWhiteSpaceStripper()
111 public Appendable append(CharSequence csq) throws IOException { in append()
116 public Appendable append(CharSequence csq, int start, int end) throws IOException { in append()
124 public Appendable append(char c) throws IOException { in append()
DTemplate.java38 void render(Data data, Appendable out, ResourceLoader resourceLoader) throws IOException; in render()
54 RenderingContext createRenderingContext(Data data, Appendable out, ResourceLoader resourceLoader); in createRenderingContext()
/external/jsilver/src/com/google/clearsilver/jsilver/
DTemplateRenderer.java41 void render(String templateName, Data data, Appendable output, ResourceLoader resourceLoader) in render()
48 void render(String templateName, Data data, Appendable output) throws IOException, in render()
68 void render(Template template, Data data, Appendable output, ResourceLoader resourceLoader) in render()
75 void render(Template template, Data data, Appendable output) throws IOException, JSilverException; in render()
93 void renderFromContent(String content, Data data, Appendable output) throws IOException, in renderFromContent()
DJSilver.java249 public void render(String templateName, Data data, Appendable output, in render()
265 public void render(String templateName, Data data, Appendable output) throws IOException, in render()
276 Appendable output = createAppendableBuffer(); in render()
295 public void render(Template template, Data data, Appendable output, ResourceLoader resourceLoader) in render()
314 public void render(Template template, Data data, Appendable output) throws IOException, in render()
321 Appendable output = createAppendableBuffer(); in render()
341 public void renderFromContent(String content, Data data, Appendable output) throws IOException, in renderFromContent()
353 Appendable output = createAppendableBuffer(); in renderFromContent()
383 public Appendable createAppendableBuffer() { in createAppendableBuffer()
387 public void releaseAppendableBuffer(Appendable buffer) { in releaseAppendableBuffer()
/external/guava/guava/src/com/google/common/base/
DJoiner.java98 public final <A extends Appendable, I extends Object & Iterable<?> & Iterator<?>> A
107 public <A extends Appendable> A appendTo(A appendable, Iterable<?> parts) throws IOException { in appendTo()
118 public <A extends Appendable> A appendTo(A appendable, Iterator<?> parts) throws IOException { in appendTo()
134 public final <A extends Appendable> A appendTo(A appendable, Object[] parts) throws IOException { in appendTo()
141 public final <A extends Appendable> A appendTo( in appendTo()
181 appendTo((Appendable) builder, parts); in appendTo()
286 @Override public <A extends Appendable> A appendTo(A appendable, Iterator<?> parts)
359 public <A extends Appendable> A appendTo(A appendable, Map<?, ?> map) throws IOException {
391 public <A extends Appendable,
405 public <A extends Appendable> A appendTo(A appendable, Iterable<? extends Entry<?, ?>> entries)
[all …]
/external/guava/guava-tests/test/com/google/common/io/
DAppendableWriterTest.java32 private static class SpyAppendable implements Appendable, Flushable, Closeable {
37 @Override public Appendable append(CharSequence csq) { in append()
42 @Override public Appendable append(char c) { in append()
47 @Override public Appendable append(CharSequence csq, int start, int end) { in append()
/external/icu4c/common/unicode/
Dappendable.h49 class U_COMMON_API Appendable : public UObject {
55 ~Appendable();
151 class U_COMMON_API UnicodeStringAppendable : public Appendable {
Ducharstrie.h31 class Appendable; variable
250 int32_t getNextUChars(Appendable &out) const;
478 static void getNextBranchUChars(const UChar *pos, int32_t length, Appendable &out);
/external/jsilver/src/com/google/clearsilver/jsilver/output/
DOutputBufferProvider.java27 Appendable get(); in get()
34 void release(Appendable buffer); in release()
DInstanceOutputBufferProvider.java31 public Appendable get() { in get()
36 public void release(Appendable buffer) { in release()
DThreadLocalOutputBufferProvider.java41 public Appendable get() { in get()
52 public void release(Appendable buffer) { in release()
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
DTextHtmlFunction.java92 public void filter(String in, Appendable out) throws IOException { in filter()
113 private void splitAndConvert(String in, Appendable out) throws IOException { in splitAndConvert()
158 private void formatEmail(String in, int start, int end, Appendable out) throws IOException { in formatEmail()
179 private void formatUrl(String in, int start, int end, boolean addScheme, Appendable out) in formatUrl()
DBaseUrlValidateFunction.java41 public void filter(String in, Appendable out) throws IOException { in filter()
55 protected abstract void applyEscaping(String in, Appendable out) throws IOException; in applyEscaping()
DHtmlStripFunction.java95 public void filter(String in, Appendable out) throws IOException { in filter()
163 private void appendDecodedEntityReference(Appendable out, CharSequence entityName) in appendDecodedEntityReference()
194 private void appendNumberedEntity(Appendable out, CharSequence entity) throws IOException { in appendNumberedEntity()
/external/hamcrest/src/org/hamcrest/
DStringDescription.java9 private final Appendable out;
15 public StringDescription(Appendable out) { in StringDescription()
/external/guava/guava/src/com/google/common/io/
DCharStreams.java124 public static <W extends Appendable & Closeable> void write(CharSequence from,
148 W extends Appendable & Closeable> long copy(InputSupplier<R> from,
178 InputSupplier<R> from, Appendable to) throws IOException {
199 public static long copy(Readable from, Appendable to) throws IOException {
435 public static Writer asWriter(Appendable target) {
DAppendableWriter.java34 private final Appendable target;
42 AppendableWriter(Appendable target) { in AppendableWriter()
/external/icu4c/test/intltest/
Dustrtest.h15 class Appendable; variable
87 void doTestAppendable(UnicodeString &dest, Appendable &app);
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DBaseCompiledTemplate.java74 public void render(Data data, Appendable out, ResourceLoader resourceLoader) throws IOException { in render()
80 public RenderingContext createRenderingContext(Data data, Appendable out, in createRenderingContext()
255 … public void render(Data data, Appendable out, ResourceLoader resourceLoader) throws IOException { in render()
260 public RenderingContext createRenderingContext(Data data, Appendable out, in createRenderingContext()
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DInterpretedTemplate.java58 public void render(Data data, Appendable out, ResourceLoader resourceLoader) throws IOException { in render()
72 public RenderingContext createRenderingContext(Data data, Appendable out, in createRenderingContext()
DInterpretedMacro.java72 public void render(Data data, Appendable out, ResourceLoader resourceLoader) throws IOException { in render()
77 public RenderingContext createRenderingContext(Data data, Appendable out, in createRenderingContext()
/external/jsilver/src/com/google/clearsilver/jsilver/data/
DNestedMapData.java464 public void write(Appendable out, int indent) throws IOException { in write()
522 private void writeMultiline(Appendable out) throws IOException { in writeMultiline()
534 private void indent(Appendable out, int indent) throws IOException { in indent()
540 private void writeNameAttrs(Appendable out) throws IOException { in writeNameAttrs()
566 static void writeAttributeValue(Appendable out, String value) throws IOException { in writeAttributeValue()
/external/guava/guava-tests/test/com/google/common/base/
DJoinerTest.java164 private static final Appendable NASTY_APPENDABLE = new Appendable() {
166 public Appendable append(CharSequence csq) throws IOException {
170 public Appendable append(CharSequence csq, int start, int end) throws IOException {
174 public Appendable append(char c) throws IOException {

123