Home
last modified time | relevance | path

Searched refs:numArgs (Results 1 – 7 of 7) sorted by relevance

/external/webkit/WebKitTools/CLWrapper/
DCLWrapper.cpp13 const int numArgs = 3; in wmain() local
19 wstring** args = new wstring*[numArgs]; in wmain()
40 wchar_t** newArgv = new wchar_t*[numArgs + 1]; in wmain()
41 for (int i = 0; i < numArgs; i++) in wmain()
44 newArgv[numArgs] = 0; in wmain()
/external/webkit/JavaScriptCore/runtime/
DDateConstructor.cpp75 int numArgs = args.size(); in constructDate() local
79 if (numArgs == 0) // new Date() ECMA 15.9.3.3 in constructDate()
81 else if (numArgs == 1) { in constructDate()
94 || (numArgs >= 3 && isnan(args.at(2).toNumber(exec))) in constructDate()
95 || (numArgs >= 4 && isnan(args.at(3).toNumber(exec))) in constructDate()
96 || (numArgs >= 5 && isnan(args.at(4).toNumber(exec))) in constructDate()
97 || (numArgs >= 6 && isnan(args.at(5).toNumber(exec))) in constructDate()
98 || (numArgs >= 7 && isnan(args.at(6).toNumber(exec)))) in constructDate()
105 t.monthDay = (numArgs >= 3) ? args.at(2).toInt32(exec) : 1; in constructDate()
110 double ms = (numArgs >= 7) ? args.at(6).toNumber(exec) : 0; in constructDate()
DDatePrototype.cpp273 int numArgs = args.size(); in fillStructuresUsingTimeArgs() local
276 if (numArgs > maxArgs) in fillStructuresUsingTimeArgs()
277 numArgs = maxArgs; in fillStructuresUsingTimeArgs()
280 if (maxArgs >= 4 && idx < numArgs) { in fillStructuresUsingTimeArgs()
286 if (maxArgs >= 3 && idx < numArgs && ok) { in fillStructuresUsingTimeArgs()
292 if (maxArgs >= 2 && idx < numArgs && ok) { in fillStructuresUsingTimeArgs()
301 if (idx < numArgs) { in fillStructuresUsingTimeArgs()
320 int numArgs = args.size(); in fillStructuresUsingDateArgs() local
323 if (numArgs > maxArgs) in fillStructuresUsingDateArgs()
324 numArgs = maxArgs; in fillStructuresUsingDateArgs()
[all …]
/external/webkit/WebCore/bindings/v8/
DV8NPObject.cpp87 int numArgs = args.Length(); in npObjectInvokeImpl() local
88 OwnArrayPtr<NPVariant> npArgs(new NPVariant[numArgs]); in npObjectInvokeImpl()
90 for (int i = 0; i < numArgs; i++) in npObjectInvokeImpl()
101 npObject->_class->invoke(npObject, identifier, npArgs.get(), numArgs, &result); in npObjectInvokeImpl()
106 npObject->_class->construct(npObject, npArgs.get(), numArgs, &result); in npObjectInvokeImpl()
110 npObject->_class->invokeDefault(npObject, npArgs.get(), numArgs, &result); in npObjectInvokeImpl()
116 for (int i=0; i < numArgs; i++) in npObjectInvokeImpl()
/external/opencore/engines/adapters/player/framemetadatautility/test/src/
Dtest_pv_frame_metadata_utility.cpp746 const int numArgs = 10; //change as per the number of args below in local_main() local
747 char *argv[numArgs]; in local_main()
748 char arr[numArgs][MAX_LEN]; in local_main()
/external/webkit/WebCore/css/
DCSSParser.cpp2750 int numArgs = args->size(); in parseDashboardRegions() local
2751 …if ((numArgs != DASHBOARD_REGION_NUM_PARAMETERS && numArgs != (DASHBOARD_REGION_NUM_PARAMETERS*2-1… in parseDashboardRegions()
2752 …(numArgs != DASHBOARD_REGION_SHORT_NUM_PARAMETERS && numArgs != (DASHBOARD_REGION_SHORT_NUM_PARAME… in parseDashboardRegions()
2785 …if (numArgs == DASHBOARD_REGION_SHORT_NUM_PARAMETERS || numArgs == (DASHBOARD_REGION_SHORT_NUM_PAR… in parseDashboardRegions()
2835 unsigned numArgs = args->size(); in parseCounterContent() local
2836 if (counters && numArgs != 3 && numArgs != 5) in parseCounterContent()
2838 if (!counters && numArgs != 1 && numArgs != 3) in parseCounterContent()
/external/webkit/JavaScriptCore/
DChangeLog-2008-08-1029884 (KJS::DateObjectImp::construct): Removed unnecessary checks of numArgs in cases