HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2251 - 2275 of 5424) sorted by null

<<919293949596979899100>>

  /external/googletest/googlemock/test/
gmock-actions_test.cc 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1345 std::vector<std::unique_ptr<int>> out; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
BloomFilterTest.java 53 // Ideally we would also test the bitSize() overflow of this BF, but it runs out of heap space
455 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
456 bf.writeTo(out);
458 assertEquals(bf, BloomFilter.readFrom(new ByteArrayInputStream(out.toByteArray()), funnel));
  /external/guava/guava-tests/test/com/google/common/io/
CharSourceTest.java 268 for (CharSink out : BROKEN_SINKS) {
269 runFailureTest(newNormalCharSource(), out); local
272 runFailureTest(BROKEN_CLOSE_SOURCE, out);
277 for (CharSink out : BROKEN_SINKS) {
278 runFailureTest(in, out);
296 for (CharSink out : BROKEN_SINKS) {
297 int suppressed = runSuppressionFailureTest(newNormalCharSource(), out);
300 suppressed = runSuppressionFailureTest(BROKEN_CLOSE_SOURCE, out);
305 for (CharSink out : BROKEN_SINKS) {
306 int suppressed = runSuppressionFailureTest(in, out);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RBBIDataWrapper.java 323 This.dump(System.out);
347 void dump(java.io.PrintStream out) {
352 out.println("RBBI Data Wrapper dump ...");
353 out.println();
354 out.println("Forward State Table");
355 dumpTable(out, fFTable);
356 out.println("Reverse State Table");
357 dumpTable(out, fRTable);
358 out.println("Forward Safe Points Table");
359 dumpTable(out, fSFTable)
    [all...]
RBBITableBuilder.java 50 int[] fDtran; // Transitions out of this state.
110 System.out.println("Parse tree after flattening variable references.");
117 // tree. Means that all matches must start out with the
148 System.out.println("Parse tree after flattening Unicode Set references.");
165 System.out.print("\n");
440 // TODO: Add rule syntax for this behavior, get specifics out of here and
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BytesTrie.java 364 * @param out Each next byte is 0-extended to a char and appended to this object.
365 * (Only uses the out.append(c) method.)
368 public int getNextBytes(Appendable out) /*const*/ {
374 append(out, bytes_[pos]&0xff); // Next byte of a pending linear-match node.
391 getNextBranchBytes(bytes_, pos, ++node, out);
395 append(out, bytes_[pos]&0xff);
    [all...]
CharsTrie.java 333 * @param out Each next char is appended to this object.
334 * (Only uses the out.append(c) method.)
337 public int getNextChars(Appendable out) /*const*/ {
343 append(out, chars_.charAt(pos)); // Next unit of a pending linear-match node.
359 getNextBranchChars(chars_, pos, ++node, out);
363 append(out, chars_.charAt(pos));
886 private static void getNextBranchChars(CharSequence chars, int pos, int length, Appendable out)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/cldr/
TestCLDRVsICU.java 87 System.out.println();
93 // WARNING: THIS IS TEMPORARY DIRECTORY UNTIL THE FILES ARE STRAIGHTENED OUT
95 System.out.println();
107 System.out.print("-D" + key + "=\"" + temp + "\" ");
493 System.out.print("getTimeInstance");
497 System.out.print("getDateInstance");
502 System.out.print("getDateTimeInstance");
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
MessageRegressionTest.java 108 * ICU 4.8: This test is commented out because toPattern() has been changed to return
547 String out = mf.format(new Object[]{new Integer(i)}); local
549 if (!out.equals(PREFIX[i]))
550 errln("" + i + ": Got \"" + out + "\"; Want \"" + PREFIX[i] + "\"");
553 if (!out.startsWith(PREFIX[i]) ||
554 !out.endsWith(SUFFIX[i]))
555 errln("" + i + ": Got \"" + out + "\"; Want \"" + PREFIX[i] + "\"...\"" +
581 String out = cf.format(j); local
582 if (!out.equals(DATA[i+1+j]))
584 out + "; want \"" + DATA[i+1+j] + '"')
    [all...]
  /external/icu/icu4c/source/common/
rbbi.cpp 845 // to carry out this operation
928 // out-of-range indexes are never boundary positions
1687 int32_t out = 0; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnmdptst.c 642 UChar *out = NULL; local
653 out=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
655 unum_formatDouble(nf, x, out, lneed+1, &pos, &status);
661 /*printf("%f format with %d fraction digits to %s\n", x, maxFractionDigits, austrdup(out) );*/
664 if (u_strcmp(out, res) != 0)
667 if(out != NULL) {
668 free(out);
1072 UChar *out = NULL; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
convtest.cpp 640 // Unfortunately, there are no good, direct set methods for finding out whether there are strings
649 UnicodeString out; local
654 diffSet.toPattern(out, TRUE);
655 if(out.length()>100) {
656 out.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis));
660 errln(out);
666 diffSet.toPattern(out, TRUE);
667 if(out.length()>100) {
668 out.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis));
672 errln(out);
    [all...]
rbbiapts.cpp 1174 UnicodeString out; local
    [all...]
  /external/icu/icu4c/source/test/perf/howExpensiveIs/
howExpensiveIs.cpp 41 FILE *out = NULL; variable
112 out=fopen(outName,"w");
113 if(out==NULL) {
119 fprintf(out, "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n");
120 fprintf(out, "<tests icu=\"%s\">\n", U_ICU_VERSION);
121 fprintf(out, "<!-- %s -->\n", U_COPYRIGHT_STRING);
136 if(out!=NULL) {
138 udbg_writeIcuInfo(out);
140 fprintf(out, "</tests>\n");
141 fclose(out);
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/charsetdet/
DetectingViewer.java 240 int out = 0; local
258 buffer[out++] = b;
262 byte[] filtered = new byte[out];
264 System.arraycopy(buffer, 0, filtered, 0, out);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RBBIDataWrapper.java 322 This.dump(System.out);
346 void dump(java.io.PrintStream out) {
351 out.println("RBBI Data Wrapper dump ...");
352 out.println();
353 out.println("Forward State Table");
354 dumpTable(out, fFTable);
355 out.println("Reverse State Table");
356 dumpTable(out, fRTable);
357 out.println("Forward Safe Points Table");
358 dumpTable(out, fSFTable)
    [all...]
RBBITableBuilder.java 49 int[] fDtran; // Transitions out of this state.
109 System.out.println("Parse tree after flattening variable references.");
116 // tree. Means that all matches must start out with the
147 System.out.println("Parse tree after flattening Unicode Set references.");
164 System.out.print("\n");
439 // TODO: Add rule syntax for this behavior, get specifics out of here and
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BytesTrie.java 384 * @param out Each next byte is 0-extended to a char and appended to this object.
385 * (Only uses the out.append(c) method.)
389 public int getNextBytes(Appendable out) /*const*/ {
395 append(out, bytes_[pos]&0xff); // Next byte of a pending linear-match node.
412 getNextBranchBytes(bytes_, pos, ++node, out);
416 append(out, bytes_[pos]&0xff);
    [all...]
CharsTrie.java 347 * @param out Each next char is appended to this object.
348 * (Only uses the out.append(c) method.)
352 public int getNextChars(Appendable out) /*const*/ {
358 append(out, chars_.charAt(pos)); // Next unit of a pending linear-match node.
374 getNextBranchChars(chars_, pos, ++node, out);
378 append(out, chars_.charAt(pos));
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/cldr/
TestCLDRVsICU.java 86 System.out.println();
92 // WARNING: THIS IS TEMPORARY DIRECTORY UNTIL THE FILES ARE STRAIGHTENED OUT
94 System.out.println();
106 System.out.print("-D" + key + "=\"" + temp + "\" ");
492 System.out.print("getTimeInstance");
496 System.out.print("getDateInstance");
501 System.out.print("getDateTimeInstance");
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
MessageRegressionTest.java 107 * ICU 4.8: This test is commented out because toPattern() has been changed to return
546 String out = mf.format(new Object[]{new Integer(i)}); local
548 if (!out.equals(PREFIX[i]))
549 errln("" + i + ": Got \"" + out + "\"; Want \"" + PREFIX[i] + "\"");
552 if (!out.startsWith(PREFIX[i]) ||
553 !out.endsWith(SUFFIX[i]))
554 errln("" + i + ": Got \"" + out + "\"; Want \"" + PREFIX[i] + "\"...\"" +
580 String out = cf.format(j); local
581 if (!out.equals(DATA[i+1+j]))
583 out + "; want \"" + DATA[i+1+j] + '"')
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CheckTags.java 87 // System.out.println("reset [" + index + "] header: " + header + " report: " + reportError);
109 System.out.println(); // always since we always report number of errors
125 // System.out.println(">>> " + last + " error: " + error + " show: " + show + " nomsg: " + nomsg);
136 System.out.println();
139 System.out.print(" ");
143 System.out.print(n.header);
152 System.out.println();
155 System.out.print("*** ");
157 System.out.print(msg);
  /external/kernel-headers/original/uapi/rdma/
ib_user_cm.h 29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
71 __u16 out; member in struct:ib_ucm_cmd_hdr
  /external/kmod/libkmod/
libkmod-index.c 470 struct index_value **out)
475 add_value(out, v->value, v->len, v->priority);
487 struct index_value **out)
507 index_searchwild__all(child, 0, buf, subkey, out);
513 index_searchwild__allvalues(node, out);
527 struct index_value **out)
539 &key[i+j], out);
554 index_searchwild__all(child, 0, buf, &key[i], out);
561 index_searchwild__all(child, 0, buf, &key[i], out);
568 index_searchwild__all(child, 0, buf, &key[i], out);
594 struct index_value *out = NULL; local
1069 struct index_value *out = NULL; local
    [all...]
  /external/libchrome/base/
values.cc 339 DictionaryValue* out; local
340 if (value && value->GetAsDictionary(&out)) {
342 return WrapUnique(out);
541 std::string out; local
542 if (!GetString(path, &out))
545 if (!IsStringASCII(out)) {
550 out_value->assign(out);
854 ListValue* out; local
855 if (value && value->GetAsList(&out)) {
857 return WrapUnique(out);
    [all...]

Completed in 1121 milliseconds

<<919293949596979899100>>