HomeSort by relevance Sort by last modified time
    Searched refs:append (Results 126 - 150 of 18918) sorted by null

1 2 3 4 56 7 8 91011>>

  /cts/libs/vogar-expect/src/vogar/util/
TimeUtilities.java 38 result.append(hours);
39 result.append('H');
42 result.append(minutes);
43 result.append('M');
45 result.append(seconds);
47 result.append('.');
48 result.append(milliseconds);
50 result.append('S');
91 result.append(days);
92 result.append('d')
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/util/
Util.java 49 builder.append("[Bundle with ").append(keySet.size()).append(" keys:");
51 builder.append(' ').append(key).append('=');
56 builder.append((value instanceof Object[])
60 builder.append(']');
91 StringBuilder builder = new StringBuilder(value.toString()).append('(');
93 builder.append("isText")
    [all...]
  /external/vogar/src/vogar/util/
TimeUtilities.java 38 result.append(hours);
39 result.append('H');
42 result.append(minutes);
43 result.append('M');
45 result.append(seconds);
47 result.append('.');
48 result.append(milliseconds);
50 result.append('S');
91 result.append(days);
92 result.append('d')
    [all...]
  /frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/
MockLog.java 34 mOut.append(msg);
35 mOut.append('\n');
40 mErr.append(msg);
41 mErr.append('\n');
  /libcore/ojluni/src/main/java/java/io/
FileWriter.java 68 * indicating whether or not to append the data written.
71 * @param append boolean if <code>true</code>, then data will be written
77 public FileWriter(String fileName, boolean append) throws IOException {
78 super(new FileOutputStream(fileName, append));
99 * @param append if <code>true</code>, then bytes will be written
106 public FileWriter(File file, boolean append) throws IOException {
107 super(new FileOutputStream(file, append));
  /libcore/ojluni/src/main/java/java/lang/
StackTraceElement.java 175 result.append(getClassName()).append(".").append(methodName);
177 result.append("(Native Method)");
180 result.append("(").append(fileName).append(":").append(lineNumber).append(")");
182 result.append("(").append(fileName).append(")")
    [all...]
Appendable.java 59 * the subsequence to append is defined by the buffer's position and limit.
62 * The character sequence to append. If <tt>csq</tt> is
71 Appendable append(CharSequence csq) throws IOException; method in interface:Appendable
77 * <p> An invocation of this method of the form <tt>out.append(csq, start,
82 * out.append(csq.subSequence(start, end)) </pre>
107 Appendable append(CharSequence csq, int start, int end) throws IOException; method in interface:Appendable
113 * The character to append
120 Appendable append(char c) throws IOException; method in interface:Appendable
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
KeyFormatter.java 29 builder.append(request.qualifier().get());
30 builder.append(' ');
32 builder.append(request.type()); // TODO(cgruber): Use TypeMirrorFormatter.
  /libcore/ojluni/src/test/java/time/test/java/time/format/
MockIOExceptionAppendable.java 69 public Appendable append(CharSequence csq) throws IOException { method in class:MockIOExceptionAppendable
73 public Appendable append(char c) throws IOException { method in class:MockIOExceptionAppendable
77 public Appendable append(CharSequence csq, int start, int end) method in class:MockIOExceptionAppendable
  /prebuilts/go/darwin-x86/test/
append1.go 7 // Verify that append arguments requirements are enforced by the
16 _ = append() // ERROR "missing arguments to append"
17 _ = append(s...) // ERROR "cannot use ... on first argument"
18 _ = append(s, 2, s...) // ERROR "too many arguments to append"
  /prebuilts/go/linux-x86/test/
append1.go 7 // Verify that append arguments requirements are enforced by the
16 _ = append() // ERROR "missing arguments to append"
17 _ = append(s...) // ERROR "cannot use ... on first argument"
18 _ = append(s, 2, s...) // ERROR "too many arguments to append"
  /external/proguard/src/proguard/gui/
FilterBuilder.java 104 positive.append(',');
106 positive.append('!').append(prefix);
110 positive.append('*');
122 negative.append(',');
124 negative.append(prefix);
128 negative.append('*');
170 positive.append(',');
173 positive.append(positiveFilter);
180 positive.append(',');
    [all...]
  /frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
ManualBenchmarkState.java 134 sb.append("Summary: ");
135 sb.append("median=").append(mStats.getMedian()).append("ns, ");
136 sb.append("mean=").append(mStats.getMean()).append("ns, ");
137 sb.append("min=").append(mStats.getMin()).append("ns, ")
    [all...]
  /libcore/ojluni/src/main/java/java/text/
PatternEntry.java 121 toAddTo.append('\n');
123 toAddTo.append(' ');
125 toAddTo.append('&');
127 toAddTo.append(' ');
131 toAddTo.append(' ');
134 case Collator.IDENTICAL: toAddTo.append('='); break;
135 case Collator.TERTIARY: toAddTo.append(','); break;
136 case Collator.SECONDARY: toAddTo.append(';'); break;
137 case Collator.PRIMARY: toAddTo.append('<'); break;
138 case RESET: toAddTo.append('&'); break
    [all...]
  /cts/apps/VpnApp/src/com/android/cts/vpnfirewall/
Ipv4Packet.java 126 out.append("IPv4 Packet {");
127 out.append("\n Version: ").append(version);
128 out.append("\n Header length: ").append(headerLength);
129 out.append("\n Type: ").append(type);
130 out.append("\n Total length: ").append(totalLength);
131 out.append("\n Identification: ").append(identification)
    [all...]
  /external/skia/gn/
gn_meta_sln.py 30 result.append(pLine)
32 result.append(pLine)
45 configs.append((outDir, os.path.exists(slnFile)))
65 allProjects[projName].append((config[0], matchObj.group(2),
78 newSlnLines.append(
80 newSlnLines.append('# Visual Studio 2015\n')
82 newSlnLines.append('Project("{' + cppTypeGuid + '}") = "' + projName +
85 newSlnLines.append('EndProject\n')
87 newSlnLines.append('Global\n')
88 newSlnLines.append(
    [all...]
  /external/skqp/gn/
gn_meta_sln.py 30 result.append(pLine)
32 result.append(pLine)
45 configs.append((outDir, os.path.exists(slnFile)))
65 allProjects[projName].append((config[0], matchObj.group(2),
78 newSlnLines.append(
80 newSlnLines.append('# Visual Studio 2015\n')
82 newSlnLines.append('Project("{' + cppTypeGuid + '}") = "' + projName +
85 newSlnLines.append('EndProject\n')
87 newSlnLines.append('Global\n')
88 newSlnLines.append(
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiWakeReasonAndCounts.java 66 sb.append(" totalCmdEventWake ").append(totalCmdEventWake);
67 sb.append(" totalDriverFwLocalWake ").append(totalDriverFwLocalWake);
68 sb.append(" totalRxDataWake ").append(totalRxDataWake);
70 sb.append(" rxUnicast ").append(rxUnicast);
71 sb.append(" rxMulticast ").append(rxMulticast)
    [all...]
  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
Strftime.java 77 buffer.append(
86 buffer.append(
95 buffer.append(
104 buffer.append(
114 buffer.append(
120 buffer.append(
126 buffer.append(
132 buffer.append(
138 buffer.append(
157 buffer.append(
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/util/
TraceAbstractVisitor.java 116 buf.append(tab).append('@');
118 buf.append('(');
132 buf.append(tab).append('@');
134 buf.append('(');
151 buf.append(tab).append("ATTRIBUTE ");
157 buf.append(" : ").append(attr.toString()).append("\n")
    [all...]
  /external/testng/src/main/java/org/testng/remote/strprotocol/
TestMessage.java 59 buf.append(m_testStart ? MessageHelper.TEST_START : MessageHelper.TEST_FINISH)
60 .append(MessageHelper.DELIMITER)
61 .append(m_suiteName)
62 .append(MessageHelper.DELIMITER)
63 .append(m_testName)
64 .append(MessageHelper.DELIMITER)
65 .append(m_testMethodCount)
66 .append(MessageHelper.DELIMITER)
67 .append(m_passedTestCount)
68 .append(MessageHelper.DELIMITER
    [all...]
  /frameworks/av/media/libstagefright/foundation/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...]
  /frameworks/opt/bitmap/src/com/android/bitmap/
ReusableBitmap.java 98 sb.append(super.toString());
99 sb.append(" refCount=");
100 sb.append(mRefCount);
101 sb.append(" mReusable=");
102 sb.append(mReusable);
103 sb.append(" bmp=");
104 sb.append(bmp);
105 sb.append(" logicalW/H=");
106 sb.append(mWidth);
107 sb.append("/");
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
BaseDescription.java 18 append(text);
31 append("null");
35 append('"');
37 append('"');
39 append('<');
40 append(descriptionOf(value));
41 append("s>");
43 append('<');
44 append(descriptionOf(value));
45 append("L>")
107 protected void append(String str) { method in class:BaseDescription
116 protected abstract void append(char c); method in class:BaseDescription
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSMessage.java 225 buf.append(this.toString());
226 buf.append("\n");
228 buf.append("\tquestion: ");
229 buf.append(question);
230 buf.append("\n");
233 buf.append("\tanswer: ");
234 buf.append(answer);
235 buf.append("\n");
238 buf.append("\tauthoritative: ");
239 buf.append(answer)
    [all...]

Completed in 601 milliseconds

1 2 3 4 56 7 8 91011>>