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

1 2 3 4

  /external/webkit/WebCore/bridge/jni/
jni_objc.mm 39 - (jvalue)webPlugInCallJava:(jobject)object method:(jmethodID)method returnType:(JNIType)returnType arguments:(jvalue*)args;
42 returnType:(JNIType)returnType
49 bool JSC::Bindings::dispatchJNICall(ExecState* exec, const void* targetAppletView, jobject obj, bool isStatic, JNIType returnType, jmethodID methodID, jvalue* args, jvalue &result, const char*, JSValue& exceptionDescription)
54 if (returnType == array_type)
55 returnType = object_type;
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...]
JNIBridge.cpp 60 if (jobject returnType = callJNIMethod<jobject>(aMethod, "getReturnType", "()Ljava/lang/Class;")) {
61 returnTypeName = static_cast<jstring>(callJNIMethod<jobject>(returnType, "getName", "()Ljava/lang/String;"));
64 env->DeleteLocalRef(returnType);
160 const char* returnType = m_returnType.UTF8String();
162 appendClassName(signatureBuilder, returnType);
166 appendClassName(signatureBuilder, returnType);
JNIBridge.h 95 RuntimeType returnType() const { return m_returnType.UTF8String(); }
  /libcore/luni/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...]
  /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/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/dx/src/com/android/dx/rop/type/
Prototype.java 35 private final Type returnType;
97 Type returnType = Type.internReturnType(descriptor.substring(at));
104 result = new Prototype(descriptor, returnType, parameterTypes);
184 * @param returnType {@code non-null;} the return type
188 public static Prototype internInts(Type returnType, int count) {
200 sb.append(returnType.getDescriptor());
212 private Prototype(String descriptor, Type returnType,
218 if (returnType == null) {
219 throw new NullPointerException("returnType == null");
227 this.returnType = returnType
    [all...]
  /external/webkit/WebCore/bridge/jni/jsc/
JNIUtilityPrivate.h 43 bool dispatchJNICall(ExecState*, const void* targetAppletView, jobject obj, bool isStatic, JNIType returnType, jmethodID methodID, jvalue* args, jvalue& result, const char* callingURL, JSValue& exceptionDescription);
JNIBridgeJSC.h 54 jvalue dispatchValueFromInstance(ExecState*, const JavaInstance*, const char* name, const char* sig, JNIType 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 84 private Class<?> returnType;
101 genericReturnType = parser.returnType;
113 orig.returnType, orig.name, orig.slot);
121 private Method(Class<?> declaring, Class<?>[] paramTypes, Class<?>[] exceptTypes, Class<?> returnType, String name, int slot)
128 this.returnType = returnType;
429 return returnType;
507 return invokeNative (receiver, args, declaringClass, parameterTypes, returnType, slot, flag);
510 private native Object invokeNative(Object obj, Object[] args, Class<?> declaringClass, Class<?>[] parameterTypes, Class<?> returnType, int slot, boolean noAccessCheck)
542 result.append(returnType.getName())
    [all...]
  /development/tools/apkcheck/src/com/android/apkcheck/
MethodInfo.java 36 public MethodInfo(String name, String returnType) {
38 mReturn = returnType;
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
TransformClassAdapter.java 108 String returnType = t.getInternalName();
109 if (returnType != null) {
110 if (mDeleteReturns.contains(returnType)) {
144 return new StubMethodAdapter(mw, name, returnType(desc), invokeSignature,
167 Type returnType(String desc) {
  /external/proguard/src/proguard/classfile/util/
InternalTypeEnumeration.java 112 public String returnType()
195 System.out.println(" Return type ["+enumeration.returnType()+"]");
  /hardware/msm7k/libopencorehw/
android_surface_output_msm72xx.cpp 188 bool returnType = false;
198 returnType = true;
206 return returnType;
213 bool returnType = false;
224 returnType = true;
232 return returnType;
  /dalvik/vm/reflect/
Reflect.h 80 * Create a wrapper object for a primitive data type. If "returnType" is
83 DataObject* dvmWrapPrimitive(JValue value, ClassObject* returnType);
86 * Unwrap a boxed primitive. If "returnType" is not primitive, this just
89 bool dvmUnwrapPrimitive(Object* value, ClassObject* returnType,
  /external/jdiff/src/jdiff/
MethodAPI.java 55 public MethodAPI(String name, String returnType, boolean isAbstract,
59 returnType_ = returnType;
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
GenericSignatureParser.java 60 * OptFormalTypeParams "(" {TypeSignature} ")" ReturnType {ThrowsSignature}.
63 * ReturnType ::= TypSignature | VoidDescriptor.
72 public Type returnType;
157 this.returnType = m.getReturnType();
162 this.returnType = void.class;
397 // "(" {TypeSignature} ")" ReturnType {ThrowsSignature}.
408 returnType = parseReturnType();
431 // ReturnType ::= TypeSignature | "V".
  /dalvik/vm/oo/
Object.c 209 const char* returnType, size_t argCount, const char** argTypes)
220 if (strcmp(returnType, dexProtoGetReturnType(proto)) != 0) {
368 const char* returnType;
369 size_t argCount = countArgsAndFindReturnType(descriptor, &returnType);
371 if (returnType == NULL) {
378 * one '\0' per argument. The "- 2" is because "returnType -
381 char buffer[argCount + (returnType - descriptor) - 2];
401 if (compareMethodHelper(method, name, returnType, argCount,
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 76 * OptFormalTypeParams "(" {TypeSignature} ")" ReturnType {ThrowsSignature}.
79 * ReturnType ::= TypSignature | VoidDescriptor.
88 public ITypeReference returnType;
145 ITypeReference returnType = parsePrimitiveType();
146 if (returnType == null) {
147 returnType = parseReturnType();
149 return returnType;
543 // "(" {TypeSignature} ")" ReturnType {ThrowsSignature}.
554 returnType = parseReturnType();
571 // ReturnType ::= TypeSignature | "V"
    [all...]
  /build/tools/apicheck/src/com/android/apicheck/
MethodInfo.java 37 public MethodInfo (String name, String returnType, boolean isAbstract, boolean isNative,
42 mReturn = returnType;

Completed in 1081 milliseconds

1 2 3 4