HomeSort by relevance Sort by last modified time
    Searched refs:returnType (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/webkit/Source/WebCore/bridge/jni/
jni_objc.mm 39 - (jvalue)webPlugInCallJava:(jobject)object method:(jmethodID)method returnType:(JavaType)returnType arguments:(jvalue*)args;
42 returnType:(JavaType)returnType
49 bool JSC::Bindings::dispatchJNICall(ExecState* exec, const void* targetAppletView, jobject obj, bool isStatic, JavaType returnType, jmethodID methodID, jvalue* args, jvalue &result, const char*, JSValue& exceptionDescription)
54 if (returnType == JavaTypeArray)
55 returnType = JavaTypeObject;
57 if ([view respondsToSelector:@selector(webPlugInCallJava:isStatic:returnType:method:arguments:callingURL:exceptionDescription:)]) {
66 result = [view webPlugInCallJava:obj isStatic:isStatic returnType:returnType method:methodID arguments:args callingURL:nil exceptionDescription:&_exceptionDescription]
    [all...]
JavaMethod.h 51 virtual JavaType returnType() const = 0;
JavaMethodJobject.cpp 47 if (jobject returnType = callJNIMethod<jobject>(aMethod, "getReturnType", "()Ljava/lang/Class;")) {
48 returnTypeName = static_cast<jstring>(callJNIMethod<jobject>(returnType, "getName", "()Ljava/lang/String;"));
51 env->DeleteLocalRef(returnType);
145 const char* returnType = m_returnTypeClassName.utf8();
147 appendClassName(signatureBuilder, returnType);
155 appendClassName(signatureBuilder, returnType);
JavaMethodJobject.h 51 virtual JavaType returnType() const { return m_returnType; }
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathExpressionImpl.java 97 public Object eval(Object item, QName returnType)
100 return getResultAsType( resultObject, returnType );
142 * <p>If <code>returnType</code> is not one of the types defined
149 * If <code>returnType</code> is <code>null</code>, then a
153 * @param returnType The desired return type.
157 * <code>returnType</code>.
160 * @throws IllegalArgumentException If <code>returnType</code> is not one
162 * @throws NullPointerException If <code>returnType</code> is
165 public Object evaluate(Object item, QName returnType)
168 if ( returnType == null )
    [all...]
XPathImpl.java 232 * <p>If <code>returnType</code> is not one of the types defined in {@link XPathConstants} (
243 * If <code>expression</code> or <code>returnType</code> is <code>null</code>, then a
248 * @param returnType The desired return type.
250 * @return Result of evaluating an XPath expression as an <code>Object</code> of <code>returnType</code>.
253 * @throws IllegalArgumentException If <code>returnType</code> is not one of the types defined in {@link XPathConstants}.
254 * @throws NullPointerException If <code>expression</code> or <code>returnType</code> is <code>null</code>.
256 public Object evaluate(String expression, Object item, QName returnType)
264 if ( returnType == null ) {
267 new Object[] {"returnType"} );
270 // Checking if requested returnType is supported. returnType need t
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
MethodRef.java 26 public MethodRef(String declClass, String[] argTypes, String returnType,
30 mReturnType = returnType;
74 String returnType) {
83 builder.append(returnType);
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathExpression.java 90 * <p>If <code>returnType</code> is not one of the types defined in {@link XPathConstants},
96 * If <code>returnType</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
99 * @param returnType The desired return type.
102 * <code>returnType</code>.
105 * @throws IllegalArgumentException If <code>returnType</code> is not one of the types defined in {@link XPathConstants}.
106 * @throws NullPointerException If <code>returnType</code> is <code>null</code>.
108 public Object evaluate(Object item, QName returnType)
114 * <p>This method calls {@link #evaluate(Object item, QName returnType)} with a <code>returnType</code> of
139 * {@link #evaluate(Object item, QName returnType)} on the resulting document object.</p
    [all...]
XPath.java 189 * <p>If <code>returnType</code> is not one of the types defined in {@link XPathConstants} (
200 * If <code>expression</code> or <code>returnType</code> is <code>null</code>, then a
205 * @param returnType The desired return type.
207 * @return Result of evaluating an XPath expression as an <code>Object</code> of <code>returnType</code>.
210 * @throws IllegalArgumentException If <code>returnType</code> is not one of the types defined in {@link XPathConstants}.
211 * @throws NullPointerException If <code>expression</code> or <code>returnType</code> is <code>null</code>.
213 public Object evaluate(String expression, Object item, QName returnType)
219 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a <code>returnType</code> of
247 * {@link #evaluate(String expression, Object item, QName returnType)} on the resulting document object.</p
    [all...]
  /dalvik/dx/src/com/android/dx/gen/
MethodId.java 30 final Type<R> returnType;
38 MethodId(Type<D> declaringType, Type<R> returnType, String name, TypeList parameters) {
39 if (declaringType == null || returnType == null || name == null || parameters == null) {
43 this.returnType = returnType;
55 return returnType;
79 result.append(returnType.name);
92 && ((MethodId<?, ?>) o).returnType.equals(returnType);
100 result = 31 * result + returnType.hashCode()
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerCodeRef.h 68 template<typename returnType>
69 FunctionPtr(returnType(*value)())
75 template<typename returnType, typename argType1>
76 FunctionPtr(returnType(*value)(argType1))
82 template<typename returnType, typename argType1, typename argType2>
83 FunctionPtr(returnType(*value)(argType1, argType2))
89 template<typename returnType, typename argType1, typename argType2, typename argType3>
90 FunctionPtr(returnType(*value)(argType1, argType2, argType3))
96 template<typename returnType, typename argType1, typename argType2, typename argType3, typename argType4>
97 FunctionPtr(returnType(*value)(argType1, argType2, argType3, argType4)
    [all...]
  /cts/tools/signature-tools/src/signature/model/impl/
SigMethod.java 30 private ITypeReference returnType = Uninitialized.unset();
38 return returnType;
41 public void setReturnType(ITypeReference returnType) {
42 this.returnType = returnType;
  /external/webkit/Source/WebKit/mac/Plugins/
WebJavaPlugIn.h 61 @method webPlugInCallJava:isStatic:returnType:method:arguments:callingURL:exceptionDescription:
64 @param returnType The return type of the Java method.
73 the call. webPlugInCallJava:isStatic:returnType:method:arguments:callingURL:exceptionDescription: must
79 returnType:(WebJNIReturnType)returnType
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 35 private final Type returnType;
96 Type returnType = Type.internReturnType(descriptor.substring(at));
103 result = new Prototype(descriptor, returnType, parameterTypes);
183 * @param returnType {@code non-null;} the return type
187 public static Prototype internInts(Type returnType, int count) {
199 sb.append(returnType.getDescriptor());
211 private Prototype(String descriptor, Type returnType,
217 if (returnType == null) {
218 throw new NullPointerException("returnType == null");
226 this.returnType = returnType
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 35 private final Type returnType;
100 Type returnType = Type.internReturnType(descriptor.substring(at));
107 result = new Prototype(descriptor, returnType, parameterTypes);
187 * @param returnType {@code non-null;} the return type
191 public static Prototype internInts(Type returnType, int count) {
203 sb.append(returnType.getDescriptor());
215 private Prototype(String descriptor, Type returnType,
221 if (returnType == null) {
222 throw new NullPointerException("returnType == null");
230 this.returnType = returnType
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiMethod.java 34 ApiMethod(String name, List<String> parameterTypes, String returnType) {
37 this.mReturnType = returnType;
  /frameworks/base/opengl/libs/GLES2_dbg/
generate_api_cpp.py 46 returnType = line[0: line.find(" API_ENTRY(")]
51 # extern = "%s Debug_%s(%s);" % (returnType, functionName, parameterList)
64 extern = "%s Debug_%s(%s);" % (returnType, functionName, RemoveAnnotation(parameterList))
69 print "%s Debug_%s(%s)\n{" % (returnType, functionName, RemoveAnnotation(parameterList))
136 if returnType == "void":
151 if returnType == "void":
171 if returnType != "void":
172 if returnType == "GLboolean":
175 print " return reinterpret_cast<%s>(ret);" % (returnType)
generate_debug_in.py 27 returnType = line[0: line.find(" API_ENTRY(")]
39 externs.append("%s Tracing_%s(%s);" % (returnType, functionName, parameterList))
40 print "%s Tracing_%s(%s)\n{" % (returnType, functionName, parameterList)
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JNIUtilityPrivate.h 45 bool dispatchJNICall(ExecState*, const void* targetAppletView, jobject, bool isStatic, JavaType returnType, jmethodID, jvalue* args, jvalue& result, const char* callingURL, JSValue& exceptionDescription);
JavaFieldJSC.h 55 jvalue dispatchValueFromInstance(ExecState*, const JavaInstance*, const char* name, const char* sig, JavaType returnType) const;
  /external/easymock/src/org/easymock/internal/
RecordState.java 226 private Object createNumberObject(Object value, Class<?> returnType) {
231 if (returnType.equals(Byte.TYPE)) {
233 } else if (returnType.equals(Short.TYPE)) {
235 } else if (returnType.equals(Character.TYPE)) {
237 } else if (returnType.equals(Integer.TYPE)) {
239 } else if (returnType.equals(Long.TYPE)) {
241 } else if (returnType.equals(Float.TYPE)) {
243 } else if (returnType.equals(Double.TYPE)) {
251 Class<?> returnType = lastInvocation.getMethod().getReturnType();
252 return createNumberObject(o, returnType);
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
Method.java 90 private Class<?> returnType;
107 genericReturnType = parser.returnType;
119 orig.returnType, orig.name, orig.slot);
127 private Method(Class<?> declaring, Class<?>[] paramTypes, Class<?>[] exceptTypes, Class<?> returnType, String name, int slot)
134 this.returnType = returnType;
449 return returnType;
511 return invokeNative(receiver, args, declaringClass, parameterTypes, returnType, slot, flag);
515 Class<?>[] parameterTypes, Class<?> returnType, int slot, boolean noAccessCheck)
546 result.append(returnType.getName())
    [all...]
  /development/tools/apkcheck/src/com/android/apkcheck/
MethodInfo.java 36 public MethodInfo(String name, String returnType) {
38 mReturn = returnType;
  /external/javassist/src/main/javassist/
CtNewMethod.java 88 * @param returnType the type of the returned value.
99 public static CtMethod make(CtClass returnType,
105 return make(Modifier.PUBLIC, returnType, mname, parameters, exceptions,
114 * @param returnType the type of the returned value.
126 public static CtMethod make(int modifiers, CtClass returnType,
134 = new CtMethod(returnType, mname, parameters, declaring);
192 * @param returnType the type of the returned value
200 public static CtMethod abstractMethod(CtClass returnType,
207 CtMethod cm = new CtMethod(returnType, mname, parameters, declaring);
388 * type to the type specified by <code>returnType</code>. Thus
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
TransformClassAdapter.java 112 String returnType = t.getInternalName();
113 if (returnType != null) {
114 if (mDeleteReturns.contains(returnType)) {
150 return new StubMethodAdapter(mw, name, returnType(desc), invokeSignature,
174 Type returnType(String desc) {

Completed in 1404 milliseconds

1 2 3 4 5 6