Lines Matching defs:aiException
197545 int *aiException;
197565 sqlite3_free(p->aiException);
197580 ** unicode_tokenizer.aiException[] array. For the purposes of tokenization,
197582 ** codepoints in the aiException[] array.
197613 int *aNew; /* New aiException[] array */
197616 aNew = sqlite3_realloc64(p->aiException,(p->nException+nEntry)*sizeof(int));
197633 p->aiException = aNew;
197641 ** Return true if the p->aiException[] array contains the value iCode.
197645 int *a = p->aiException;
241163 int *aiException;
241183 aNew = (int*)sqlite3_realloc64(p->aiException,
241210 p->aiException = aNew;
241221 ** Return true if the p->aiException[] array contains the value iCode.
241225 int *a = p->aiException;
241250 sqlite3_free(p->aiException);