Searched defs:zIn (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1_porter.c293 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
297 int c = zIn[i];
318 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
340 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
347 copy_stemmer(zIn, nIn, zOut, pnOut);
351 c = zIn[i];
359 copy_stemmer(zIn, nIn, zOut, pnOut);
H A Dfts1.c1741 ** Find the first alphanumeric token in the string zIn. Null-terminate
1745 static char *firstToken(char *zIn, char **pzTail){ argument
1748 n = getToken(zIn, &ttype);
1750 zIn += n;
1752 *pzTail = zIn;
1755 zIn[n] = 0;
1756 *pzTail = &zIn[1];
1757 dequoteString(zIn);
1758 return zIn;
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_porter.c292 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
296 int c = zIn[i];
317 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
339 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
346 copy_stemmer(zIn, nIn, zOut, pnOut);
350 c = zIn[i];
358 copy_stemmer(zIn, nIn, zOut, pnOut);
H A Dfts2.c2786 ** Find the first alphanumeric token in the string zIn. Null-terminate
2790 static char *firstToken(char *zIn, char **pzTail){ argument
2793 n = getToken(zIn, &ttype);
2795 zIn += n;
2797 *pzTail = zIn;
2800 zIn[n] = 0;
2801 *pzTail = &zIn[1];
2802 dequoteString(zIn);
2803 return zIn;
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_porter.c295 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
299 char c = zIn[i];
320 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
342 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
349 copy_stemmer(zIn, nIn, zOut, pnOut);
353 char c = zIn[i];
361 copy_stemmer(zIn, nIn, zOut, pnOut);
H A Dfts3_expr.c550 const char *zIn = z; local
557 rc = getNextNode(pParse, zIn, nIn, &p, &nByte);
644 zIn += nByte;
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_hexio.c47 ** Convert hex to binary. The input zIn[] contains N bytes of
52 int sqlite3TestHexToBin(const unsigned char *zIn, int N, unsigned char *aOut){ argument
76 c = aMap[zIn[i]];
156 const unsigned char *zIn; local
166 zIn = (const unsigned char *)Tcl_GetStringFromObj(objv[3], &nIn);
171 nOut = sqlite3TestHexToBin(zIn, nIn, aOut);
203 const unsigned char *zIn; local
211 zIn = (const unsigned char *)Tcl_GetStringFromObj(objv[1], &nIn);
216 nOut = sqlite3TestHexToBin(zIn, nIn, aOut);
H A Dtest_server.c227 const char *zIn; /* Input filename or SQL statement */ member in struct:SqlMessage
228 int nByte; /* Size of the zIn parameter for prepare() */
239 #define MSG_Open 1 /* sqlite3_open(zIn, &pDb) */
240 #define MSG_Prepare 2 /* sqlite3_prepare(pDb, zIn, nByte, &pStmt, &zOut) */
335 msg.zIn = zDatabaseName;
350 msg.zIn = zSql;
424 pMsg->errCode = sqlite3_open(pMsg->zIn, &pMsg->pDb);
428 pMsg->errCode = sqlite3_prepare(pMsg->pDb, pMsg->zIn, pMsg->nByte,
H A Dutf.c108 #define READ_UTF16LE(zIn, TERM, c){ \
109 c = (*zIn++); \
110 c += ((*zIn++)<<8); \
112 int c2 = (*zIn++); \
113 c2 += ((*zIn++)<<8); \
118 #define READ_UTF16BE(zIn, TERM, c){ \
119 c = ((*zIn++)<<8); \
120 c += (*zIn++); \
122 int c2 = ((*zIn++)<<8); \
123 c2 += (*zIn
166 sqlite3Utf8Read( const unsigned char *zIn, const unsigned char **pzNext ) argument
207 unsigned char *zIn; /* Input iterator */ local
386 sqlite3Utf8CharLen(const char *zIn, int nByte) argument
416 sqlite3Utf8To8(unsigned char *zIn) argument
488 sqlite3Utf16ByteLen(const void *zIn, int nChar) argument
[all...]
H A Dbackup.c273 const u8 *zIn = &zSrcData[iOff%nSrcPgsz]; local
284 memcpy(zOut, zIn, nCopy);
H A Dtest_func.c336 static void testHexToBin(const char *zIn, char *zOut){ argument
337 while( zIn[0] && zIn[1] ){
338 *(zOut++) = (testHexChar(zIn[0])<<4) + testHexChar(zIn[1]);
339 zIn += 2;
356 const char *zIn; local
360 zIn = (const char*)sqlite3_value_text(argv[0]);
365 testHexToBin(zIn, zOut);
383 const char *zIn; local
410 const char *zIn; local
[all...]
H A Dfunc.c1048 const unsigned char *zIn; /* Input string */ local
1060 zIn = sqlite3_value_text(argv[0]);
1061 if( zIn==0 ) return;
1063 assert( zIn==sqlite3_value_text(argv[0]) );
1098 if( len<=nIn && memcmp(zIn, azChar[i], len)==0 ) break;
1101 zIn += len;
1110 if( len<=nIn && memcmp(&zIn[nIn-len],azChar[i],len)==0 ) break;
1120 sqlite3_result_text(context, (char*)zIn, nIn, SQLITE_TRANSIENT);
1141 const u8 *zIn; local
1154 zIn
[all...]
H A Dtest8.c722 char *zIn = *pzStr; local
727 sqlite3_free(zIn);
728 zIn = 0;
730 if( zIn ){
731 char *zTemp = zIn;
732 zIn = sqlite3_mprintf("%s%s", zIn, zAppend);
735 zIn = sqlite3_mprintf("%s", zAppend);
737 if( !zIn ){
741 *pzStr = zIn;
[all...]
H A Dbuild.c1027 char sqlite3AffinityType(const char *zIn){ argument
1031 if( zIn ) while( zIn[0] ){
1032 h = (h<<8) + sqlite3UpperToLower[(*zIn)&0xff];
1033 zIn++;
H A Dshell.c876 /* zIn is either a pointer to a NULL-terminated string in memory obtained
878 ** added to zIn, and the result returned in memory obtained from malloc().
879 ** zIn, if it was not NULL, is freed.
884 static char *appendText(char *zIn, char const *zAppend, char quote){ argument
888 int nIn = (zIn?strlen30(zIn):0);
898 zIn = (char *)realloc(zIn, len);
899 if( !zIn ){
904 char *zCsr = &zIn[nI
[all...]
H A Dtclsqlite.c1035 ** first SQL statement in the buffer pointed to by parameter zIn. If
1042 ** buffer zIn, or to the '\0' byte at the end of zIn if there is no
1050 char const *zIn, /* SQL to compile */
1054 const char *zSql = zIn; /* Pointer to first SQL statement in zIn */
1048 dbPrepareAndBind( SqliteDb *pDb, char const *zIn, char const **pzOut, SqlPreparedStmt **ppPreStmt ) argument
/external/sqlite/dist/orig/
H A Dshell.c963 /* zIn is either a pointer to a NULL-terminated string in memory obtained
965 ** added to zIn, and the result returned in memory obtained from malloc().
966 ** zIn, if it was not NULL, is freed.
971 static char *appendText(char *zIn, char const *zAppend, char quote){ argument
975 int nIn = (zIn?strlen30(zIn):0);
985 zIn = (char *)realloc(zIn, len);
986 if( !zIn ){
991 char *zCsr = &zIn[nI
[all...]
H A Dsqlite3.c12300 ** Assuming zIn points to the first byte of a UTF-8 character,
12301 ** advance zIn to point to the first byte of the next UTF-8 character.
12303 #define SQLITE_SKIP_UTF8(zIn) { \
12304 if( (*(zIn++))>=0xc0 ){ \
12305 while( (*zIn & 0xc0)==0x80 ){ zIn++; } \
21814 #define READ_UTF16LE(zIn, TERM, c){ \
21815 c = (*zIn++); \
21816 c += ((*zIn++)<<8); \
21818 int c2 = (*zIn
21911 unsigned char *zIn; /* Input iterator */ local
22088 sqlite3Utf8CharLen(const char *zIn, int nByte) argument
22118 sqlite3Utf8To8(unsigned char *zIn) argument
22163 sqlite3Utf16ByteLen(const void *zIn, int nChar) argument
60345 const u8 *zIn = &zSrcData[iOff%nSrcPgsz]; local
87202 sqlite3AffinityType(const char *zIn, u8 *pszEst) argument
92863 const unsigned char *zIn; /* Input string */ local
92956 const u8 *zIn; local
133807 const char *zIn = z; local
135148 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
135195 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
144014 unicodeAddExceptions( unicode_tokenizer *p, int bAlnum, const char *zIn, int nIn ) argument
[all...]
/external/sqlite/dist/
H A Dshell.c968 /* zIn is either a pointer to a NULL-terminated string in memory obtained
970 ** added to zIn, and the result returned in memory obtained from malloc().
971 ** zIn, if it was not NULL, is freed.
976 static char *appendText(char *zIn, char const *zAppend, char quote){ argument
980 int nIn = (zIn?strlen30(zIn):0);
990 zIn = (char *)realloc(zIn, len);
991 if( !zIn ){
996 char *zCsr = &zIn[nI
[all...]
H A Dsqlite3.c12300 ** Assuming zIn points to the first byte of a UTF-8 character,
12301 ** advance zIn to point to the first byte of the next UTF-8 character.
12303 #define SQLITE_SKIP_UTF8(zIn) { \
12304 if( (*(zIn++))>=0xc0 ){ \
12305 while( (*zIn & 0xc0)==0x80 ){ zIn++; } \
21814 #define READ_UTF16LE(zIn, TERM, c){ \
21815 c = (*zIn++); \
21816 c += ((*zIn++)<<8); \
21818 int c2 = (*zIn
21911 unsigned char *zIn; /* Input iterator */ local
22088 sqlite3Utf8CharLen(const char *zIn, int nByte) argument
22118 sqlite3Utf8To8(unsigned char *zIn) argument
22163 sqlite3Utf16ByteLen(const void *zIn, int nChar) argument
60365 const u8 *zIn = &zSrcData[iOff%nSrcPgsz]; local
87222 sqlite3AffinityType(const char *zIn, u8 *pszEst) argument
92883 const unsigned char *zIn; /* Input string */ local
92976 const u8 *zIn; local
133839 const char *zIn = z; local
135180 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
135227 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
144046 unicodeAddExceptions( unicode_tokenizer *p, int bAlnum, const char *zIn, int nIn ) argument
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c10827 ** Assuming zIn points to the first byte of a UTF-8 character,
10828 ** advance zIn to point to the first byte of the next UTF-8 character.
10830 #define SQLITE_SKIP_UTF8(zIn) { \
10831 if( (*(zIn++))>=0xc0 ){ \
10832 while( (*zIn & 0xc0)==0x80 ){ zIn++; } \
19767 #define READ_UTF16LE(zIn, TERM, c){ \
19768 c = (*zIn++); \
19769 c += ((*zIn++)<<8); \
19771 int c2 = (*zIn
19825 sqlite3Utf8Read( const unsigned char *zIn, const unsigned char **pzNext ) argument
19866 unsigned char *zIn; /* Input iterator */ local
20045 sqlite3Utf8CharLen(const char *zIn, int nByte) argument
20075 sqlite3Utf8To8(unsigned char *zIn) argument
20147 sqlite3Utf16ByteLen(const void *zIn, int nChar) argument
55536 const u8 *zIn = &zSrcData[iOff%nSrcPgsz]; local
77866 sqlite3AffinityType(const char *zIn) argument
82747 const unsigned char *zIn; /* Input string */ local
82840 const u8 *zIn; local
117786 const char *zIn = z; local
118845 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
118892 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 8384 milliseconds