Searched defs:numArgs (Results 1 - 6 of 6) 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.java835 * @param numArgs the number of arguments for the function
839 public void addCustomFunction(String name, int numArgs, CustomFunction function) { argument
841 SQLiteCustomFunction wrapper = new SQLiteCustomFunction(name, numArgs, function);
/frameworks/compile/mclinker/include/mcld/LD/
H A DDiagnosticEngine.h104 State() : numArgs(0), ID(-1), severity(None), file(NULL) { }
108 numArgs = 0;
118 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.cpp60 jfieldID numArgs; member in struct:android::__anon970
251 jint numArgs = env->GetIntField(functionObj, gSQLiteCustomFunctionClassInfo.numArgs); local
256 int err = sqlite3_create_function_v2(connection->db, name, numArgs, SQLITE_UTF16,
866 GET_FIELD_ID(gSQLiteCustomFunctionClassInfo.numArgs, clazz,
867 "numArgs", "I");
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp2152 size_t numArgs = args.size(); local
2153 if (numArgs) {
2154 if ((index < numArgs) &&
2161 if ((index < numArgs) &&
2168 if ((index < numArgs) &&

Completed in 750 milliseconds