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

  /external/chromium_org/third_party/sqlite/src/src/
test_wholenumber.c 185 const struct sqlite3_index_constraint *pConstraint;
186 pConstraint = pIdxInfo->aConstraint;
187 for(i=0; i<pIdxInfo->nConstraint; i++, pConstraint++){
188 if( pConstraint->usable==0 ) continue;
189 if( (idxNum & 3)==0 && pConstraint->op==SQLITE_INDEX_CONSTRAINT_GT ){
193 if( (idxNum & 3)==0 && pConstraint->op==SQLITE_INDEX_CONSTRAINT_GE ){
197 if( (idxNum & 12)==0 && pConstraint->op==SQLITE_INDEX_CONSTRAINT_LT ){
201 if( (idxNum & 12)==0 && pConstraint->op==SQLITE_INDEX_CONSTRAINT_LE ){
test_fuzzer.c 755 const struct sqlite3_index_constraint *pConstraint;
756 pConstraint = pIdxInfo->aConstraint;
757 for(i=0; i<pIdxInfo->nConstraint; i++, pConstraint++){
758 if( pConstraint->usable==0 ) continue;
760 && pConstraint->iColumn==0
761 && pConstraint->op==SQLITE_INDEX_CONSTRAINT_MATCH
768 && pConstraint->iColumn==1
769 && (pConstraint->op==SQLITE_INDEX_CONSTRAINT_LT
770 || pConstraint->op==SQLITE_INDEX_CONSTRAINT_LE)
  /frameworks/compile/mclinker/lib/MC/
Attribute.cpp 53 const AttrConstraint& pConstraint)
54 : m_AttrPool(pParent), m_pBase(&pBase), m_Constraint(pConstraint) {
  /frameworks/compile/mclinker/include/mcld/MC/
Attribute.h 183 const AttrConstraint& pConstraint);
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 947 const struct sqlite3_index_constraint *pConstraint;
948 pConstraint = &pInfo->aConstraint[i];
949 if( pConstraint->iColumn==0 &&
950 pConstraint->op==SQLITE_INDEX_CONSTRAINT_MATCH &&
951 pConstraint->usable ){ /* a full-text search */
    [all...]
fts1.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 866 RtreeConstraint *pConstraint, /* MATCH constraint to test */
874 assert( pConstraint->op==RTREE_MATCH );
875 assert( pConstraint->pGeom );
880 return pConstraint->xGeom(pConstraint->pGeom, nCoord, aCoord, pbRes);
    [all...]

Completed in 130 milliseconds