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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/logging/src/main/java/java/util/logging/
XMLFormatter.java 64 sb.append(("<record>")).append(lineSeperator);
65 sb.append(indent).append(("<date>")).append(date).append(("</date>"))
66 .append(lineSeperator);
67 sb.append(indent).append(("<millis>")).append(time).append
    [all...]
  /frameworks/base/tools/preload/loadclass/
LoadClass.java 64 response.append(',').append(memoryInfo.nativeSharedDirty);
65 response.append(',').append(memoryInfo.dalvikSharedDirty);
66 response.append(',').append(memoryInfo.otherSharedDirty);
67 response.append(',').append(memoryInfo.nativePrivateDirty);
68 response.append(',').append(memoryInfo.dalvikPrivateDirty)
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
CSVFormatter.java 34 csvBuilder.append(col);
35 csvBuilder.append(DELIMITER);
38 csvBuilder.append("\n");
45 rowOutput.append(entry.getTimestamp());
46 rowOutput.append(DELIMITER);
47 rowOutput.append(entry.getTag());
48 rowOutput.append(DELIMITER);
49 //rowOutput.append(entry.getType());
50 //rowOutput.append(DELIMITER);
53 rowOutput.append(entry.getLocation().getAccuracy())
    [all...]
  /cts/tools/signature-tools/src/signature/model/impl/
