| /system/core/sh/ |
| expand.c | 716 * Terminate the string and start recording the pattern 1327 * Returns true if the pattern matches the string. 1331 patmatch(char *pattern, char *string, int squoted) 1334 if (pattern[0] == '!' && pattern[1] == '!') 1335 return 1 - pmatch(pattern + 2, string); 1338 return pmatch(pattern, string, squoted); 1343 pmatch(char *pattern, char *string, int squoted) 1348 p = pattern; 1491 * See if a pattern matches in a case statement [all...] |
| nodes.c | 161 calcsize(n->nclist.pattern); 259 new->nclist.pattern = copynode(n->nclist.pattern);
|
| /external/icu4c/i18n/ |
| bmsearch.cpp | 67 UBool isIdentical(UnicodeString &pattern, int32_t start, int32_t end); 345 UBool Target::isIdentical(UnicodeString &pattern, int32_t start, int32_t end) 352 const UChar *pBuffer = pattern.getBuffer(); 353 int32_t pLength = pattern.length(); 546 // ((patlen - 1) - end) is how far the end of that match is from end of pattern 548 // (i + (patlen - 1) - end) is index of same character at end of pattern 576 // initialize entries to minLengthInChars of the pattern 585 // this matching suffix is a prefix of the pattern 589 // so that the front of the pattern (i.e. the prefix) 650 : data(theData), patCEs(NULL), badCharacterTable(NULL), goodSuffixTable(NULL), pattern(patternString), target(NULL [all...] |
| unum.cpp | 36 const UChar* pattern, 86 const UnicodeString pat(pattern, patternLength); 119 const UnicodeString pat(pattern, patternLength); 810 const UChar *pattern, 826 int32_t len = (patternLength == -1 ? u_strlen(pattern) : patternLength); 827 const UnicodeString pat((UChar*)pattern, len, len);
|
| dcfmtsym.cpp | 247 //pattern.setTo(TRUE, currPattern, currPatternLen); 342 fSymbols[kPatternSeparatorSymbol] = (UChar)0x3b; // ';' pattern separator 345 fSymbols[kDigitSymbol] = (UChar)0x23; // '#' pattern digit 382 const UnicodeString& pattern) { 384 currencySpcBeforeSym[(int32_t)type] = pattern; 386 currencySpcAfterSym[(int32_t)type] = pattern;
|
| windtfmt.cpp | 171 UnicodeString *pattern = fDateTimeMsg; local 181 pattern = getTimeDateFormat(&cal, fLocale, status); 184 MessageFormat::format(*pattern, timeDateArray, 2, appendTo, status);
|
| msgfmt.cpp | 15 * 06/11/97 helena Fixed addPattern to take the pattern correctly. 16 * 06/17/97 helena Fixed the getPattern to return the correct pattern. 196 * pattern text fPattern, and an argument number. The argument 257 // Creates a MessageFormat instance based on the pattern. 259 MessageFormat::MessageFormat(const UnicodeString& pattern, 281 applyPattern(pattern, success); 285 MessageFormat::MessageFormat(const UnicodeString& pattern, 308 applyPattern(pattern, success); 312 MessageFormat::MessageFormat(const UnicodeString& pattern, 336 applyPattern(pattern, parseError, success) [all...] |
| /external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
| bitstream.cpp | 565 /* Modified : 12/18/2000 : changed the pattern type to uint */ 571 uint pattern; local 575 BitstreamShowBits16(stream, n_stuffed, &pattern); 576 if (pattern == msk[n_stuffed-1]) return PV_TRUE; 583 uint pattern; local 591 BitstreamShowBits16(stream, n_stuffed, &pattern); 592 if (pattern == 0) return PV_TRUE; [all...] |
| /external/opencore/oscl/oscl/osclmemory/src/ |
| oscl_mem_audit.h | 590 * API to get the prefill pattern. The pattern is used 599 * API to get the postfill pattern. The pattern is used 613 * API to set the prefill pattern. 615 OSCL_IMPORT_REF void MM_SetPrefillPattern(uint8 pattern); 618 * API to set the postfill pattern. 620 OSCL_IMPORT_REF void MM_SetPostfillPattern(uint8 pattern); 1015 * API to get the prefill pattern. The pattern is use [all...] |
| /external/v8/test/mjsunit/ |
| string-replace.js | 32 function replaceTest(result, subject, pattern, replacement) { 34 "\"" + subject + "\".replace(" + pattern + ", " + replacement + ")"; 35 assertEquals(result, subject.replace(pattern, replacement), name);
|
| /external/webkit/JavaScriptCore/tests/mozilla/ |
| jsDriver.pl | 687 my $pattern = ($opt_engine_type eq "smdebug") ? 691 # the pattern expected to hold this type (debug or opt) of engine 693 if ($dir =~ $pattern) { 701 "matching the pattern *$pattern. Have you built the " . 824 my $pattern = ($opt_engine_type eq "lcdebug") ? 828 if ($dir =~ $pattern) { 836 "matching the pattern *$pattern. Have you built the " . 942 # We will call expand_test_list_entry(), which does pattern-matching on $list_file [all...] |
| /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
| bitstream.cpp | 562 /* Modified : 12/18/2000 : changed the pattern type to uint */ 568 uint pattern; local 572 BitstreamShowBits16(stream, n_stuffed, &pattern); 573 if (pattern == msk[n_stuffed-1]) return PV_TRUE; 580 uint pattern; local 588 BitstreamShowBits16(stream, n_stuffed, &pattern); 589 if (pattern == 0) return PV_TRUE; [all...] |
| /external/icu4c/tools/toolutil/ |
| package.cpp | 867 Package::findItems(const char *pattern) { 870 if(pattern==NULL || *pattern==0) { 875 findPrefix=pattern; 879 wild=strchr(pattern, '*'); 882 findPrefixLength=(int32_t)strlen(pattern); 885 findPrefixLength=(int32_t)(wild-pattern); 890 fprintf(stderr, "icupkg: syntax error (more than one '*') in item pattern \"%s\"\n", pattern); 1041 Package::removeItems(const char *pattern) { [all...] |
| /external/skia/src/images/ |
| fpdfemb.h | [all...] |
| /external/webkit/WebCore/platform/graphics/cg/ |
| ImageCG.cpp | 307 // On Tiger this code runs all the time. This code is suboptimal because the pattern does not reference the image directly, and the 308 // pattern is destroyed before exiting the function. This means any decoding the pattern does doesn't end up cached anywhere, so we 315 RetainPtr<CGPatternRef> pattern(AdoptCF, CGPatternCreate(subImage.get(), CGRectMake(0, 0, tileRect.width(), tileRect.height()), 318 if (!pattern) { 326 RetainPtr<CGColorRef> color(AdoptCF, CGColorCreateWithPattern(patternSpace.get(), pattern.get(), &alpha));
|
| /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Rx/ |
| rx.c | 503 os_memoryCopy(pRxData->hOs, (PVOID) filterRequest.pattern, (PVOID) pRequest->Pattern, sizeof(filterRequest.pattern)); 518 os_memoryCopy(pRxData->hOs, (PVOID) filterRequest.pattern, (PVOID) pRequest->Pattern, sizeof(filterRequest.pattern)); 596 (os_memoryCompare(pRxData->hOs, pRxData->filterRequests[i].pattern, request->pattern, request->patternLength) == 0)) 631 os_memoryCopy(pRxData->hOs, fieldPatterns + *lenFieldPatterns, fieldPattern->pattern, fieldPattern->length); 634 /* if the pattern bit mask is enabled add it to the end of the request * [all...] |
| /external/elfutils/libasm/ |
| libasmP.h | 103 /* Fill pattern. */ 108 } *pattern; member in struct:AsmScn 226 /* The default fill pattern: one zero byte. */
|
| /external/icu4c/i18n/unicode/ |
| dcfmtsym.h | 74 * If you supply a pattern with multiple grouping characters, the interval 93 /** The pattern separator */ 99 /** Character representing a digit in the pattern */ 242 * Get pattern string for 'CurrencySpacing' that can be applied to 244 * This API gets the CurrencySpacing data from ResourceBundle. The pattern can 248 * @param beforeCurrency : true if the pattern is for before currency symbol. 249 * false if the pattern is for after currency symbol. 252 * @return pattern string for currencyMatch, surroundingMatch or spaceInsert. 261 * Set pattern string for 'CurrencySpacing' that can be applied to 265 * @param beforeCurrency : true if the pattern is for before currency symbol [all...] |
| /external/icu4c/test/intltest/ |
| dcfmapts.cpp | 73 const UnicodeString pattern("#,##0.# FF"); 74 DecimalFormat pat(pattern, status); 76 errln((UnicodeString)"ERROR: Could not create DecimalFormat (pattern)"); 88 DecimalFormat cust1(pattern, symbols, status); 90 errln((UnicodeString)"ERROR: Could not create DecimalFormat (pattern, symbols*)"); 94 DecimalFormat cust2(pattern, *symbols, status); 96 errln((UnicodeString)"ERROR: Could not create DecimalFormat (pattern, symbols)"); 284 logln((UnicodeString)"Pattern is " + funkyPat); 288 logln((UnicodeString)"Localized pattern is " + locPat); 295 logln((UnicodeString)"Applying pattern " + p1) [all...] |
| dtifmtts.cpp | 275 // first item is date pattern 853 const char* pattern = data[0]; local 971 const char* pattern = data[0]; local [all...] |
| tzfmttst.cpp | 118 errcheckln(status, (UnicodeString)"new SimpleDateFormat failed for pattern " + 186 + ", locale=" + LOCALES[locidx].getName() + ", pattern=" + PATTERNS[patidx] 191 + ", locale=" + LOCALES[locidx].getName() + ", pattern=" + PATTERNS[patidx] 216 + ", locale=" + LOCALES[locidx].getName() + ", pattern=" + PATTERNS[patidx] 224 + ", locale=" + LOCALES[locidx].getName() + ", pattern=" + PATTERNS[patidx] 269 // Whether each pattern is ambiguous at DST->STD local time overlap 271 // Whether each pattern is ambiguous at STD->STD/DST->DST local time overlap 330 logln((UnicodeString)" pattern: " + PATTERNS[patidx]); 335 UnicodeString pattern(BASEPATTERN); 336 pattern.append(" ").append(PATTERNS[patidx]) [all...] |
| /external/srec/srec/include/ |
| duk_args.h | 105 int is_flag_assigned(char *pattern, int avc, arg_info *avlist);
|
| /external/webkit/JavaScriptCore/parser/ |
| Lexer.h | 54 bool scanRegExp(const Identifier*& pattern, const Identifier*& flags, UChar patternPrefix = 0);
|
| /hardware/ti/wlan/wl1271/stad/Export_Inc/ |
| STADExternalIf.h | 280 TI_UINT8 offset; /**< Pattern Start Offset (0-255) */ 284 TI_UINT8 pattern[RX_DATA_FILTER_MAX_PATTERN_SIZE];/**< Data Filter PAttern */ member in struct:__anon8620
|
| /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
| SysinfoPanel.java | 46 import java.util.regex.Pattern; 334 Pattern p = Pattern.compile("([\\d\\.]+)\\s*([a-z]+)"); 366 Pattern lockPattern = Pattern.compile("Wake lock (\\S+): (.+) partial"); 367 Pattern totalPattern = Pattern.compile("Total: (.+) uptime"); 406 Pattern pattern = Pattern local 432 Pattern pattern = Pattern local [all...] |