OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:stringbuffer
(Results
1 - 25
of
727
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/webkit/Source/WebCore/ForwardingHeaders/wtf/text/
StringBuffer.h
3
#include <JavaScriptCore/
StringBuffer
.h>
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
StringBufferTest.java
29
* @tests java.lang.
StringBuffer
#setLength(int)
33
StringBuffer
buffer = new
StringBuffer
("abcde");
46
buffer = new
StringBuffer
("abcde");
52
buffer = new
StringBuffer
("abcde");
61
buffer = new
StringBuffer
();
69
buffer = new
StringBuffer
();
82
buffer = new
StringBuffer
();
92
* @tests java.lang.
StringBuffer
#toString()
95
StringBuffer
buffer = new StringBuffer()
[
all
...]
StringBuffer2Test.java
22
StringBuffer
testBuffer;
25
* @tests java.lang.
StringBuffer
#
StringBuffer
()
28
// Test for method java.lang.
StringBuffer
()
29
new
StringBuffer
();
34
* @tests java.lang.
StringBuffer
#
StringBuffer
(int)
37
// Test for method java.lang.
StringBuffer
(int)
38
StringBuffer
sb = new
StringBuffer
(8)
[
all
...]
/libcore/luni/src/test/java/tests/api/javax/xml/parsers/
SAXParserTestSupport.java
100
StringBuffer
str = new
StringBuffer
();
166
public
StringBuffer
data_isEndDocument = new
StringBuffer
();
167
public
StringBuffer
data_isStartDocument = new
StringBuffer
();
168
public
StringBuffer
data_text = new
StringBuffer
();
169
public
StringBuffer
data_error = new
StringBuffer
();
[
all
...]
/external/webkit/Source/WebCore/manual-tests/resources/
DrawMessage.class
/dalvik/dx/src/junit/framework/
TestFailure.java
40
StringBuffer
buffer= new
StringBuffer
();
48
StringBuffer
buffer= stringWriter.getBuffer();
/external/junit/src/junit/framework/
TestFailure.java
40
StringBuffer
buffer= new
StringBuffer
();
48
StringBuffer
buffer= stringWriter.getBuffer();
/libcore/junit/src/main/java/junit/framework/
TestFailure.java
40
StringBuffer
buffer= new
StringBuffer
();
48
StringBuffer
buffer= stringWriter.getBuffer();
/libcore/luni/src/main/java/java/lang/
StringBuffer.java
36
* {@code new
StringBuffer
("a").append("b").append("c").toString()}.
45
public final class
StringBuffer
extends AbstractStringBuilder implements
57
* Constructs a new
StringBuffer
using the default capacity which is 16.
59
public
StringBuffer
() {
63
* Constructs a new
StringBuffer
using the specified capacity.
68
public
StringBuffer
(int capacity) {
73
* Constructs a new
StringBuffer
containing the characters in the specified
82
public
StringBuffer
(String string) {
87
* Constructs a
StringBuffer
and initializes it with the content from the
97
public
StringBuffer
(CharSequence cs)
[
all
...]
/external/nist-sip/java/gov/nist/core/
ParserCore.java
101
StringBuffer
stringBuffer
= new
StringBuffer
();
103
stringBuffer
.append(">");
107
stringBuffer
+ rule +
115
StringBuffer
stringBuffer
= new
StringBuffer
();
117
stringBuffer
.append("<");
121
stringBuffer
[
all
...]
/libcore/luni/src/main/java/java/io/
StringWriter.java
23
* A specialized {@link Writer} that writes characters to a {@code
StringBuffer
}
32
private
StringBuffer
buf;
35
* Constructs a new {@code StringWriter} which has a {@link
StringBuffer
}
37
*
StringBuffer
} is also the {@code lock} used to synchronize access to this
41
buf = new
StringBuffer
(16);
46
* Constructs a new {@code StringWriter} which has a {@link
StringBuffer
}
48
*
StringBuffer
} is also the {@code lock} used to synchronize access to this
58
buf = new
StringBuffer
(initialSize);
84
* Gets a reference to this writer's internal {@link
StringBuffer
}. Any
87
* @return a reference to this writer's internal {@code
StringBuffer
}
[
all
...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
ConversionUtilities.java
38
* Helper function to append text to a
StringBuffer
, creating it if necessary.
42
private static
StringBuffer
appendTextPart(
StringBuffer
sb, String newText) {
47
sb = new
StringBuffer
(newText);
66
StringBuffer
sbHtml = null;
67
StringBuffer
sbText = null;
68
StringBuffer
sbHtmlReply = null;
69
StringBuffer
sbTextReply = null;
70
StringBuffer
sbIntroText = null;
/external/apache-harmony/security/src/test/resources/PermissionCollection/
signedBKS.jar
/external/apache-harmony/support/src/test/resources/tests/resources/
hyts_signed.jar
/libcore/support/src/test/java/tests/resources/
hyts_signed.jar
hyts_signed_inc.jar
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
CharsetProviderTest.java
117
StringBuffer
sb = new
StringBuffer
();
127
sb = new
StringBuffer
();
163
StringBuffer
sb = new
StringBuffer
();
182
StringBuffer
sb = new
StringBuffer
();
201
StringBuffer
sb = new
StringBuffer
();
219
StringBuffer
sb = new StringBuffer()
[
all
...]
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PEMUtil.java
32
StringBuffer
l = new
StringBuffer
();
61
StringBuffer
pemBuf = new
StringBuffer
();
/libcore/dom/src/test/java/org/w3c/domts/
DOMTestIncompatibleException.java
52
StringBuffer
buf = new
StringBuffer
(
63
StringBuffer
buf = new
StringBuffer
(
/external/apache-harmony/support/src/test/java/tests/support/
Support_StringWriter.java
24
private
StringBuffer
buf;
27
* Constructs a new StringWriter which has a
StringBuffer
allocated with the
28
* default size of 16 characters. The
StringBuffer
is also the
33
buf = new
StringBuffer
(16);
38
* Constructs a new StringWriter which has a
StringBuffer
allocated with the
39
* size of <code>initialSize</code> characters. The
StringBuffer
is also
44
buf = new
StringBuffer
(initialSize);
72
* Answer the contents of this StringWriter as a
StringBuffer
. Any changes
73
* made to the
StringBuffer
by the receiver or the caller are reflected in
76
* @return this StringWriters local
StringBuffer
[
all
...]
/libcore/support/src/test/java/tests/support/
Support_StringWriter.java
24
private
StringBuffer
buf;
27
* Constructs a new StringWriter which has a
StringBuffer
allocated with the
28
* default size of 16 characters. The
StringBuffer
is also the
33
buf = new
StringBuffer
(16);
38
* Constructs a new StringWriter which has a
StringBuffer
allocated with the
39
* size of <code>initialSize</code> characters. The
StringBuffer
is also
44
buf = new
StringBuffer
(initialSize);
72
* Answer the contents of this StringWriter as a
StringBuffer
. Any changes
73
* made to the
StringBuffer
by the receiver or the caller are reflected in
76
* @return this StringWriters local
StringBuffer
[
all
...]
/packages/apps/Email/emailcommon/src/org/apache/commons/io/
HexDump.java
73
StringBuffer
buffer = new
StringBuffer
(74);
121
* Dump a long value into a
StringBuffer
.
123
* @param _lbuffer the
StringBuffer
to dump the value in
125
* @return
StringBuffer
containing the dumped value.
127
private static
StringBuffer
dump(
StringBuffer
_lbuffer, long value) {
136
* Dump a byte value into a
StringBuffer
.
138
* @param _cbuffer the
StringBuffer
to dump the value in
140
* @return
StringBuffer
containing the dumped value.
[
all
...]
/external/webkit/Source/JavaScriptCore/wtf/text/
StringBuffer.h
38
class
StringBuffer
{
39
WTF_MAKE_NONCOPYABLE(
StringBuffer
);
41
explicit
StringBuffer
(unsigned length)
49
~
StringBuffer
()
84
using WTF::
StringBuffer
;
/external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeader.java
98
StringBuffer
buffer = new
StringBuffer
(encodedHdr);
118
return encode(new
StringBuffer
()).toString();
121
public
StringBuffer
encode(
StringBuffer
buffer) {
136
protected
StringBuffer
encodeBody(
StringBuffer
buffer) {
/external/proguard/src/proguard/gui/
FilterBuilder.java
53
StringBuffer
positive = new
StringBuffer
();
54
StringBuffer
negative = new
StringBuffer
();
73
StringBuffer
positive,
74
StringBuffer
negative)
136
StringBuffer
positiveFilter = new
StringBuffer
();
137
StringBuffer
negativeFilter = new
StringBuffer
();
[
all
...]
Completed in 888 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>