Searched defs:suffix (Results 1 - 6 of 6) sorted by relevance

/ndk/sources/third_party/googletest/googletest/test/
H A Dgtest_stress_test.cc64 std::string IdToKey(int id, const char* suffix) { argument
66 key << "key_" << id << "_" << suffix; local
78 int id, const char* suffix) {
79 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str());
83 << "expecting " << suffix << " value for id " << id;
76 ExpectKeyAndValueWereRecordedForId( const std::vector<TestProperty>& properties, int id, const char* suffix) argument
/ndk/sources/host-tools/make-3.81/
H A Dimplicit.c328 char *suffix = rule->suffixes[i];
343 stem = filename + (suffix - target - 1);
393 if (*suffix != stem[stemlen]
394 || (*suffix != '\0' && !streq (&suffix[1], &stem[stemlen + 1])))
326 char *suffix = rule->suffixes[i]; local
H A Dvariable.h104 char *suffix; member in struct:pattern_var
195 extern struct pattern_var *create_pattern_var PARAMS ((char *target, char *suffix));
H A Dvariable.c45 create_pattern_var (char *target, char *suffix) argument
59 p->suffix = suffix + 1;
83 stem = target + (p->suffix - p->target - 1);
95 if (*p->suffix == stem[stemlen]
96 && (*p->suffix == '\0' || streq (&p->suffix[1], &stem[stemlen+1])))
/ndk/sources/cxx-stl/stlport/src/
H A Dnum_put_float.cpp521 char *suffix = expbuf + MAXEDIGITS + 2; local
522 *suffix = 0;
528 *--suffix = (char) todigit(nn % 10);
529 *--suffix = (char) todigit(nn);
536 while (suffix > &expbuf[MAXEDIGITS])
537 *--suffix = '0';
540 *--suffix = (char) ((decpt > 0 || is_zero ) ? '+' : '-');
543 *--suffix = flags & ios_base::uppercase ? 'E' : 'e';
545 // copy the suffix
546 buf += suffix;
[all...]
/ndk/sources/third_party/googletest/googletest/src/
H A Dgtest.cc1609 // Returns true iff str ends with the given suffix, ignoring case.
1610 // Any string is considered to end with an empty suffix.
1612 const std::string& str, const std::string& suffix) {
1614 const size_t suffix_len = suffix.length();
1617 suffix.c_str());
1611 EndsWithCaseInsensitive( const std::string& str, const std::string& suffix) argument

Completed in 387 milliseconds