HomeSort by relevance Sort by last modified time
    Searched defs:pInput (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_tokenizer1.c 35 const char *pInput; /* input we are tokenizing */
37 int iOffset; /* current position in pInput */
101 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
107 const char *pInput, int nBytes, /* String to be tokenized */
115 c->pInput = pInput;
116 if( pInput==0 ){
119 c->nBytes = (int)strlen(pInput);
157 unsigned char *p = (unsigned char *)c->pInput;
simple_tokenizer.c 38 const char *pInput; /* input we are tokenizing */
40 const char *pCurrent; /* current position in pInput */
92 const char *pInput, int nBytes,
98 c->pInput = pInput;
99 c->nBytes = nBytes<0 ? (int) strlen(pInput) : nBytes;
100 c->pCurrent = c->pInput; /* start tokenizing at the beginning */
130 while( c->pCurrent-c->pInput<c->nBytes ){
146 *piStartOffset = (int) (c->pCurrent-c->pInput);
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer1.c 42 const char *pInput; /* input we are tokenizing */
44 int iOffset; /* current position in pInput */
110 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
116 const char *pInput, int nBytes, /* String to be tokenized */
124 c->pInput = pInput;
125 if( pInput==0 ){
128 c->nBytes = (int)strlen(pInput);
166 unsigned char *p = (unsigned char *)c->pInput;
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_tokenizer1.c 43 const char *pInput; /* input we are tokenizing */
45 int iOffset; /* current position in pInput */
110 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
116 const char *pInput, int nBytes, /* String to be tokenized */
126 c->pInput = pInput;
127 if( pInput==0 ){
130 c->nBytes = (int)strlen(pInput);
168 unsigned char *p = (unsigned char *)c->pInput;
  /development/tools/etc1tool/
etc1tool.cpp 136 int read_PNG_File(const char* pInput, etc1_byte** ppImageData,
149 if ((pIn = fopen(pInput, "rb")) == NULL) {
151 pInput, errno);
158 fprintf(stderr, "Could not read PNG header from %s: %d\n", pInput,
164 fprintf(stderr, "%s is not a PNG file.\n", pInput);
234 int readPKMFile(const char* pInput, etc1_byte** ppImageData,
247 if ((pIn = fopen(pInput, "rb")) == NULL) {
249 pInput, errno);
255 pInput, errno);
260 fprintf(stderr, "Bad header PKM header for input file %s\n", pInput);
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 93 milliseconds