HomeSort by relevance Sort by last modified time
    Searched refs:argList (Results 1 - 17 of 17) sorted by null

  /dalvik/libcore/xml/src/main/java/org/apache/xpath/jaxp/
JAXPExtensionsProvider.java 131 ArrayList argList = new ArrayList( arity);
137 argList.add ( i, ((XNodeSet)argument).nodelist() );
140 argList.add ( i, passedArgument );
142 argList.add ( i, argument );
146 return ( xpathFunction.evaluate ( argList ));
182 ArrayList argList = new ArrayList( arity);
188 argList.add ( i, ((XNodeSet)argument).nodelist() );
191 argList.add ( i, passedArgument );
193 argList.add ( i, argument );
197 return ( xpathFunction.evaluate ( argList ));
    [all...]
  /external/webkit/JavaScriptCore/API/
JSObjectRef.cpp 144 MarkedArgumentBuffer argList;
146 argList.append(toJS(exec, arguments[i]));
148 result = constructArray(exec, argList);
167 MarkedArgumentBuffer argList;
169 argList.append(toJS(exec, arguments[i]));
171 JSObject* result = constructDate(exec, argList);
187 MarkedArgumentBuffer argList;
189 argList.append(toJS(exec, arguments[i]));
191 JSObject* result = constructError(exec, argList);
207 MarkedArgumentBuffer argList;
    [all...]
  /dalvik/vm/native/
java_lang_reflect_Constructor.c 53 ArrayObject* argList = (ArrayObject*) args[1];
84 (void) dvmInvokeMethod(newObj, meth, argList, params, NULL, noAccessCheck);
java_lang_reflect_Method.c 53 ArrayObject* argList = (ArrayObject*) args[2];
101 result = dvmInvokeMethod(methObj, meth, argList, params, returnType,
  /external/webkit/WebCore/bridge/
NP_jsobject.cpp 124 MarkedArgumentBuffer argList;
125 getListFromVariantArgs(exec, args, argCount, rootObject, argList);
128 JSValue resultV = JSC::call(exec, function, callType, callData, function, argList);
174 MarkedArgumentBuffer argList;
175 getListFromVariantArgs(exec, args, argCount, rootObject, argList);
178 JSValue resultV = JSC::call(exec, function, callType, callData, obj->imp, argList);
448 MarkedArgumentBuffer argList;
449 getListFromVariantArgs(exec, args, argCount, rootObject, argList);
452 JSValue resultV = JSC::construct(exec, constructor, constructType, constructData, argList);
  /external/bzip2/
bzip2.c     [all...]
  /external/v8/test/mjsunit/
fuzz-natives.js 92 var argList = [ ];
98 argList.push(argPool[index]);
101 func.apply(void 0, argList);
  /dalvik/vm/interp/
Stack.h 225 ArrayObject* argList, ArrayObject* params, ClassObject* returnType,
Stack.c 660 ArrayObject* argList, ArrayObject* params, ClassObject* returnType,
671 if (argList != NULL)
672 argListLength = argList->length;
708 args = (DataObject**) argList->contents;
    [all...]
  /dalvik/tests/046-reflect/src/
Main.java 82 Object[] argList = new Object[] {
88 + ((Float)argList[1]).floatValue());
91 boxval = (Integer) meth.invoke(instance, argList);
  /external/webkit/WebCore/xml/
XPathGrammar.y 68 Vector<Expression*>* argList;
105 %type <argList> ArgumentList
  /external/webkit/WebCore/bindings/objc/
WebScriptObject.mm 295 MarkedArgumentBuffer argList;
296 getListFromNSArray(exec, args, [self _rootObject], argList);
302 JSValue result = JSC::call(exec, function, callType, callData, [self _imp], argList);
  /external/webkit/WebCore/bridge/jni/
jni_jsobject.mm 304 MarkedArgumentBuffer argList;
305 getListFromJArray(exec, args, argList);
307 JSValue result = JSC::call(exec, function, callType, callData, _imp, argList);
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm 797 MarkedArgumentBuffer argList;
798 demarshalValues(exec, argumentsData, argumentsLength, argList);
802 JSValue value = call(exec, function, callType, callData, object, argList);
830 MarkedArgumentBuffer argList;
831 demarshalValues(exec, argumentsData, argumentsLength, argList);
835 JSValue value = call(exec, object, callType, callData, object, argList);
864 MarkedArgumentBuffer argList;
865 demarshalValues(exec, argumentsData, argumentsLength, argList);
869 JSValue value = JSC::construct(exec, object, constructType, constructData, argList);
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSONObject.cpp 42 static JSValue JSC_HOST_CALL JSONProtoFuncParse(ExecState*, JSObject*, JSValue, const ArgList&);
43 static JSValue JSC_HOST_CALL JSONProtoFuncStringify(ExecState*, JSObject*, JSValue, const ArgList&);
352 ArgList args(list, sizeof(list) / sizeof(JSValue));
366 ArgList args(list, sizeof(list) / sizeof(JSValue));
637 ArgList argList(args, 2);
638 return call(m_exec, m_function, m_callType, m_callData, thisObj, argList);
835 JSValue JSC_HOST_CALL JSONProtoFuncParse(ExecState* exec, JSObject*, JSValue, const ArgList& args)
861 JSValue JSC_HOST_CALL JSONProtoFuncStringify(ExecState* exec, JSObject*, JSValue, const ArgList& args)
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /cts/tools/signature-tools/lib/
stringtemplate.jar 

Completed in 336 milliseconds