Searched defs:xStep (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dmain.c1022 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
1031 (xFunc && (xFinal || xStep)) ||
1032 (!xFunc && (xFinal && !xStep)) ||
1033 (!xFunc && (!xFinal && xStep)) ||
1052 pUserData, xFunc, xStep, xFinal, pDestructor);
1055 pUserData, xFunc, xStep, xFinal, pDestructor);
1099 p->xStep = xStep;
1116 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
1119 return sqlite3_create_function_v2(db, zFunc, nArg, enc, p, xFunc, xStep,
1015 sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), FuncDestructor *pDestructor ) argument
1109 sqlite3_create_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*) ) argument
1123 sqlite3_create_function_v2( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void *) ) argument
1160 sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ) argument
[all...]
H A DsqliteInt.h982 void (*xStep)(sqlite3_context*,int,sqlite3_value**); /* Aggregate step */ member in struct:FuncDef
1031 ** AGGREGATE(zName, nArg, iArg, bNC, xStep, xFinal)
1033 ** the C functions xStep and xFinal. The first four parameters
1053 #define AGGREGATE(zName, nArg, arg, nc, xStep, xFinal) \
1055 SQLITE_INT_TO_PTR(arg), 0, 0, xStep,xFinal,#zName,0,0}
/external/chromium_org/third_party/skia/experimental/PdfViewer/src/
H A DSkPdfRenderer.cpp1289 int xStep = abs((int)pattern->XStep(pdfContext->fPdfDoc)); local
1313 SkIntToScalar(xStep), SkIntToScalar(0));
1314 totalx += xStep;
1315 x += SkIntToScalar(xStep);
/external/skia/experimental/PdfViewer/src/
H A DSkPdfRenderer.cpp1289 int xStep = abs((int)pattern->XStep(pdfContext->fPdfDoc)); local
1313 SkIntToScalar(xStep), SkIntToScalar(0));
1314 totalx += xStep;
1315 x += SkIntToScalar(xStep);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c4027 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
4030 ** callback only; NULL pointers must be passed as the xStep and xFinal
4031 ** parameters. ^An aggregate SQL function requires an implementation of xStep
4073 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4083 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4093 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4137 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
4200 ** called once for each invocation of the xStep callback and then one
4202 ** an aggregate query, the xStep() callback of the aggregate function
4221 ** to the xStep o
9327 void (*xStep)(sqlite3_context*,int,sqlite3_value**); /* Aggregate step */ member in struct:FuncDef
108260 sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), FuncDestructor *pDestructor ) argument
108354 sqlite3_create_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*) ) argument
108368 sqlite3_create_function_v2( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void *) ) argument
108405 sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ) argument
[all...]
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/sqlite/dist/orig/
H A Dsqlite3.c4148 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
4151 ** callback only; NULL pointers must be passed as the xStep and xFinal
4152 ** parameters. ^An aggregate SQL function requires an implementation of xStep
4194 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4204 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4214 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4269 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
4332 ** called once for each invocation of the xStep callback and then one
4334 ** an aggregate query, the xStep() callback of the aggregate function
4356 ** to the xStep o
10645 void (*xStep)(sqlite3_context*,int,sqlite3_value**); /* Aggregate step */ member in struct:FuncDef
123516 sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), FuncDestructor *pDestructor ) argument
123616 sqlite3_create_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*) ) argument
123630 sqlite3_create_function_v2( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void *) ) argument
123667 sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c4148 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
4151 ** callback only; NULL pointers must be passed as the xStep and xFinal
4152 ** parameters. ^An aggregate SQL function requires an implementation of xStep
4194 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4204 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4214 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4269 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
4332 ** called once for each invocation of the xStep callback and then one
4334 ** an aggregate query, the xStep() callback of the aggregate function
4356 ** to the xStep o
10645 void (*xStep)(sqlite3_context*,int,sqlite3_value**); /* Aggregate step */ member in struct:FuncDef
123536 sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), FuncDestructor *pDestructor ) argument
123636 sqlite3_create_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*) ) argument
123650 sqlite3_create_function_v2( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void *) ) argument
123687 sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ) argument
[all...]
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 798 milliseconds