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

  /external/chromium_org/third_party/sqlite/src/ext/icu/
icu.c 69 const uint8_t *zPattern, /* LIKE pattern */
76 int iPattern = 0; /* Current byte index in zPattern */
81 while( zPattern[iPattern]!=0 ){
85 U8_NEXT_UNSAFE(zPattern, iPattern, uPattern);
103 while( (c=zPattern[iPattern]) == MATCH_ALL || c == MATCH_ONE ){
111 if( zPattern[iPattern]==0 ) return 1;
114 if( icuLikeCompare(&zPattern[iPattern], &zString[iString], uEsc) ){
235 ** zString REGEXP zPattern
236 ** regexp(zPattern, zString)
261 const UChar *zPattern = sqlite3_value_text16(apArg[0])
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
func.c 552 const u8 *zPattern, /* The glob pattern */
566 while( (c = sqlite3Utf8Read(zPattern,&zPattern))!=0 ){
568 while( (c=sqlite3Utf8Read(zPattern,&zPattern)) == matchAll
577 c = sqlite3Utf8Read(zPattern, &zPattern);
584 while( *zString && patternCompare(&zPattern[-1],zString,pInfo,esc)==0 ){
603 if( patternCompare(zPattern,zString,pInfo,esc) ) return 1;
617 c2 = sqlite3Utf8Read(zPattern, &zPattern)
    [all...]
test_quota.c 70 const char *zPattern; /* Filename pattern to be quotaed */
266 for(p=gQuota.pGroup; p && quotaStrglob(p->zPattern, zFilename)==0;
645 ** The quota group is defined by the zPattern. When calling this routine
646 ** with a zPattern for a quota group that already exists, this routine
648 ** group. If zPattern is new, then a new quota group is created.
654 ** Calling this routine on a zPattern that does not exist and with a
663 const char *zPattern, /* The filename pattern */
677 while( pGroup && strcmp(pGroup->zPattern, zPattern)!=0 ){
681 int nPattern = strlen(zPattern);
    [all...]

Completed in 56 milliseconds