HomeSort by relevance Sort by last modified time
    Searched defs:append (Results 1 - 25 of 1515) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/lang/
Appendable.java 22 * Declares methods to append characters or character sequences. Any class that
41 * the character to append.
46 Appendable append(char c) throws IOException; method in interface:Appendable
50 * not append the whole sequence, for example if the target is a buffer with
56 * the character sequence to append.
61 Appendable append(CharSequence csq) throws IOException; method in interface:Appendable
67 * to calling {@code append(csq.subSequence(start, end))}.
72 * the character sequence to append.
86 Appendable append(CharSequence csq, int start, int end) throws IOException; method in interface:Appendable
  /external/deqp/framework/delibs/decpp/
dePoolString.cpp 38 void PoolString::append (const char* str) function in class:de::PoolString
47 void PoolString::append (const std::string& str) function in class:de::PoolString
55 void PoolString::append (const PoolString& str) function in class:de::PoolString
  /external/icu/icu4c/source/layout/
LEInsertionList.h 166 * to be first on the list, we need to append the
171 le_bool append; member in class:LEInsertionList
  /hardware/intel/img/hwcomposer/merrifield/common/utils/
Dump.cpp 36 void Dump::append(const char *fmt, ...) function in class:android::intel::Dump
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/utils/
Dump.cpp 36 void Dump::append(const char *fmt, ...) function in class:android::intel::Dump
  /external/guava/guava/src/com/google/common/io/
AppendableWriter.java 44 * @param target target to which to append output
59 target.append(new String(cbuf, off, len));
83 target.append((char) c);
88 target.append(str);
93 // tricky: append takes start, end pair...
94 target.append(str, off, off + len);
97 @Override public Writer append(char c) throws IOException { method in class:AppendableWriter
99 target.append(c);
103 @Override public Writer append(@Nullable CharSequence charSeq) throws IOException { method in class:AppendableWriter
105 target.append(charSeq)
109 @Override public Writer append(@Nullable CharSequence charSeq, int start, int end) method in class:AppendableWriter
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringBuilderExtensions.cs 44 public static void append<T>( this StringBuilder buffer, T value ) method in class:Antlr.Runtime.JavaExtensions.StringBuilderExtensions
46 buffer.Append( value );
  /external/clang/include/clang/Basic/
MacroBuilder.h 29 /// Append a \#define line for macro of the form "\#define Name Value\n".
34 /// Append a \#undef line for Name. Name should be of the form XXX
40 /// Directly append Str and a newline to the underlying buffer.
41 void append(const Twine &Str) { function in class:clang::MacroBuilder
  /external/clang/test/CodeGenCXX/
pr18962.cpp 4 // append has to have the same prototype as fn1 to tickle the bug.
5 void (*append)(A *); member in class:A
27 // We end up using an opaque type for 'append' to avoid circular references.
  /external/hamcrest/src/org/hamcrest/
StringDescription.java 38 protected void append(String str) { method in class:StringDescription
40 out.append(str);
46 protected void append(char c) { method in class:StringDescription
48 out.append(c);
  /external/icu/icu4c/source/common/
charstr.cpp 40 CharString &CharString::append(char c, UErrorCode &errorCode) { function in class:CharString
48 CharString &CharString::append(const char *s, int32_t sLength, UErrorCode &errorCode) { function in class:CharString
72 // so we have to make a copy of the substring and append that.
73 return append(CharString(s, sLength, errorCode), errorCode);
139 append(U_FILE_SEP_CHAR, errorCode);
141 append(s, errorCode);
  /external/javassist/src/main/javassist/compiler/
KeywordTable.java 29 public void append(String name, int t) { method in class:KeywordTable
SymbolTable.java 41 public void append(String name, Declarator value) { method in class:SymbolTable
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
CharCache.java 31 public void append(String str) { method in class:CharCache
47 public void append(char c) {
  /external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/
ListAppender.java 39 protected void append(LoggingEvent event) { method in class:ListAppender
  /external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/impl/
RecursiveAppender.java 45 protected void append(LoggingEvent arg0) { method in class:RecursiveAppender
  /frameworks/av/include/media/stagefright/foundation/
AString.h 52 void append(char c) { append(&c, 1); } function in struct:android::AString
53 void append(const char *s);
54 void append(const char *s, size_t size);
55 void append(const AString &from);
56 void append(const AString &from, size_t offset, size_t n);
57 void append(int x);
58 void append(unsigned x);
59 void append(long x);
60 void append(unsigned long x)
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_StringWriter.java 112 this.buf.append(buf, offset, count);
129 buf.append((char) oneChar);
142 buf.append(str);
161 buf.append(sub);
  /external/apache-http/src/org/apache/http/impl/auth/
BasicScheme.java 171 tmp.append(credentials.getUserPrincipal().getName());
172 tmp.append(":");
173 tmp.append((credentials.getPassword() == null) ? "null" : credentials.getPassword());
180 buffer.append(AUTH.PROXY_AUTH_RESP);
182 buffer.append(AUTH.WWW_AUTH_RESP);
184 buffer.append(": Basic ");
185 buffer.append(base64password, 0, base64password.length);
  /libcore/luni/src/main/java/java/io/
StringWriter.java 123 buf.append(chars, offset, count);
135 buf.append((char) oneChar);
147 buf.append(str);
167 buf.append(sub);
175 * the character to append to the target stream.
179 public StringWriter append(char c) { method in class:StringWriter
195 public StringWriter append(CharSequence csq) { method in class:StringWriter
225 public StringWriter append(CharSequence csq, int start, int end) { method in class:StringWriter
  /libcore/support/src/test/java/tests/support/
Support_StringWriter.java 118 this.buf.append(buf, offset, count);
137 buf.append((char) oneChar);
152 buf.append(str);
175 buf.append(sub);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
HexDump.java 81 dump(buffer, display_offset).append(' ');
86 buffer.append(" ");
88 buffer.append(' ');
92 buffer.append((char) data[k + j]);
94 buffer.append('.');
97 buffer.append(EOL);
130 .append(_hexcodes[((int) (value >> _shifts[j])) & 15]); method
144 _cbuffer.append(_hexcodes[(value >> _shifts[j + 6]) & 15]);
  /external/guava/guava-tests/test/com/google/common/io/
AppendableWriterTest.java 37 @Override public Appendable append(CharSequence csq) { method in class:AppendableWriterTest.SpyAppendable
38 result.append(csq);
42 @Override public Appendable append(char c) { method in class:AppendableWriterTest.SpyAppendable
43 result.append(c);
47 @Override public Appendable append(CharSequence csq, int start, int end) { method in class:AppendableWriterTest.SpyAppendable
48 result.append(csq, start, end);
79 writer.append("Hello,");
80 writer.append(' ');
81 writer.append("The World Wide Web", 4, 9);
82 writer.append("!");
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
ASMifierAbstractVisitor.java 78 buf.append("{\n")
79 .append("av0 = ")
80 .append(name)
81 .append(".visitAnnotation(");
83 buf.append(", ").append(visible).append(");\n");
98 buf.append("// ATTRIBUTE ").append(attr.type).append('\n');
189 .append((int) v[i]); method
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSparseBooleanArray.java 70 public void append(int key, boolean value) { method in class:ShadowSparseBooleanArray
71 sparseArray.append(key, value);

Completed in 1961 milliseconds

1 2 3 4 5 6 7 8 91011>>