Searched defs:suffix (Results 176 - 200 of 239) sorted by relevance

12345678910

/external/icu4c/common/
H A Dunames.cpp797 const char *s, /* suffix elements */
1021 char *suffix, *t; local
1029 suffix=buffer;
1032 *suffix++=c;
1036 /* append the suffix of the start character */
1040 suffix, (uint16_t)(sizeof(buffer)-prefixLength)));
1068 /* to make matters a little easier, just append all elements to the suffix */
1069 t=suffix;
1167 /* initialize the suffix elements for enumeration; indexes should all be set to 0 */
1171 /* compare the first suffix */
[all...]
/external/icu4c/test/cintltst/
H A Dcnumtst.c132 UChar suffix[5]; local
634 unum_getTextAttribute(cur_def, UNUM_NEGATIVE_SUFFIX, suffix, resultlength, &status);
639 if(u_strcmp(suffix,temp)!=0)
640 log_err("Fail:Error in setTextAttribute or getTextAttribute in setting and getting suffix\n");
642 log_verbose("Pass: setting and getting suffix works fine\n");
681 u_uastrcpy(suffix, "+");
682 unum_setTextAttribute(def, UNUM_NEGATIVE_SUFFIX, suffix, u_strlen(suffix) , &status);
693 if(u_strcmp(suffix, temp)!=0)
694 log_err("ERROR: get and setTextAttributes with negative suffix faile
[all...]
H A Dcapitst.c1902 const char* suffix = "egg"; local
1928 unescapedLen = u_unescape(suffix, buffer, 256);
/external/icu4c/test/intltest/
H A Dssearch.cpp1386 UnicodeString suffix, altSuffix; local
1450 // TODO: try alternate prefix and suffix too?
1458 generateTestCase(coll, monkeys, monkeyCount, suffix, altSuffix);
1470 testCase.append(suffix);
1472 // prefix + pattern + suffix
1473 notFoundCount += monkeyTestCase(coll, testCase, pattern, altPattern, "prefix + pattern + suffix", strengthNames[s], seed);
1477 testCase.append(suffix);
1479 // pattern + suffix
1480 notFoundCount += monkeyTestCase(coll, testCase, pattern, altPattern, "pattern + suffix", strengthNames[s], seed);
/external/icu4c/tools/genrb/
H A Dreslist.c1516 * and mark the old, now unused suffix bytes as deleted.
1522 * This key is not a suffix of the previous one;
1539 char *suffix; local
1542 suffix = keys + map[j].oldpos;
1543 for (suffixLimit = suffix; *suffixLimit != 0; ++suffixLimit) {}
1544 offset = (int32_t)(keyLimit - key) - (suffixLimit - suffix);
1546 break; /* suffix cannot be longer than the original */
1548 /* Is it a suffix of the earlier, longer key? */
1549 for (k = keyLimit; suffix < suffixLimit && *--k == *--suffixLimit;) {}
1550 if (suffix
1720 const UChar *suffix = suffixRes->u.fString.fChars; local
[all...]
/external/llvm/lib/MC/
H A DMCAsmStreamer.cpp1128 static const MCSection *getWin64EHTableSection(StringRef suffix, argument
1132 if (suffix == "")
1134 return context.getCOFFSection((".xdata"+suffix).str(),
1149 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function); local
1150 const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1311 std::stringstream suffix; local
1312 suffix << idx;
1313 *name += suffix.str();
/external/qemu/
H A Dtrace.c632 char *suffix = ""; local
635 suffix = "M";
638 suffix = "K";
641 elapsed_secs, cycles_per_sec, suffix);
1454 case 29: /* BLX suffix or undefined */
1462 case 31: /* BL suffix */
H A Dmonitor.c1162 int suffix; local
1174 suffix = 'b';
1178 suffix = 'w';
1182 suffix = 'l';
1186 suffix, addr, size * 2, val);
/external/valgrind/main/coregrind/
H A Dvgdb.c2135 const char *suffix = "-from-vgdb-to-"; /* followed by pid */ local
2136 char *vgdb_format = vmalloc (strlen(vgdb_prefix) + strlen(suffix) + 1);
2139 strcat (vgdb_format, suffix);
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-matchers.h1030 explicit EndsWithMatcher(const StringType& suffix) : suffix_(suffix) {} argument
1032 // These overloaded methods allow EndsWith(suffix) to be used as a
2793 // Matches a string that ends with 'suffix' (case-sensitive).
2795 EndsWith(const internal::string& suffix) { argument
2797 suffix));
2868 // Matches a string that ends with 'suffix' (case-sensitive).
2870 EndsWith(const internal::wstring& suffix) { argument
2872 suffix));
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSParser-in.cpp310 void CSSParser::setupParser(const char* prefix, unsigned prefixLength, const String& string, const char* suffix, unsigned suffixLength) argument
329 m_dataStart8[i] = suffix[i - start];
351 m_dataStart16[i] = suffix[i - start];
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcapitst.c1828 const char* suffix = "egg"; local
1854 unescapedLen = u_unescape(suffix, buffer, 256);
/external/chromium_org/third_party/libxml/src/
H A Druntest.c101 const char *suffix;/* suffix for output files */ member in struct:testDesc
102 const char *err; /* suffix for error output files */
565 const char *suffix) {
578 if (suffix == NULL)
579 suffix = ".tmp";
583 strncpy(suffixbuff,suffix,499);
4328 if (tst->suffix != NULL) {
4330 tst->suffix);
564 resultFilename(const char *filename, const char *out, const char *suffix) argument
/external/chromium_org/third_party/openssl/openssl/apps/
H A Dapps.c1646 int save_serial(char *serialfile, char *suffix, BIGNUM *serial, ASN1_INTEGER **retai) argument
1654 if (suffix == NULL)
1657 j = strlen(serialfile) + strlen(suffix) + 1;
1664 if (suffix == NULL)
1669 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, suffix);
1671 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, suffix);
1899 int save_index(const char *dbfile, const char *suffix, CA_DB *db) argument
1911 j = strlen(dbfile) + strlen(suffix);
1924 j = BIO_snprintf(buf[1], sizeof buf[1], "%s.attr.%s", dbfile, suffix);
1926 j = BIO_snprintf(buf[1], sizeof buf[1], "%s-attr-%s", dbfile, suffix);
[all...]
/external/elfutils/libcpu/
H A Di386_parse.c216 suffix_w1, suffix_W1, suffix_D } suffix; member in struct:instruction
242 struct suffix struct
289 struct known_bitfield *suffix,
1666 newp->suffix = suffix_w;
1668 newp->suffix = suffix_w0;
1670 newp->suffix = suffix_tttn;
1672 newp->suffix = suffix_w1;
1674 newp->suffix = suffix_W;
1676 newp->suffix = suffix_W1;
1678 newp->suffix
2297 check_bitsused(struct bitvalue *bitval, struct known_bitfield *suffix, struct argument *args) argument
[all...]
/external/elfutils/src/
H A Delflint.c100 const char *suffix, const char *fname, size_t size,
102 static void process_elf_file (Elf *elf, const char *prefix, const char *suffix,
251 process_file (int fd, Elf *elf, const char *prefix, const char *suffix, argument
261 process_elf_file (elf, prefix, suffix, fname, size, only_one);
271 char new_suffix[(suffix == NULL ? 0 : strlen (suffix)) + 2];
279 strcpy (stpcpy (new_suffix, suffix), ")");
4198 process_elf_file (Elf *elf, const char *prefix, const char *suffix, argument
4218 printf ("\n%s(%s)%s:\n", prefix, fname, suffix);
/external/mksh/src/
H A Dfuncs.c2491 const char *prefix, const char *suffix)
2496 tv_sec, tv_usec, suffix);
2499 tv_sec / 60, (int)(tv_sec % 60), tv_usec, suffix);
2490 p_time(struct shf *shf, bool posix, long tv_sec, int tv_usec, int width, const char *prefix, const char *suffix) argument
/external/openssl/apps/
H A Dapps.c1646 int save_serial(char *serialfile, char *suffix, BIGNUM *serial, ASN1_INTEGER **retai) argument
1654 if (suffix == NULL)
1657 j = strlen(serialfile) + strlen(suffix) + 1;
1664 if (suffix == NULL)
1669 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, suffix);
1671 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, suffix);
1899 int save_index(const char *dbfile, const char *suffix, CA_DB *db) argument
1911 j = strlen(dbfile) + strlen(suffix);
1924 j = BIO_snprintf(buf[1], sizeof buf[1], "%s.attr.%s", dbfile, suffix);
1926 j = BIO_snprintf(buf[1], sizeof buf[1], "%s-attr-%s", dbfile, suffix);
[all...]
/external/skia/gm/
H A Dgmmain.cpp225 const char *suffix) {
229 filename.append(suffix);
221 make_filename(const char *path, const char *shortName, const char *configName, const char *renderModeDescriptor, const char *suffix) argument
/external/valgrind/main/coregrind/m_demangle/
H A Dcp-demangle.c1064 /* <mangled-name> ::= _Z <encoding> [<clone-suffix>]*
1085 suffix. */
3177 /* <clone-suffix> ::= [ . <clone-type-identifier> ] [ . <nonnegative number> ]*
3183 const char *suffix = d_str (di); local
3184 const char *pend = suffix;
3199 d_advance (di, pend - suffix);
3200 n = d_make_name (di, suffix, pend - suffix);
4667 struct d_print_mod *mods, int suffix)
4675 || (! suffix
4666 d_print_mod_list(struct d_print_info *dpi, int options, struct d_print_mod *mods, int suffix) argument
[all...]
/external/valgrind/main/massif/
H A Dms_main.c1149 Char* suffix; local
1151 case Peak: suffix = "p"; break;
1152 case Normal: suffix = ( is_detailed_snapshot(snapshot) ? "d" : "." ); break;
1153 case Unused: suffix = "u"; break;
1158 prefix, suffix, i,
/external/chromium_org/third_party/icu/source/i18n/
H A Ddecimfmt.cpp71 * Need to remember all prefix patterns and suffix patterns of
79 // negative suffix pattern
83 // positive suffix pattern
107 // negative suffix
111 // positive suffix
1794 * @param negSuffix negative suffix.
1796 * @param posSuffix positive suffix.
2038 // Match padding before suffix
2066 // Match padding before suffix
2564 // Gets the positive suffix o
3736 UnicodeString suffix; local
[all...]
/external/icu4c/i18n/
H A Ddecimfmt.cpp99 * Need to remember all prefix patterns and suffix patterns of
107 // negative suffix pattern
111 // positive suffix pattern
135 // negative suffix
139 // positive suffix
1044 debug("No Parse fastpath: positive suffix");
1049 debug("No Parse fastpath: negative suffix");
2182 * @param negSuffix negative suffix.
2184 * @param posSuffix positive suffix.
2380 // Temporary set positive. This might be changed after checking suffix
4571 UnicodeString suffix; local
[all...]
/external/libmtp/src/
H A Dlibmtp.c162 char const * const suffix,
7027 * @param suffix the ".foo" (4 characters) suffix to use for the virtual
7043 char const * const suffix,
7082 // add the new suffix if it isn't there
7084 if (strlen(name) > strlen(suffix)) {
7085 char const * const suff = &name[strlen(name)-strlen(suffix)];
7086 if (!strcmp(suff, suffix)) {
7091 // If it didn't end with "<suffix>" then add that here.
7093 strncpy(fname, name, sizeof(fname)-strlen(suffix)
7035 create_new_abstract_list(LIBMTP_mtpdevice_t *device, char const * const name, char const * const artist, char const * const composer, char const * const genre, uint32_t const parenthandle, uint32_t const storageid, uint16_t const objectformat, char const * const suffix, uint32_t * const newid, uint32_t const * const tracks, uint32_t const no_tracks) argument
[all...]

Completed in 677 milliseconds

12345678910