Searched defs:numArgs (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteCustomFunction.java26 public final int numArgs; field in class:SQLiteCustomFunction
33 * @param numArgs The number of arguments for the function, or -1 to
37 public SQLiteCustomFunction(String name, int numArgs, argument
44 this.numArgs = numArgs;
H A DSQLiteDatabase.java837 * @param numArgs the number of arguments for the function
841 public void addCustomFunction(String name, int numArgs, CustomFunction function) { argument
843 SQLiteCustomFunction wrapper = new SQLiteCustomFunction(name, numArgs, function);
/frameworks/compile/mclinker/include/mcld/LD/
H A DDiagnosticEngine.h100 State() : numArgs(0), ID(-1), severity(None), file(NULL) { }
104 numArgs = 0;
114 int8_t numArgs; member in struct:mcld::DiagnosticEngine::State
/frameworks/native/libs/binder/
H A DBpBinder.cpp150 const size_t numArgs = args.size(); local
151 send.writeInt32(numArgs);
152 for (size_t i = 0; i < numArgs; i++) {
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteConnection.cpp61 jfieldID numArgs; member in struct:android::__anon798
252 jint numArgs = env->GetIntField(functionObj, gSQLiteCustomFunctionClassInfo.numArgs); local
257 int err = sqlite3_create_function_v2(connection->db, name, numArgs, SQLITE_UTF16,
867 GET_FIELD_ID(gSQLiteCustomFunctionClassInfo.numArgs, clazz,
868 "numArgs", "I");
H A DAndroidRuntime.cpp304 const size_t numArgs = args.size(); local
306 strArray = env->NewObjectArray(numArgs, stringClass, NULL);
308 for (size_t i = 0; i < numArgs; i++) {
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp2421 size_t numArgs = args.size(); local
2422 if (numArgs) {
2423 if ((index < numArgs) &&
2430 if ((index < numArgs) &&
2437 if ((index < numArgs) &&
2444 if ((index < numArgs) &&

Completed in 219 milliseconds