HomeSort by relevance Sort by last modified time
    Searched refs:returnType (Results 76 - 100 of 291) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.5.0/
javawriter-2.5.0.jar 
  /external/doclava/src/com/google/doclava/
Stubs.java 97 ClassInfo returnClass = m.returnType().asClassInfo();
121 ClassInfo returnClass = m.returnType().asClassInfo();
309 if (mInfo.returnType() != null && mInfo.returnType().asClassInfo() != null) {
310 cantStripThis(mInfo.returnType().asClassInfo(), notStrippable, "12:"
312 if (mInfo.returnType().typeArguments() != null) {
313 for (TypeInfo tyInfo : mInfo.returnType().typeArguments()) {
577 stream.print(method.returnType().fullName(method.typeVariables()) + " ");
802 stream.print(ann.returnType().fullName());
    [all...]
  /external/chromium_org/content/shell/tools/plugin/
PluginTest.h 42 #define DEFINE_HAS_MEMBER_CHECK(member, returnType, argumentTypes) \
43 template <typename T, returnType(T::*member) argumentTypes> \
  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeId.java 128 public <R> MethodId<T, R> getMethod(TypeId<R> returnType, String name, TypeId<?>... parameters) {
129 return new MethodId<T, R>(this, returnType, name, new TypeList(parameters));
  /external/javassist/src/main/javassist/bytecode/
Bytecode.java 906 * @param returnType the return type.
910 CtClass returnType, CtClass[] paramTypes) {
911 String desc = Descriptor.ofMethod(returnType, paramTypes);
965 * @param returnType the return type.
969 CtClass returnType, CtClass[] paramTypes) {
970 String desc = Descriptor.ofMethod(returnType, paramTypes);
1025 * @param returnType the return type.
1029 CtClass returnType, CtClass[] paramTypes) {
1030 String desc = Descriptor.ofMethod(returnType, paramTypes);
1093 * @param returnType the return type
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 547 CtClass returnType = Descriptor.getReturnType(method.getDescriptor(), classPool);
548 verifyAssignable(Type.get(returnType), simplePop(frame));
727 Type returnType = returnTypeFromDesc(desc);
728 if (returnType != Type.VOID)
729 simplePush(zeroExtend(returnType), frame);
745 Type returnType = returnTypeFromDesc(desc);
746 if (returnType != Type.VOID)
747 simplePush(zeroExtend(returnType), frame);
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 114 CtClass returnType = methods[i].getReturnType();
116 createMemberValue(cp, returnType));
  /external/proguard/src/proguard/optimize/
MethodDescriptorShrinker.java 238 newDescriptorBuffer.append(internalTypeEnumeration.returnType());
300 type = internalTypeEnumeration.returnType();
  /frameworks/base/tools/aidl/
AST.cpp 700 returnType(NULL), // (NULL means constructor)
715 if (this->returnType) {
716 types->insert(this->returnType);
741 if (this->returnType != NULL) {
746 fprintf(to, "%s%s ", this->returnType->QualifiedName().c_str(),
aidl.cpp 417 Type* returnType = NAMES.Search(m->type.type.data);
418 if (returnType == NULL) {
425 if (returnType == EVENT_FAKE_TYPE) {
432 if (!(kind == INTERFACE_TYPE_BINDER ? returnType->CanWriteToParcel()
433 : returnType->CanWriteToRpcData())) {
440 if (m->type.dimension > 0 && !returnType->CanBeArray()) {
485 if (returnType == EVENT_FAKE_TYPE
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg 449 function <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): I<returnType()>;<\n>
452 function <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): <returnType()>;<\n>
461 function T<grammar.recognizerName>.<ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): I<returnType()>;<\n>
464 function T<grammar.recognizerName>.<ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): <returnType()>;<\n>
597 function <rule.ruleName>: I<returnType()>;<\n>
600 function <rule.ruleName>: <returnType()>;<\n>
612 function <rule.ruleName>: I<returnType()>;<\n>
615 function <rule.ruleName>: <returnType()>;<\n>
627 I<returnType()> = interface(I<if(TREE_PARSER)>Tree<else>Parser<endif>RuleReturnScope)
643 function T<grammar.recognizerName>.<ruleName>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): I<returnType()>;
    [all...]
  /frameworks/native/opengl/tools/glgen/src/
JniCodeEmitter.java 295 CType returnType = cfunc.getType();
296 boolean isVoid = returnType.isVoid();
301 if (returnType.getBaseType().startsWith("EGL")) {
302 return "(" + returnType.getDeclaration() + ") 0";
515 * if nativeDecl: public native <returntype> func(args);
518 * if interfaceDecl: public <returntype> func(args);
519 * if !interfaceDecl: public <returntype> func(args) { body }
881 CType returnType = cfunc.getType()
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.h 222 const CGFunctionInfo &arrangeLLVMFunctionInfo(CanQualType returnType,
  /external/doclava/src/com/google/doclava/apicheck/
XmlApiFile.java 144 TypeInfo returnType = Converter.obtainTypeFromString(attributes.getValue("return"));
154 flatSignature, overriddenMethod, returnType, parameters, thrownExceptions, position,
  /external/jdiff/src/jdiff/
APIHandler.java 111 String returnType = attributes.getValue("return");
121 XMLToAPI.addMethod(methodName, returnType, isAbstract, isNative,
XMLToAPI.java 291 * @param returnType The return type of the method, null if it is void.
294 public static void addMethod(String name, String returnType,
297 String rt = returnType;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Type.java 489 * @param returnType the return type of the method.
495 final Type returnType,
504 returnType.getDescriptor(buf);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
DexBuilder.java 95 @Nonnull String returnType,
102 return new BuilderMethod(context.methodPool.internMethod(definingClass, name, parameters, returnType),
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateMethodAdapter.java 254 Type returnType = Type.getReturnType(mDesc);
255 mDelWriter.visitInsn(returnType.getOpcode(Opcodes.IRETURN));
StubMethodAdapter.java 51 public StubMethodAdapter(MethodVisitor mv, String methodName, Type returnType,
55 mReturnType = returnType;
  /cts/tests/signature/src/android/signature/cts/
JDiffClassDescription.java 293 public JDiffMethod(String name, int modifier, String returnType) {
296 if (returnType == null) {
299 mReturnType = scrubJdiffParamType(returnType);
370 String returnType = getReturnType();
371 if (!"".equals(returnType)) {
372 sb.append(returnType).append(" ");
    [all...]
  /external/clang/utils/ABITest/
ABITestGen.py 108 if FT.returnType is None:
112 retvalTypeName = self.getTypeName(FT.returnType)
114 retvalName = self.getTestReturnValue(FT.returnType)
149 retvalTests = self.getTestValuesArray(FT.returnType)
160 self.printValueOfType(' %s_RV'%fnName, 'RV', FT.returnType, output=self.outputTests, indent=4)
161 self.checkTypeValues('RV', '%s[i]' % retvalTests[0], FT.returnType, output=self.outputTests, indent=4)
  /external/smali/smali/src/main/antlr3/
smaliTreeWalker.g 461 $method_name_and_prototype.returnType,
467 method_prototype returns[List<String> parameters, String returnType]
470 $returnType = $type_descriptor.type;
474 method_name_and_prototype returns[String name, List<SmaliMethodParameter> parameters, String returnType]
488 $returnType = $method_prototype.returnType;
508 $method_prototype.parameters, $method_prototype.returnType);
    [all...]
  /external/javassist/src/main/javassist/bytecode/stackmap/
Tracer.java 33 protected String returnType;
43 returnType = retType;
52 returnType = t.returnType;
604 TypeData.setType(stackTypes[--stackTop], returnType, classPool);
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationAccess.java 360 Class<?> returnType = method.getReturnType();
361 return decodeValue(annotationClass, returnType, dex, reader);
662 Class<?> returnType = method.getReturnType();
663 Object value = decodeValue(context, returnType, dex, reader);
664 members[i] = new AnnotationMember(nameString, value, returnType, method);

Completed in 695 milliseconds

1 2 34 5 6 7 8 91011>>