HomeSort by relevance Sort by last modified time
    Searched refs:Appendable (Results 1 - 25 of 323) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/output/
OutputBufferProvider.java 25 * 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);
InstanceOutputBufferProvider.java 31 public Appendable get() {
36 public void release(Appendable buffer) {
ThreadLocalOutputBufferProvider.java 41 public Appendable get() {
52 public void release(Appendable buffer) {
  /libcore/ojluni/src/main/java/java/lang/
Appendable.java 32 * <tt>Appendable</tt> interface must be implemented by any class whose
51 public interface Appendable {
54 * Appends the specified character sequence to this <tt>Appendable</tt>.
64 * appended to this Appendable.
66 * @return A reference to this <tt>Appendable</tt>
71 Appendable append(CharSequence csq) throws IOException;
75 * <tt>Appendable</tt>.
97 * @return A reference to this <tt>Appendable</tt>
107 Appendable append(CharSequence csq, int start, int end) throws IOException;
110 * Appends the specified character to this <tt>Appendable</tt>
    [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/format/
MockIOExceptionAppendable.java 65 * Mock Appendable that throws IOException.
67 public class MockIOExceptionAppendable implements Appendable {
69 public Appendable append(CharSequence csq) throws IOException {
73 public Appendable append(char c) throws IOException {
77 public Appendable append(CharSequence csq, int start, int end)
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/
Escaper.java 73 * Returns an {@code Appendable} instance which automatically escapes all
75 * {@code Appendable}.
92 * the underlying {@code Appendable} to append escaped output to
93 * @return an {@code Appendable} which passes text to {@code out} after
96 public Appendable escape(Appendable out);
  /external/icu/icu4c/source/common/
appendable.cpp 8 * file name: appendable.cpp
18 #include "unicode/appendable.h"
23 Appendable::~Appendable() {}
26 Appendable::appendCodePoint(UChar32 c) {
35 Appendable::appendString(const UChar *s, int32_t length) {
55 Appendable::reserveAppendCapacity(int32_t /*appendCapacity*/) {
60 Appendable::getAppendBuffer(int32_t minCapacity,
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
Writable.java 27 Appendable write(Appendable appendable, Context context) throws IOException;
NullName.java 31 public Appendable write(Appendable appendable, Context context) throws IOException {
32 return appendable.append("null");
VoidName.java 36 public Appendable write(Appendable appendable, Context context) throws IOException {
37 return appendable.append("void");
IndentingAppendable.java 22 final class IndentingAppendable implements Appendable {
24 private final Appendable delegate;
27 IndentingAppendable(Appendable delegate) {
31 IndentingAppendable(String indentation, Appendable delegate) {
37 public Appendable append(CharSequence csq) throws IOException {
42 public Appendable append(CharSequence csq, int start, int end) throws IOException {
56 public Appendable append(char c) throws IOException {
Modifiable.java 55 Appendable writeModifiers(Appendable appendable) throws IOException {
57 appendable.append(modifier.toString()).append(' ');
59 return appendable;
62 Appendable writeAnnotations(Appendable appendable, Context context) throws IOException {
64 annotationWriter.write(appendable, context).append('\n');
66 return appendable;
    [all...]
ArrayTypeName.java 34 public Appendable write(Appendable appendable, Context context) throws IOException {
35 return componentType.write(appendable, context).append("[]");
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
TextFilter.java 26 void filter(String in, Appendable out) throws IOException;
FunctionExecutor.java 40 void escape(String name, String input, Appendable output) throws IOException;
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Escaper.java 69 * Returns an {@code Appendable} instance which automatically escapes all text appended to it
70 * before passing the resulting text to an underlying {@code Appendable}.
72 * <p>Note that the Appendable returned by this method may treat input characters differently
84 * <p>In all implementations the escaped Appendable should throw {@code NullPointerException} if
87 * @param out the underlying {@code Appendable} to append escaped output to
88 * @return an {@code Appendable} which passes text to {@code out} after escaping it
90 public abstract Appendable escape(Appendable out);
CharEscaper.java 63 * Returns an {@code Appendable} instance which automatically escapes all text appended to it
64 * before passing the resulting text to an underlying {@code Appendable}.
67 * {@code Appendable}, and will throw {@link NullPointerException} if asked to append {@code
77 * @param out the underlying {@code Appendable} to append escaped output to
78 * @return an {@code Appendable} which passes text to {@code out} after escaping it
81 @Override public Appendable escape(final Appendable out) {
84 return new Appendable() {
85 @Override public Appendable append(CharSequence csq) throws IOException {
90 @Override public Appendable append(CharSequence csq, int start, int end) throws IOException
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/
TemplateRenderer.java 38 * 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)}, except returns rendered template as
    [all...]
  /external/icu/icu4c/source/common/unicode/
appendable.h 8 * file name: appendable.h
22 * \brief C++ API: Appendable class: Sink for Unicode code points and 16-bit code units (char16_ts).
34 * Combines elements of Java Appendable and ICU4C ByteSink.
51 class U_COMMON_API Appendable : public UObject {
57 ~Appendable();
103 * on this Appendable.
119 * If the Appendable allocates or reallocates an internal buffer, it should use
148 * An Appendable implementation which writes to a UnicodeString.
153 class U_COMMON_API UnicodeStringAppendable : public Appendable {
157 * @param s The UnicodeString to which this Appendable will write
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
StringDescription.java 9 private final Appendable out;
15 public StringDescription(Appendable out) {
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
Template.java 38 void render(Data data, Appendable out, ResourceLoader resourceLoader) throws IOException;
54 RenderingContext createRenderingContext(Data data, Appendable out, ResourceLoader resourceLoader);
HtmlWhiteSpaceStripper.java 46 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 out, int level)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
NullEscapeFunction.java 31 public void filter(String in, Appendable out) throws IOException {
  /external/icu/icu4c/source/test/intltest/
ustrtest.h 18 class Appendable;
90 void doTestAppendable(UnicodeString &dest, Appendable &app);
  /external/jsilver/src/com/google/clearsilver/jsilver/compatibility/
ClearsilverRenderer.java 59 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);

Completed in 484 milliseconds

1 2 3 4 5 6 7 8 91011>>