/external/icu4c/common/ |
D | appendable.cpp | 21 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/ |
D | ClearsilverRenderer.java | 59 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/ |
D | HtmlWhiteSpaceStripper.java | 46 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()
|
D | Template.java | 38 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/ |
D | TemplateRenderer.java | 41 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()
|
D | JSilver.java | 249 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/ |
D | Joiner.java | 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 { 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/ |
D | AppendableWriterTest.java | 32 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/ |
D | appendable.h | 49 class U_COMMON_API Appendable : public UObject { 55 ~Appendable(); 151 class U_COMMON_API UnicodeStringAppendable : public Appendable {
|
D | ucharstrie.h | 31 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/ |
D | OutputBufferProvider.java | 27 Appendable get(); in get() 34 void release(Appendable buffer); in release()
|
D | InstanceOutputBufferProvider.java | 31 public Appendable get() { in get() 36 public void release(Appendable buffer) { in release()
|
D | ThreadLocalOutputBufferProvider.java | 41 public Appendable get() { in get() 52 public void release(Appendable buffer) { in release()
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
D | TextHtmlFunction.java | 92 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()
|
D | BaseUrlValidateFunction.java | 41 public void filter(String in, Appendable out) throws IOException { in filter() 55 protected abstract void applyEscaping(String in, Appendable out) throws IOException; in applyEscaping()
|
D | HtmlStripFunction.java | 95 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/ |
D | StringDescription.java | 9 private final Appendable out; 15 public StringDescription(Appendable out) { in StringDescription()
|
/external/guava/guava/src/com/google/common/io/ |
D | CharStreams.java | 124 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) {
|
D | AppendableWriter.java | 34 private final Appendable target; 42 AppendableWriter(Appendable target) { in AppendableWriter()
|
/external/icu4c/test/intltest/ |
D | ustrtest.h | 15 class Appendable; variable 87 void doTestAppendable(UnicodeString &dest, Appendable &app);
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | BaseCompiledTemplate.java | 74 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/ |
D | InterpretedTemplate.java | 58 public void render(Data data, Appendable out, ResourceLoader resourceLoader) throws IOException { in render() 72 public RenderingContext createRenderingContext(Data data, Appendable out, in createRenderingContext()
|
D | InterpretedMacro.java | 72 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/ |
D | NestedMapData.java | 464 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/ |
D | JoinerTest.java | 164 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 {
|