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

  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3Int.h 251 Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */
fts3_snippet.c 195 Fts3Expr *pParent = pExpr->pParent;
199 && pParent
200 && pParent->eType==FTSQUERY_NEAR
201 && pParent->pRight==pExpr
206 int nNear = pParent->nNear;
207 Fts3Expr *pLeft = pParent->pLeft;
218 pParent = pExpr->pParent;
    [all...]
fts3_write.c 150 SegmentNode *pParent; /* Parent node (or NULL for root node) */
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_onefile.c 180 sqlite3_vfs *pParent;
205 0 /* pParent */
617 sqlite3_vfs *pParent = pFsVfs->pParent;
620 pReal = (fs_real_file *)sqlite3_malloc(sizeof(*pReal)+pParent->szOsFile);
625 memset(pReal, 0, sizeof(*pReal)+pParent->szOsFile);
629 rc = pParent->xOpen(pParent, zName, pReal->pFile, real_flags, pOutFlags);
723 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent;
    [all...]
test_osinst.c 707 sqlite3_vfs *pParent;
714 pParent = sqlite3_vfs_find(zParentVfs);
715 if( !pParent ){
720 nByte = sizeof(VfslogVfs) + pParent->szOsFile + nVfs+1+pParent->mxPathname+1;
724 p->pVfs = pParent;
727 p->base.zName = &((char *)p->pLog)[pParent->szOsFile];
728 p->base.szOsFile += pParent->szOsFile;
732 pParent->xFullPathname(pParent, zLog, pParent->mxPathname, zFile)
    [all...]
vdbeInt.h 122 VdbeFrame *pParent; /* Parent of this frame, or NULL if parent is main */
recover.c 620 RecoverInteriorCursor *pParent; /* Parent node to this node. */
631 pCursor = pCursor->pParent;
664 static int interiorCursorCreate(RecoverInteriorCursor *pParent,
674 pCursor->pParent = pParent;
718 pCursor = pCursor->pParent;
728 pCursor = pCursor->pParent;
771 if( !pCursor->pParent ){
774 rc = interiorCursorNextPage(&pCursor->pParent, ppPage);
785 *ppCursor = pCursor->pParent;
    [all...]
test_vfs.c 81 sqlite3_vfs *pParent; /* The VFS to use for file IO */
149 #define PARENTVFS(x) (((Testvfs *)((x)->pAppData))->pParent)
988 zName = ckalloc(p->pParent->mxPathname);
989 p->pParent->xFullPathname(
990 p->pParent, Tcl_GetString(objv[2]),
991 p->pParent->mxPathname, zName
    [all...]
select.c     [all...]
btree.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c     [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
ObjectHelper.java 127 Pointer pParent = (Pointer)objectStructure.getFieldValue("parent");
128 Object parent = blenderContext.getLoadedFeature(pParent.getOldMemoryAddress(), LoadedFeatureDataType.LOADED_FEATURE);
129 if(parent == null && pParent.isNotNull()) {
130 Structure parentStructure = pParent.fetchData(blenderContext.getInputStream()).get(0);
299 Pointer pParent = (Pointer) objectStructure.getFieldValue("parent");
300 Matrix4f parentInv = pParent.isNull() ? Matrix4f.IDENTITY : this.getMatrix(objectStructure, "parentinv");
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 258 RtreeNode *pParent; /* Parent node */
446 static RtreeNode *nodeNew(Rtree *pRtree, RtreeNode *pParent){
453 pNode->pParent = pParent;
455 nodeReference(pParent);
467 RtreeNode *pParent, /* Either the parent node or NULL */
478 assert( !pParent || !pNode->pParent || pNode->pParent==pParent );
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1332 milliseconds