| /external/icu4c/test/intltest/ |
| usettest.h | 135 * That the iterator works, and that we can create a pattern and 155 const UnicodeString& pattern,
|
| tsdcfmsy.cpp | 216 void IntlTestDecimalFormatSymbols::Verify(double value, const UnicodeString& pattern, DecimalFormatSymbols sym, const UnicodeString& expected){ 218 DecimalFormat *df = new DecimalFormat(pattern, sym, status);
|
| tmsgfmt.cpp | 164 // {sfb} use double format in pattern, so result will match (not strictly necessary) 165 const UnicodeString pattern = "There {0,choice,0#are no files|1#is one file|1<are {0, number} files} on disk {1}. "; local 166 logln("The input pattern : " + pattern); 167 MessageFormat *fmt = new MessageFormat(pattern, status); 169 errln("MessageFormat pattern creation failed."); 172 logln("The output pattern is : " + fmt->toPattern(result)); 173 if (pattern != result) { 326 logln("MSG pattern for parse: " + buffer); 405 /* When the default locale is tr, make sure that the pattern can still be parsed. * 1202 const UnicodeString pattern = local [all...] |
| tstnorm.cpp | 1720 UnicodeString s, pattern; local [all...] |
| usettest.cpp | 133 dataerrln((UnicodeString)"FAIL: bad pattern " + OTHER_TOPATTERN_TESTS[j] + " - " + UnicodeString(u_errorName(ec))); 156 // Test pattern behavior of multicharacter strings. 197 if (U_FAILURE(ec)) errln("FAIL: pattern parse error"); 225 // What we want to make sure of is that a pattern generated 320 // UCharCategory values; replaced with pattern constructors 852 // Pattern, Chars IN, Chars NOT in 1338 const char pattern[] = local 3711 static const char *pattern="[x{xy}{xya}{axy}{ax}]"; local [all...] |
| regextst.cpp | 110 // REGEX_TESTLM("pattern", "input text", lookingAt expected, matches expected); 113 // The input text is unescaped. The pattern is not. 121 const UnicodeString pattern(pat, -1, US_INV); 190 // REGEX_ERR("pattern", expected error line, column, expected status); 197 UnicodeString pattern(pat); 204 // Compile the caller's pattern 209 dataerrln("Line %d: unexpected error %s compiling pattern.", line, u_errorName(status)); 226 // Basic Check for basic functionality of regex pattern matching. 251 // Pattern with parentheses 297 // UnicodeSets in the pattern 2148 UnicodeString pattern = flagMat->group(2, status); local [all...] |
| /external/iproute2/include/ |
| utils.h | 104 int matches(const char *arg, const char *pattern);
|
| /external/stlport/test/unit/ |
| money_facets_test.cpp | 542 money_base::pattern cp = cfacet.pos_format(); 543 money_base::pattern cp_bn = cfacet_byname.pos_format(); 571 money_base::pattern cp = cfacet.pos_format(); 572 money_base::pattern cp_bn = cfacet_byname.pos_format();
|
| /external/webkit/JavaScriptCore/runtime/ |
| RegExpObject.cpp | 97 return jsString(exec, asRegExpObject(slot.slotBase())->regExp()->pattern());
|
| /external/webkit/JavaScriptCore/wrec/ |
| WRECGenerator.h | 58 static CompiledRegExp compileRegExp(JSGlobalData*, const UString& pattern, unsigned* numSubpatterns_ptr, const char** error_ptr, RefPtr<ExecutablePool>& pool, bool ignoreCase = false, bool multiline = false);
|
| /external/webkit/WebCore/bindings/js/ |
| JSCanvasRenderingContext2DCustom.cpp | 346 JSValue pattern = toJS(exec, local 350 return pattern; 354 JSValue pattern = toJS(exec, local 358 return pattern;
|
| /external/webkit/WebCore/bindings/v8/custom/ |
| V8CanvasRenderingContext2DCustom.cpp | 345 RefPtr<CanvasPattern> pattern = context->createPattern(imageElement, toWebCoreStringWithNullCheck(args[1]), ec); local 350 return toV8(pattern.release()); 356 RefPtr<CanvasPattern> pattern = context->createPattern(canvasElement, toWebCoreStringWithNullCheck(args[1]), ec); local 361 return toV8(pattern.release());
|
| /external/webkit/WebKitTools/Scripts/ |
| run-sunspider | 59 --tests Only run tests matching provided pattern
|
| /hardware/broadcom/wlan/bcm4329/src/dhd/sys/ |
| dhd_cdc.c | 574 /* Convert user's input in hex pattern to byte-size mask */ 709 /* add a default packet filter pattern */ 727 /* Parse pattern filter offset. */ 728 pkt_filter.u.pattern.offset = htod32(0); 730 /* Parse pattern filter mask. */ 732 (char *) pkt_filterp->u.pattern.mask_and_pattern)); 734 /* Parse pattern filter pattern. */ 736 (char *) &pkt_filterp->u.pattern.mask_and_pattern[mask_size])); 739 DHD_ERROR(("Mask and pattern not the same size\n")) [all...] |
| /external/libxml2/ |
| pattern.c | 2 * pattern.c: Implemetation of selectors for nodes 18 * - making clear how pattern starting with / or . need to be handled, 36 #include <libxml/pattern.h> 106 struct _xmlStreamCtxt *next;/* link to next sub pattern if | */ 164 struct _xmlPattern *next; /* next pattern if | is used */ 165 const xmlChar *pattern; /* the pattern */ member in struct:_xmlPattern 195 * Create a new XSLT Pattern 238 if (comp->pattern != NULL) 239 xmlFree((xmlChar *)comp->pattern); [all...] |
| /cts/tools/utils/ |
| buildCts.py | 43 pattern = re.compile(r'^\s*([^:#=\s]+)\s*:=\s*(.*?[^\\])$', re.MULTILINE + re.DOTALL) 46 for match in pattern.finditer(content):
|
| /dalvik/libcore/text/src/main/java/java/text/ |
| DateFormat.java | 341 * Formats the specified object as a string using the pattern of this date 389 * Formats the specified date as a string using the pattern of this date 529 String pattern = localeData.getDateFormat(dateStyle) + " " + localeData.getTimeFormat(timeStyle); local 530 return new SimpleDateFormat(pattern, locale); [all...] |
| NumberFormat.java | 187 * of {@code NumberFormat} with the same pattern and properties. 225 * Formats the specified double value as a string using the pattern of this 258 * Formats the specified long value as a string using the pattern of this 416 private static NumberFormat getInstance(String pattern, Locale locale) { 417 return new DecimalFormat(pattern, locale); [all...] |
| /external/libffi/testsuite/lib/ |
| libffi-dg.exp | 204 proc search_for { file pattern } { 207 if [string match "*$pattern*" $cur_line] then {
|
| /external/v8/src/ |
| jsregexp.cc | 66 Handle<String> pattern, 70 Object** argv[2] = { Handle<Object>::cast(pattern).location(), 96 Handle<String> pattern, 100 SetElement(array, 0, pattern); 111 Handle<String> pattern, 114 Handle<FixedArray> cached = CompilationCache::LookupRegExp(pattern, flags); 123 FlattenString(pattern); 126 FlatStringReader reader(pattern); 128 // Throw an exception if we fail to parse the pattern. 130 pattern, 365 String* pattern = jsregexp->Pattern(); local [all...] |
| /external/webkit/WebCore/plugins/win/ |
| PluginDatabaseWin.cpp | 130 String pattern = *it + "\\*"; local 132 hFind = FindFirstFileW(pattern.charactersWithNullTermination(), &findFileData);
|
| /external/icu4c/i18n/ |
| numfmt.cpp | 63 // If no number pattern can be located for a locale, this is the last 878 UnicodeString pattern; local 891 pattern.setTo(TRUE, gLastResortNumberPatterns[style], -1); 907 * the pattern is the same as the pattern of CURRENCYSTYLE 918 pattern.setTo(TRUE, patResStr, patLen); 926 pattern.setTo(currPattern, u_strlen(currPattern)); 973 // replace single currency sign in the pattern with double currency sign 976 pattern.findAndReplace(gSingleCurrencySign, gDoubleCurrencySign); 979 f = new DecimalFormat(pattern, symbolsToAdopt, style, status) [all...] |
| ucol_res.cpp | 942 UnicodeString pattern; local [all...] |
| /frameworks/base/core/jni/ |
| android_server_BluetoothService.cpp | 329 jstring pattern, jint attr_id) { 337 const char *c_pattern = env->GetStringUTFChars(pattern, NULL); 339 LOGV("... pattern = %s", c_pattern); 347 env->ReleaseStringUTFChars(pattern, c_pattern); 786 jstring path, jstring pattern) { 796 const char *c_pattern = env->GetStringUTFChars(pattern, NULL); 802 LOGV("... Pattern = %s, strlen = %d", c_pattern, strlen(c_pattern)); 814 env->ReleaseStringUTFChars(pattern, c_pattern); [all...] |
| /dalvik/vm/jdwp/ |
| JdwpHandler.c | 1637 char* pattern; local 1650 char* pattern; local [all...] |