SigConstructor.java 36 builder.append(super.toString());
37 builder.append(" ");
38 builder.append(Modifier.toString(getModifiers()));
40 builder.append("<");
41 builder.append(ModelUtil.separate(getTypeParameters(), ", "));
42 builder.append("> ");
44 builder.append(getName());
45 builder.append("(");
46 builder.append(getParameters().isEmpty() ? "" : ModelUtil.separate(
48 builder.append(")");
    [all...]
  /dalvik/dx/tests/091-ssa-const-collector/
Blort.java 24 sb.append("foo");
25 sb.append("foo");
26 sb.append("foo");
27 sb.append("foo");
28 sb.append("foo");
29 sb.append("foo");
35 sb.append("foo");
36 sb.append("foo");
37 sb.append("foo");
39 sb.append("foo")
    [all...]
  /frameworks/base/tests/framework-tests/src/com/android/internal/http/multipart/
MultipartTest.java 33 filebuffer.append(filepartStr);
56 contentType.append("; boundary=");
57 contentType.append(boundry);
62 output.append("--");
63 output.append(boundry);
64 output.append(CRLF);
66 output.append("Content-Disposition: form-data; name=\"stringpart\"");
67 output.append(CRLF);
68 output.append("Content-Type: text/plain; charset=US-ASCII");
69 output.append(CRLF)
    [all...]
  /external/easymock/src/org/easymock/internal/
ArgumentToString.java 29 buffer.append("null");
31 buffer.append("\"");
32 buffer.append(value);
33 buffer.append("\"");
35 buffer.append("'");
36 buffer.append(value);
37 buffer.append("'");
39 buffer.append("[");
42 buffer.append(", ");
46 buffer.append("]");
    [all...]
ErrorMessage.java 45 buffer.append("\n ").append(message).append(", actual: ");
48 buffer.append(getActualCount() + 1);
50 buffer.append(getActualCount());
51 buffer.append(" (+1)");
55 buffer.append(getActualCount());
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/utils/
Array.java 59 sb.append(prefix);
62 sb.append(offsetPrefix[offset.length()]);
63 sb.append(offset);
68 sb.append(' ');
73 sb.append('0');
75 sb.append(hexTail);
79 charForm.append(
83 sb.append(' ');
87 sb.append(' ');
88 sb.append(charForm.toString())
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplaySync.java 176 sb.append(AUTH_NAMES[auth]).append(": \n");
185 sb.append("messages from server: ").append(val).append("\n");
187 sb.append("labels from server: ").append(val).append("\n");
189 sb.append("check conversation requests from server: ").append(val).append("\n")
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteClosable.java 61 buff.append(this.getClass().getName());
62 buff.append(" (");
64 buff.append("database = ");
65 buff.append(((SQLiteDatabase)this).getPath());
68 buff.append("mSql = ");
69 buff.append(((SQLiteProgram)this).mSql);
71 buff.append("mStartPos = ");
72 buff.append(((CursorWindow)this).getStartPosition());
74 buff.append(") ");
  /frameworks/base/services/java/com/android/server/am/
BackupRecord.java 50 sb.append("BackupRecord{")
51 .append(Integer.toHexString(System.identityHashCode(this)))
52 .append(' ').append(appInfo.packageName)
53 .append(' ').append(appInfo.name)
54 .append(' ').append(appInfo.backupAgentName).append('}');
  /frameworks/base/core/java/android/content/
SyncResult.java 252 sb.append("SyncResult:");
254 sb.append(" syncAlreadyInProgress: ").append(syncAlreadyInProgress);
256 if (tooManyDeletions) sb.append(" tooManyDeletions: ").append(tooManyDeletions);
257 if (tooManyRetries) sb.append(" tooManyRetries: ").append(tooManyRetries);
258 if (databaseError) sb.append(" databaseError: ").append(databaseError);
259 if (fullSyncRequested) sb.append(" fullSyncRequested: ").append(fullSyncRequested)
    [all...]
SyncOperation.java 80 sb.append("authority: ").append(authority);
81 sb.append(" account: ").append(account);
82 sb.append(" extras: ");
84 sb.append(" syncSource: ").append(syncSource);
85 sb.append(" when: ").append(earliestRunTime);
86 sb.append(" expedited: ").append(expedited)
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
ReasonCode.java 92 buffer.append(prefix).append("Reason Code: [ "); //$NON-NLS-1$
95 buffer.append("unspecified"); //$NON-NLS-1$
98 buffer.append("keyCompromise"); //$NON-NLS-1$
101 buffer.append("cACompromise"); //$NON-NLS-1$
104 buffer.append("affiliationChanged"); //$NON-NLS-1$
107 buffer.append("superseded"); //$NON-NLS-1$
110 buffer.append("cessationOfOperation"); //$NON-NLS-1$
113 buffer.append("certificateHold"); //$NON-NLS-1$
116 buffer.append("removeFromCRL"); //$NON-NLS-1
    [all...]
KeyUsage.java 101 buffer.append(prefix).append("KeyUsage [\n"); //$NON-NLS-1$
104 buffer.append(prefix).append(" ") //$NON-NLS-1$
105 .append(USAGES[i]).append('\n');
108 buffer.append(prefix).append("]\n"); //$NON-NLS-1$
  /external/webkit/WebCore/editing/
HTMLInterchange.cpp 45 convertedSpaceString.append(noBreakSpace);
76 append(s, convertedSpaceString());
77 s.append(' ');
78 append(s, convertedSpaceString());
83 append(s, convertedSpaceString());
85 s.append(' ');
90 append(s, convertedSpaceString());
91 s.append(' ');
94 append(s, convertedSpaceString());
95 append(s, convertedSpaceString())
    [all...]
  /frameworks/base/core/java/android/net/
InterfaceConfiguration.java 39 str.append("ipddress "); putAddress(str, ipAddr);
40 str.append(" netmask "); putAddress(str, netmask);
41 str.append(" flags ").append(interfaceFlags);
42 str.append(" hwaddr ").append(hwAddr);
48 buf.append((addr >> 24) & 0xff).append('.').
49 append((addr >> 16) & 0xff).append('.')
    [all...]
DhcpInfo.java 43 str.append("ipaddr "); putAddress(str, ipAddress);
44 str.append(" gateway "); putAddress(str, gateway);
45 str.append(" netmask "); putAddress(str, netmask);
46 str.append(" dns1 "); putAddress(str, dns1);
47 str.append(" dns2 "); putAddress(str, dns2);
48 str.append(" DHCP server "); putAddress(str, serverAddress);
49 str.append(" lease ").append(leaseDuration).append(" seconds");
55 buf.append(addr & 0xff).append('.')
58 append((addr >>>= 8) & 0xff); method
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/
ProtectionDomain.java 217 buf.append("ProtectionDomain\n"); //$NON-NLS-1$
218 buf.append("CodeSource=").append( //$NON-NLS-1$
219 codeSource == null ? "<null>" : codeSource.toString()).append( //$NON-NLS-1$
221 buf.append("ClassLoader=").append( //$NON-NLS-1$
223 .append("\n"); //$NON-NLS-1$
225 buf.append("<no principals>\n"); //$NON-NLS-1$
227 buf.append("Principals: <\n"); //$NON-NLS-1$
229 buf.append("\t").append( //$NON-NLS-1
    [all...]
  /build/tools/droiddoc/src/
AnnotationInstanceInfo.java 42 str.append("@");
43 str.append(mType.qualifiedName());
44 str.append("(");
49 str.append(value.element().name());
50 str.append("=");
51 str.append(value.valueString());
53 str.append(",");
56 str.append(")");
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/
DOMTestIncompatibleException.java 54 buf.append(feature);
55 buf.append("\" version=\"");
56 buf.append(version);
57 buf.append("\".");
65 buf.append(href);
66 buf.append("\" not available for =\"");
67 buf.append(contentType);
68 buf.append("\".");
  /dalvik/libcore/regex/src/main/java/java/util/regex/
PatternSyntaxException.java 95 builder.append(' ');
96 builder.append(desc);
100 builder.append(" near index " + index + ":");
104 builder.append('\n');
105 builder.append(pattern);
110 builder.append('\n');
111 builder.append(spaces);
112 builder.append('^');
  /dalvik/libcore/luni/src/main/java/java/io/
FileWriter.java 47 * {@code append} determines whether or not the file is opened and appended
52 * @param append
53 * indicates whether or not to append to an existing file.
57 public FileWriter(File file, boolean append) throws IOException {
58 super(new FileOutputStream(file, append));
85 * parameter {@code append} determines whether or not the file is opened and
90 * @param append
91 * indicates whether or not to append to an existing file.
95 public FileWriter(String filename, boolean append) throws IOException {
96 super(new FileOutputStream(filename, append));
    [all...]
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
Appendable.java 31 public void append(byte[] src); method in interface:Appendable

Completed in 1998 milliseconds

1 2 3 4 5 6 7 8 91011>>