HomeSort by relevance Sort by last modified time
    Searched refs:StrCat (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
stringutil.h 84 // Don't make the constructors explicit to make the StrCat usage convenient.
113 string StrCat(const StringHolder& s1, const StringHolder& s2);
115 string StrCat(const StringHolder& s1, const StringHolder& s2,
118 string StrCat(const StringHolder& s1, const StringHolder& s2,
121 string StrCat(const StringHolder& s1, const StringHolder& s2,
125 string StrCat(const StringHolder& s1, const StringHolder& s2,
129 string StrCat(const StringHolder& s1, const StringHolder& s2,
134 string StrCat(const StringHolder& s1, const StringHolder& s2,
139 string StrCat(const StringHolder& s1, const StringHolder& s2,
145 string StrCat(const StringHolder& s1, const StringHolder& s2
    [all...]
phonenumbermatcher.cc 73 return StrCat("{", lower, ",", upper, "}");
220 // separately since StrCat has a limit of 12 args.
263 non_parens_(StrCat("[^", opening_parens_, closing_parens_, "]")),
265 leading_maybe_matched_bracket_(StrCat(
268 bracket_pairs_(StrCat(
276 punctuation_(StrCat("[", PhoneNumberUtil::kValidPunctuation, "]",
278 digit_sequence_(StrCat("\\p{Nd}", Limit(1, digit_block_limit_))),
279 lead_class_chars_(StrCat(opening_parens_, PhoneNumberUtil::kPlusChars)),
280 lead_class_(StrCat("[", lead_class_chars_, "]")),
281 opening_punctuation_(StrCat("(?:", lead_class_, punctuation_, ")"))
    [all...]
phonenumbermatch.cc 74 return StrCat("PhoneNumberMatch [", start(), ",", end(), ") ",
stringutil.cc 203 // StrCat
218 string StrCat(const StringHolder& s1, const StringHolder& s2) {
228 string StrCat(const StringHolder& s1, const StringHolder& s2,
240 string StrCat(const StringHolder& s1, const StringHolder& s2,
253 string StrCat(const StringHolder& s1, const StringHolder& s2,
268 string StrCat(const StringHolder& s1, const StringHolder& s2,
284 string StrCat(const StringHolder& s1, const StringHolder& s2,
302 string StrCat(const StringHolder& s1, const StringHolder& s2,
321 string StrCat(const StringHolder& s1, const StringHolder& s2,
343 string StrCat(const StringHolder& s1, const StringHolder& s2
    [all...]
phonenumberutil.cc 159 formatted_number->insert(0, StrCat(kPlusSign, country_calling_code));
162 formatted_number->insert(0, StrCat(kPlusSign, country_calling_code, " "));
165 formatted_number->insert(0, StrCat(kRfc3966Prefix, kPlusSign,
288 static const string capturing_extn_digits = StrCat("([", kDigits, "]{1,7})");
300 return (StrCat(
474 // Small string helpers since StrCat has a maximum number of arguments. These
596 : punctuation_and_star_sign_(StrCat(PhoneNumberUtil::kValidPunctuation,
599 StrCat(kDigits, "{", PhoneNumberUtil::kMinLengthForNsn, "}")),
601 StrCat(min_length_phone_number_pattern_, "|[",
608 CreateExtnPattern(StrCat(",", kSingleExtnSymbolsForMatching)))
    [all...]
asyoutypeformatter.cc 109 new_pattern = StrCat("(", new_pattern, ")");
546 StrCat(prefix_before_national_number_, national_number));
653 StrCat("\\", string(&kPlusSign, 1), "|",
  /packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/hdr/
libstr.h 77 #define smlLibStrcat(pTarget,pSource) (char*)StrCat((char*)pTarget,(char*)pSource)
xptport.h 84 #define xppStrcat(target, source) StrCat(target, source)
114 #define xppStrcat(target, source) strcat(target, source)
161 #define xppStrcat(target, source) strcat(target, source)
  /packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/lib/hdr/
libstr.h 77 #define smlLibStrcat(pTarget,pSource) (char*)StrCat((char*)pTarget,(char*)pSource)
  /packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/xpt/hdr/
xptport.h 84 #define xppStrcat(target, source) StrCat(target, source)
114 #define xppStrcat(target, source) strcat(target, source)
161 #define xppStrcat(target, source) strcat(target, source)
  /packages/apps/OMA-DM/engine/dmlib/tool-src/servercred/hdr/
xptport.h 84 #define xppStrcat(target, source) StrCat(target, source)
114 #define xppStrcat(target, source) strcat(target, source)
161 #define xppStrcat(target, source) strcat(target, source)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
shlwapi.h 224 #define StrCat StrCatW
230 #define StrCat lstrcatA
    [all...]
strsafe.h 1928 #undef strcat macro
1929 #define strcat macro
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 380 // Verify the "strcat" function prototype.
397 // Handle the simple, do-nothing case: strcat(x, "") -> x
467 // strncat(x, s, c) -> strcat(x, s)
468 // s is constant so the strcat can be optimized further
    [all...]

Completed in 662 milliseconds