Searched refs:got (Results 126 - 150 of 204) sorted by relevance

123456789

/external/icu/icu4c/source/test/intltest/
H A Dnormconf.cpp480 * @param got value received
483 * @param return true if got == exp
487 const UnicodeString& got,
492 if (exp == got)
497 UnicodeString gotPretty(prettify(got));
485 assertEqual(const char *op, const UnicodeString& s, const UnicodeString& got, const UnicodeString& exp, const char *msg, int32_t field) argument
H A Dlocnmtst.cpp339 UnicodeString got(nameBuf, len);
341 ", expected " + exp + ", got " + got );
H A Dcalregts.cpp1094 UDate got = testCal->getTime(status);
1096 logln(UnicodeString("") + sdf.format(got, str));
1100 UDate got = testCal->getTime(status);
1102 logln(UnicodeString("") + sdf.format(got, str));
1106 UDate got = testCal->getTime(status);
1108 logln(UnicodeString("") + sdf.format(got, str));
1122 UDate got = testCal->getTime(status); local
1127 " got:" + sdf.format(got, str2));
1128 if (got !
1188 UDate got = testCal->getTime(status); local
[all...]
/external/zlib/src/test/
H A Dminigzip.c266 unsigned got; local
278 got = fread(in, 1, 1, gz->file);
279 if (got == 0)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseSvnProperty.pl798 my @got = VCSUtils::parseSvnProperty($fileHandle, $line);
801 is_deeply(\@got, $expectedReturn, "$testNameStart return value.");
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dlocnmtst.cpp332 UnicodeString got(nameBuf, len);
334 ", expected " + exp + ", got " + got );
H A Dcalregts.cpp1094 UDate got = testCal->getTime(status);
1096 logln(UnicodeString("") + sdf.format(got, str));
1100 UDate got = testCal->getTime(status);
1102 logln(UnicodeString("") + sdf.format(got, str));
1106 UDate got = testCal->getTime(status);
1108 logln(UnicodeString("") + sdf.format(got, str));
1122 UDate got = testCal->getTime(status); local
1127 " got:" + sdf.format(got, str2));
1128 if (got !
1188 UDate got = testCal->getTime(status); local
[all...]
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dhidgnubbydevice.js193 console.log(UTIL_fmt('got lastError'));
372 console.log(UTIL_fmt('got lastError'));
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
H A Dyasm.c250 size_t got; local
306 while ((got = yasm_preproc_get_included_file(cur_preproc, preproc_buf,
308 totlen += got;
314 fwrite(preproc_buf, got, 1, stdout);
/external/flac/include/FLAC/
H A Dstream_encoder.h1231 * \param got The actual value returned by the decoder.
1235 FLAC_API void FLAC__stream_encoder_get_verify_decoder_error_stats(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_sample, unsigned *frame_number, unsigned *channel, unsigned *sample, FLAC__int32 *expected, FLAC__int32 *got);
/external/libhevc/common/arm64/
H A Dihevc_intra_pred_filters_chroma_mode_19_to_25.s112 adrp x7, :got:gai4_ihevc_ang_table
115 adrp x8, :got:gai4_ihevc_inv_ang_table
215 adrp x6, :got:gai4_ihevc_ang_table //loads word32 gai4_ihevc_ang_table[35]
223 adrp x1, :got:gau1_ihevc_planar_factor //used for ((row + 1) * intra_pred_ang) row values
H A Dihevc_intra_pred_filters_luma_mode_19_to_25.s113 adrp x7, :got:gai4_ihevc_ang_table
116 adrp x8, :got:gai4_ihevc_inv_ang_table
221 adrp x6, :got:gai4_ihevc_ang_table //loads word32 gai4_ihevc_ang_table[35]
227 adrp x1, :got:gau1_ihevc_planar_factor //used for ((row + 1) * intra_pred_ang) row values
H A Dihevc_itrans_recon_4x4.s125 adrp x8, :got:g_ai2_ihevc_trans_4_transpose
H A Dihevc_sao_band_offset_luma.s89 ADRP x14, :got:gu1_table_band_idx
H A Dihevc_sao_band_offset_chroma.s101 ADRP x14, :got:gu1_table_band_idx
154 ADRP x14, :got:gu1_table_band_idx
H A Dihevc_sao_edge_offset_class2_chroma.s152 ADRP x14, :got:gi1_table_edge_idx //table pointer
187 ADRP x14, :got:gi1_table_edge_idx //table pointer
241 ADRP x14, :got:gi1_table_edge_idx //table pointer
277 ADRP x14, :got:gi1_table_edge_idx //table pointer
321 ADRP x2, :got:gi1_table_edge_idx //table pointer
/external/llvm/test/MC/AArch64/
H A Darm64-elf-relocs.s70 adrp x15, :got:sym
71 // CHECK: adrp x15, :got:sym
/external/e2fsprogs/debugfs/
H A Ddebugfs.c1582 int got; local
1609 got = read(fd, buf, bufsize);
1610 if (got == 0)
1612 if (got < 0) {
1621 cmp = memcmp(ptr, zero_buf, got);
1624 retval = ext2fs_file_lseek(e2_file, got, EXT2_SEEK_CUR, NULL);
1627 got = 0;
1632 while (got > 0) {
1634 got, &written);
1638 got
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dos_os2.c129 ULONG got; local
137 if( DosRead( pFile->h, pBuf, amt, &got ) != NO_ERROR ){
140 if( got == (ULONG)amt )
144 memset(&((char*)pBuf)[got], 0, amt-got);
440 OSTRACE(( "LOCK FAILED %d trying for %d but got %d\n", pFile->h,
1308 OSTRACE(("SHM-LOCK shmid-%d, pid-%d got %03x,%03x %s\n",
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
H A Djsunittest.js539 message = this.buildMessage(message || 'assert', 'got <?>', expression);
627 message = this.buildMessage(message || 'assertNull', 'got <?>', obj);
632 message = this.buildMessage(message || 'assertNotNull', 'got <?>', obj);
637 message = this.buildMessage(message || 'assertUndefined', 'got <?>', obj);
642 message = this.buildMessage(message || 'assertNotUndefined', 'got <?>', obj);
647 message = this.buildMessage(message || 'assertNullOrUndefined', 'got <?>', obj);
652 message = this.buildMessage(message || 'assertNotNullOrUndefined', 'got <?>', obj);
745 message = this.buildMessage('assertElementsMatch', 'In index <?>: expected <?> but got ?', index, expression, element);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcdtrgtst.c130 UDate start,exp,got; local
180 got = udat_parse(def, s, u_strlen(s), 0, &status);
181 gotdate=myFormatit(def, got);
188 log_err("set2DigitYearStart broken for %s \n got: %s, expected: %s\n", austrdup(s),
/external/icu/icu4c/source/test/cintltst/
H A Dcdtrgtst.c130 UDate start,exp,got; local
180 got = udat_parse(def, s, u_strlen(s), 0, &status);
181 gotdate=myFormatit(def, got);
188 log_err("set2DigitYearStart broken for %s \n got: %s, expected: %s\n", austrdup(s),
/external/libpcap/
H A Dpcap-usb-linux.c510 "Can't parse USB bus message '%s', too few tokens (expected 8 got %d)",
576 "Can't parse USB bus message '%s', too few tokens (expected 5 got %d)",
612 goto got;
623 goto got;
628 /* if we reach this point we got some urb data*/
647 got:
/external/qemu/distrib/zlib-1.2.8/
H A Dconfigure355 got=`( $* ) 2>&1`
357 printf %s "$got" >> configure.log
361 test "$got" = ""
/external/zlib/src/
H A Dconfigure355 got=`( $* ) 2>&1`
357 printf %s "$got" >> configure.log
361 test "$got" = ""

Completed in 466 milliseconds

123456789