Searched refs:iPattern (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/xfa/src/fgas/src/localization/ |
D | fx_locale.cpp | 577 int32_t& iPattern, in FX_GetLiteralText() argument 580 if (pStrPattern[iPattern] != '\'') { in FX_GetLiteralText() 583 iPattern++; in FX_GetLiteralText() 585 while (iPattern < iLenPattern) { in FX_GetLiteralText() 586 if (pStrPattern[iPattern] == '\'') { in FX_GetLiteralText() 588 if ((iPattern + 1 >= iLenPattern) || in FX_GetLiteralText() 589 ((pStrPattern[iPattern + 1] != '\'') && (iQuote % 2 == 0))) { in FX_GetLiteralText() 594 iPattern++; in FX_GetLiteralText() 595 } else if (pStrPattern[iPattern] == '\\' && (iPattern + 1 < iLenPattern) && in FX_GetLiteralText() 596 pStrPattern[iPattern + 1] == 'u') { in FX_GetLiteralText() [all …]
|
/external/pdfium/xfa/include/fxfa/ |
D | fxfa_objectacc.h | 102 FX_BOOL SetPattern(int32_t iPattern, FX_ARGB foreColor);
|
/external/pdfium/xfa/src/fxfa/src/parser/ |
D | xfa_objectacc_imp.cpp | 175 FX_BOOL CXFA_Fill::SetPattern(int32_t iPattern, FX_ARGB foreColor) { in SetPattern() argument 183 return pNode->SetEnum(XFA_ATTRIBUTE_Type, (XFA_ATTRIBUTEENUM)iPattern); in SetPattern()
|
/external/sqlite/dist/ |
D | sqlite3.c | 157660 int iPattern = 0; /* Current byte index in zPattern */ 157665 while( zPattern[iPattern]!=0 ){ 157669 U8_NEXT_UNSAFE(zPattern, iPattern, uPattern); 157686 while( (c=zPattern[iPattern]) == MATCH_ALL || c == MATCH_ONE ){ 157691 iPattern++; 157694 if( zPattern[iPattern]==0 ) return 1; 157697 if( icuLikeCompare(&zPattern[iPattern], &zString[iString], uEsc) ){
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 157630 int iPattern = 0; /* Current byte index in zPattern */ 157635 while( zPattern[iPattern]!=0 ){ 157639 U8_NEXT_UNSAFE(zPattern, iPattern, uPattern); 157656 while( (c=zPattern[iPattern]) == MATCH_ALL || c == MATCH_ONE ){ 157661 iPattern++; 157664 if( zPattern[iPattern]==0 ) return 1; 157667 if( icuLikeCompare(&zPattern[iPattern], &zString[iString], uEsc) ){
|