Searched refs:Appendable (Results 1 - 25 of 68) sorted by relevance

123

/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DOutputBufferProvider.java25 * Returns a clean Appendable buffer ready to use while rendering.
27 Appendable get();
32 * @param buffer the Appendable object handed out by {@link #get}
34 void release(Appendable buffer);
H A DInstanceOutputBufferProvider.java31 public Appendable get() {
36 public void release(Appendable buffer) {
H A DThreadLocalOutputBufferProvider.java41 public Appendable get() {
52 public void release(Appendable buffer) {
/external/chromium_org/third_party/icu/source/common/
H A Dappendable.cpp21 Appendable::~Appendable() {}
24 Appendable::appendCodePoint(UChar32 c) {
33 Appendable::appendString(const UChar *s, int32_t length) {
53 Appendable::reserveAppendCapacity(int32_t /*appendCapacity*/) {
58 Appendable::getAppendBuffer(int32_t minCapacity,
/external/icu/icu4c/source/common/
H A Dappendable.cpp21 Appendable::~Appendable() {}
24 Appendable::appendCodePoint(UChar32 c) {
33 Appendable::appendString(const UChar *s, int32_t length) {
53 Appendable::reserveAppendCapacity(int32_t /*appendCapacity*/) {
58 Appendable::getAppendBuffer(int32_t minCapacity,
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DTextFilter.java26 void filter(String in, Appendable out) throws IOException;
H A DFunctionExecutor.java40 void escape(String name, String input, Appendable output) throws IOException;
/external/jsilver/src/com/google/clearsilver/jsilver/
H A DTemplateRenderer.java38 * java.io.Appendable
41 void render(String templateName, Data data, Appendable output, ResourceLoader resourceLoader)
45 * Same as {@link #render(String, Data, Appendable, ResourceLoader)}, except it uses the default
48 void render(String templateName, Data data, Appendable output) throws IOException,
52 * Same as {@link #render(String, Data, Appendable)}, except returns rendered template as a
64 * java.io.Appendable.
68 void render(Template template, Data data, Appendable output, ResourceLoader resourceLoader)
72 * Same as {@link #render(Template,Data,Appendable,ResourceLoader)}, except it uses the
75 void render(Template template, Data data, Appendable output) throws IOException, JSilverException;
78 * Same as {@link #render(Template,Data,Appendable)}, excep
[all...]
H A DJSilver.java104 // Object used to return Appendable output buffers when needed.
244 * System.out/err), StringBuffer/StringBuilder or anything that implements Appendable
249 public void render(String templateName, Data data, Appendable output,
265 public void render(String templateName, Data data, Appendable output) throws IOException,
271 * Same as {@link TemplateRenderer#render(String, Data, Appendable)}, except returns rendered
276 Appendable output = createAppendableBuffer();
292 * java.io.Appendable.
295 public void render(Template template, Data data, Appendable output, ResourceLoader resourceLoader)
311 * java.io.Appendable.
314 public void render(Template template, Data data, Appendable outpu
[all...]
/external/hamcrest/src/org/hamcrest/
H A DStringDescription.java9 private final Appendable out;
15 public StringDescription(Appendable out) {
/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DTemplate.java38 void render(Data data, Appendable out, ResourceLoader resourceLoader) throws IOException;
54 RenderingContext createRenderingContext(Data data, Appendable out, ResourceLoader resourceLoader);
H A DHtmlWhiteSpaceStripper.java46 public class HtmlWhiteSpaceStripper implements Appendable {
49 private final Appendable out;
84 * Intermediate Appendable object that strips whitespace as it passes through characters to
85 * another Appendable object.
87 * @param out The Appendable object to dump the stripped output to.
89 public HtmlWhiteSpaceStripper(Appendable out) {
94 * Intermediate Appendable object that strips whitespace as it passes through characters to
95 * another Appendable object.
97 * @param out The Appendable object to dump the stripped output to.
100 public HtmlWhiteSpaceStripper(Appendable ou
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DNullEscapeFunction.java31 public void filter(String in, Appendable out) throws IOException {
H A DJsValidateUnquotedLiteral.java33 public void filter(String in, Appendable out) throws IOException {
/external/jsilver/src/com/google/clearsilver/jsilver/compatibility/
H A DClearsilverRenderer.java59 public void render(String templateName, Data data, Appendable output,
87 public void render(String templateName, Data data, Appendable output) throws IOException,
94 Appendable output = new StringBuilder(8192);
100 public void render(Template template, Data data, Appendable output, ResourceLoader resourceLoader)
107 public void render(Template template, Data data, Appendable output) throws IOException,
114 Appendable output = new StringBuilder(8192);
120 public void renderFromContent(String content, Data data, Appendable output) throws IOException,
127 Appendable output = new StringBuilder(8192);
/external/guava/guava-tests/test/com/google/common/io/
H A DAppendableWriterTest.java32 private static class SpyAppendable implements Appendable, Flushable, Closeable {
37 @Override public Appendable append(CharSequence csq) {
42 @Override public Appendable append(char c) {
47 @Override public Appendable append(CharSequence csq, int start, int end) {
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DCssUrlValidateFunction.java43 protected void applyEscaping(String in, Appendable out) throws IOException {
H A DHtmlUrlValidateFunction.java41 protected void applyEscaping(String in, Appendable out) throws IOException {
H A DBaseUrlValidateFunction.java41 public void filter(String in, Appendable out) throws IOException {
55 protected abstract void applyEscaping(String in, Appendable out) throws IOException;
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dappendable.h20 * \brief C++ API: Appendable class: Sink for Unicode code points and 16-bit code units (UChars).
32 * Combines elements of Java Appendable and ICU4C ByteSink.
49 class U_COMMON_API Appendable : public UObject { class in inherits:UObject
55 ~Appendable();
101 * on this Appendable.
117 * If the Appendable allocates or reallocates an internal buffer, it should use
146 * An Appendable implementation which writes to a UnicodeString.
151 class U_COMMON_API UnicodeStringAppendable : public Appendable {
155 * @param s The UnicodeString to which this Appendable will write.
208 * For details see Appendable
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dappendable.h20 * \brief C++ API: Appendable class: Sink for Unicode code points and 16-bit code units (UChars).
32 * Combines elements of Java Appendable and ICU4C ByteSink.
49 class U_COMMON_API Appendable : public UObject { class in inherits:UObject
55 ~Appendable();
101 * on this Appendable.
117 * If the Appendable allocates or reallocates an internal buffer, it should use
146 * An Appendable implementation which writes to a UnicodeString.
151 class U_COMMON_API UnicodeStringAppendable : public Appendable {
155 * @param s The UnicodeString to which this Appendable will write.
208 * For details see Appendable
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dustrtest.h15 class Appendable;
87 void doTestAppendable(UnicodeString &dest, Appendable &app);
/external/guava/guava/src/com/google/common/io/
H A DAppendableWriter.java25 * Writer that places all output on an {@link Appendable} target. If the target
34 private final Appendable target;
42 AppendableWriter(Appendable target) {
/external/icu/icu4c/source/test/intltest/
H A Dustrtest.h15 class Appendable;
87 void doTestAppendable(UnicodeString &dest, Appendable &app);
/external/guava/guava/src/com/google/common/base/
H A DJoiner.java36 * {@link Map}) with a separator. It either appends the results to an {@link Appendable} or returns
92 * @deprecated use {@link #appendTo(Appendable, Iterator)} by casting {@code parts} to
98 public final <A extends Appendable, I extends Object & Iterable<?> & Iterator<?>> A
107 public <A extends Appendable> A appendTo(A appendable, Iterable<?> parts) throws IOException {
118 public <A extends Appendable> A appendTo(A appendable, Iterator<?> parts) throws IOException {
134 public final <A extends Appendable> A appendTo(A appendable, Object[] parts) throws IOException {
141 public final <A extends Appendable> A appendTo(
164 * separator between each, to {@code builder}. Identical to {@link #appendTo(Appendable,
173 * separator between each, to {@code builder}. Identical to {@link #appendTo(Appendable,
181 appendTo((Appendable) builde
[all...]

Completed in 4474 milliseconds

123