HomeSort by relevance Sort by last modified time
    Searched refs:pat (Results 101 - 125 of 279) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/test/cintltst/
reapits.c 160 UChar pat[200]; local
166 u_uastrncpy(pat, "abc*", sizeof(pat)/2);
167 re = uregex_open(pat, -1, 0, 0, &status);
176 re = uregex_open(pat, -1,
184 re = uregex_open(pat, -1, 0x40000000, 0, &status);
190 re = uregex_open(pat, -1, UREGEX_LITERAL, 0, &status);
218 u_uastrncpy(pat, "abc*", sizeof(pat)/2);
219 TEST_ASSERT(u_strcmp(pat, p) == 0)
1362 UChar pat[200]; local
    [all...]
cdtrgtst.c 53 UChar *pat=NULL; local
75 pat=(UChar*)malloc(sizeof(UChar) * resultlength);
76 udat_toPattern(df, TRUE, pat, resultlength, &status);
79 log_verbose("pattern: %s\n", austrdup(pat));
115 if(pat != NULL) {
116 free(pat);
133 UChar pat[10]; local
162 u_uastrcpy(pat, "yyMMdd");
163 def = udat_open(UDAT_IGNORE,UDAT_IGNORE,NULL, NULL, 0, pat, u_strlen(pat), &status)
244 UChar *pat=NULL; local
    [all...]
  /external/icu4c/test/cintltst/
reapits.c 201 UChar pat[200]; local
207 u_uastrncpy(pat, "abc*", sizeof(pat)/2);
208 re = uregex_open(pat, -1, 0, 0, &status);
217 re = uregex_open(pat, -1,
225 re = uregex_open(pat, -1, 0x40000000, 0, &status);
231 re = uregex_open(pat, -1, UREGEX_CANON_EQ, 0, &status);
259 u_uastrncpy(pat, "abc*", sizeof(pat)/2);
260 TEST_ASSERT(u_strcmp(pat, p) == 0)
1404 UChar pat[200]; local
    [all...]
cdtrgtst.c 53 UChar *pat=NULL; local
75 pat=(UChar*)malloc(sizeof(UChar) * resultlength);
76 udat_toPattern(df, TRUE, pat, resultlength, &status);
79 log_verbose("pattern: %s\n", austrdup(pat));
115 if(pat != NULL) {
116 free(pat);
133 UChar pat[10]; local
162 u_uastrcpy(pat, "yyMMdd");
163 def = udat_open(UDAT_PATTERN,UDAT_PATTERN,NULL, NULL, 0, pat, u_strlen(pat), &status)
244 UChar *pat=NULL; local
    [all...]
  /external/icu4c/i18n/
rematch.cpp 77 RegexMatcher::RegexMatcher(const RegexPattern *pat) {
83 if (pat==NULL) {
87 fPattern = pat;
2796 int64_t *pat = fPattern->fCompiledPat->getBuffer(); local
    [all...]
repattrn.cpp 483 RegexPattern *pat = NULL; local
486 pat = RegexPattern::compile(regex, 0, pe, status);
487 matcher = pat->matcher(input, status);
491 delete pat;
507 RegexPattern *pat = NULL; local
510 pat = RegexPattern::compile(regex, 0, pe, status);
511 matcher = pat->matcher(status);
518 delete pat;
selfmt.cpp 44 SelectFormat::SelectFormat(const UnicodeString& pat,
46 applyPattern(pat, status);
  /external/chromium_org/third_party/icu/source/i18n/
rematch.cpp 77 RegexMatcher::RegexMatcher(const RegexPattern *pat) {
83 if (pat==NULL) {
87 fPattern = pat;
2749 int64_t *pat = fPattern->fCompiledPat->getBuffer(); local
    [all...]
unum.cpp 87 const UnicodeString pat(pattern, patternLength);
108 retVal = (UNumberFormat*)new DecimalFormat(pat, syms, *parseErr, *status);
118 const UnicodeString pat(pattern, patternLength);
124 retVal = (UNumberFormat*)new RuleBasedNumberFormat(pat, Locale(locale), *parseErr, *status);
820 UnicodeString pat;
824 pat.setTo(result, 0, resultLength);
831 df->toLocalizedPattern(pat);
833 df->toPattern(pat);
837 pat = rbnf->getRules();
839 return pat.extract(result, resultLength, *status)
    [all...]
repattrn.cpp 511 RegexPattern *pat = NULL; local
514 pat = RegexPattern::compile(regex, 0, pe, status);
515 matcher = pat->matcher(input, status);
519 delete pat;
535 RegexPattern *pat = NULL; local
538 pat = RegexPattern::compile(regex, 0, pe, status);
539 matcher = pat->matcher(input, PATTERN_IS_UTEXT, status);
543 delete pat;
  /external/openssh/openbsd-compat/
glob.c 853 match(Char *name, Char *pat, Char *patend)
858 while (pat < patend) {
859 c = *pat++;
862 if (pat == patend)
865 if (match(name, pat, patend))
877 if ((negate_range = ((*pat & M_MASK) == M_NOT)) != EOS)
878 ++pat;
879 while (((c = *pat++) & M_MASK) != M_END) {
881 Char idx = *pat & M_MASK;
885 ++pat;
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
usettest.h 97 UBool checkPat(const UnicodeString& source, const UnicodeSet& testSet, const UnicodeString& pat);
144 void expectContainment(const UnicodeString& pat,
usettest.cpp 37 UnicodeString pat; local
38 set.toPattern(pat);
39 return left + UnicodeSetTest::escape(pat);
210 UnicodeString pat = ""; local
251 const UnicodeString& pat) {
253 UnicodeSet testSet2(pat, ec);
255 errln((UnicodeString)"Fail toPattern: " + source + " => " + pat);
281 const char* pat = " [:Lu:] "; // Whitespace ok outside [:..:] local
282 UnicodeSet set(pat, status);
284 dataerrln((UnicodeString)"Fail: Can't construct set with " + pat + " - " + UnicodeString(u_errorName(status)))
1446 UnicodeString pat; local
1467 UnicodeString pat; local
1908 UnicodeString pat; s.toPattern(pat, FALSE); local
1985 UnicodeString pat; local
2082 UnicodeString pat; local
    [all...]
  /external/icu4c/test/intltest/
usettest.h 97 UBool checkPat(const UnicodeString& source, const UnicodeSet& testSet, const UnicodeString& pat);
144 void expectContainment(const UnicodeString& pat,
dtfmttst.h 70 virtual void tryPat994(SimpleDateFormat* format, const char* pat, const char* str, UDate expected);
usettest.cpp 37 UnicodeString pat; local
38 set.toPattern(pat);
39 return left + UnicodeSetTest::escape(pat);
210 UnicodeString pat = ""; local
251 const UnicodeString& pat) {
253 UnicodeSet testSet2(pat, ec);
255 errln((UnicodeString)"Fail toPattern: " + source + " => " + pat);
281 const char* pat = " [:Lu:] "; // Whitespace ok outside [:..:] local
282 UnicodeSet set(pat, status);
284 dataerrln((UnicodeString)"Fail: Can't construct set with " + pat + " - " + UnicodeString(u_errorName(status)))
1446 UnicodeString pat; local
1467 UnicodeString pat; local
1908 UnicodeString pat; s.toPattern(pat, FALSE); local
1985 UnicodeString pat; local
2082 UnicodeString pat; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
Matcher2Test.java 226 Pattern pat = Pattern.compile(replacedString); local
227 Matcher mat = pat.matcher(str);
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
Matcher2Test.java 224 Pattern pat = Pattern.compile(replacedString); local
225 Matcher mat = pat.matcher(str);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
OutputWindow.py 81 for pat in self.file_line_pats:
82 l.append(re.compile(pat, re.IGNORECASE))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
OutputWindow.py 81 for pat in self.file_line_pats:
82 l.append(re.compile(pat, re.IGNORECASE))
  /system/core/sh/
Android.mk 51 sh ./mknodes.sh nodetypes nodes.c.pat .
  /external/chromium_org/third_party/icu/source/common/
util.h 159 * @param pat pattern that controls parsing
165 static int32_t parsePattern(const UnicodeString& pat,
  /external/harfbuzz_ng/contrib/python/scripts/
hbtestfont 31 pat = fcPattern(fpat) variable
32 fname = pat.getString("file", 0)
33 family = pat.getString("family", 0)
  /external/libvpx/libvpx/build/make/
gen_msvs_proj.sh 142 for pat in ${pats//;/$IFS}; do
143 if [ "${f##*.}" == "$pat" ]; then
149 if [ "$pat" == "asm" ] && $asm_use_custom_step; then
165 if [ "$pat" == "c" ] || [ "$pat" == "cc" ] ; then
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
locale.cpp     [all...]

Completed in 1268 milliseconds

1 2 3 45 6 7 8 91011>>