HomeSort by relevance Sort by last modified time
    Searched full:returntype (Results 1 - 25 of 390) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/
define_empty_macros.h 7 #define METHOD0(Class, ReturnType, MethodName)
8 #define METHOD1(Class, ReturnType, MethodName, Type0)
9 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1)
10 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2)
11 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3)
12 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
pepper_interface_mock.h 20 #define METHOD0(Class, ReturnType, MethodName) \
21 MOCK_METHOD0(MethodName, ReturnType());
22 #define METHOD1(Class, ReturnType, MethodName, Type0) \
23 MOCK_METHOD1(MethodName, ReturnType(Type0));
24 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
25 MOCK_METHOD2(MethodName, ReturnType(Type0, Type1));
26 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \
27 MOCK_METHOD3(MethodName, ReturnType(Type0, Type1, Type2));
28 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \
29 MOCK_METHOD4(MethodName, ReturnType(Type0, Type1, Type2, Type3))
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
real_pepper_interface.cc 24 #define METHOD0(Class, ReturnType, MethodName) \
25 virtual ReturnType MethodName();
26 #define METHOD1(Class, ReturnType, MethodName, Type0) \
27 virtual ReturnType MethodName(Type0);
28 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
29 virtual ReturnType MethodName(Type0, Type1);
30 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \
31 virtual ReturnType MethodName(Type0, Type1, Type2);
32 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \
33 virtual ReturnType MethodName(Type0, Type1, Type2, Type3)
    [all...]
pepper_interface.h 117 #define METHOD0(Class, ReturnType, MethodName) \
118 virtual ReturnType MethodName() = 0;
119 #define METHOD1(Class, ReturnType, MethodName, Type0) \
120 virtual ReturnType MethodName(Type0) = 0;
121 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
122 virtual ReturnType MethodName(Type0, Type1) = 0;
123 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \
124 virtual ReturnType MethodName(Type0, Type1, Type2) = 0;
125 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \
126 virtual ReturnType MethodName(Type0, Type1, Type2, Type3) = 0
    [all...]
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
callback.h 64 template <typename ReturnType, typename RequestType, typename ResponseType>
65 class Callback<ReturnType(RequestType, ResponseType)> {
69 virtual ReturnType operator()(bool success,
75 template <typename ReturnType, typename RequestType, typename ResponseType>
76 class ScopedPtrCallback<ReturnType(RequestType, ResponseType)> {
80 virtual ReturnType operator()(bool success,
87 template <typename BaseType, typename ReturnType, typename RequestType,
89 class CallbackImpl : public Callback<ReturnType(RequestType, ResponseType)> {
91 typedef ReturnType (BaseType::*Method)(
104 virtual ReturnType operator()(bool success
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
FunctionRecord.java 11 final String returnType;
16 boolean isConstructor, String returnType, TypeRecord parentType,
22 this.returnType = returnType;
32 return returnType != null;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
java_iterator.h 27 template <typename ReturnType, typename ContainerBase>
38 template <typename ReturnType, typename Container,
40 class PODIterator : public Iterator<ReturnType, ContainerBase>,
41 public RefCounted< PODIterator<ReturnType, Container> > {
50 virtual ReturnType Next() = 0;
65 template <typename ReturnType, typename Container,
67 class RefIterator : public Iterator<ReturnType, ContainerBase>,
68 public RefCounted< RefIterator<ReturnType, Container> > {
77 CALLER_ATTACH virtual ReturnType* Next() = 0;
  /external/sfntly/cpp/src/sfntly/port/
java_iterator.h 27 template <typename ReturnType, typename ContainerBase>
38 template <typename ReturnType, typename Container,
40 class PODIterator : public Iterator<ReturnType, ContainerBase>,
41 public RefCounted< PODIterator<ReturnType, Container> > {
50 virtual ReturnType Next() = 0;
65 template <typename ReturnType, typename Container,
67 class RefIterator : public Iterator<ReturnType, ContainerBase>,
68 public RefCounted< RefIterator<ReturnType, Container> > {
77 CALLER_ATTACH virtual ReturnType* Next() = 0;
  /external/chromium_org/mojo/public/gles2/
gles2_interface.h 15 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \
16 virtual ReturnType Function PARAMETERS = 0;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
IntegerToStringConversion.h 38 typedef PassRefPtr<StringImpl> ReturnType;
40 static inline ReturnType flush(LChar* characters, unsigned length, void*) { return StringImpl::create(characters, length); }
43 typedef void ReturnType;
45 static inline ReturnType flush(LChar* characters, unsigned length, StringBuilder* stringBuilder) { stringBuilder->append(characters, length); }
48 typedef AtomicString ReturnType;
50 static inline ReturnType flush(LChar* characters, unsigned length, void*) { return AtomicString(characters, length); }
66 static typename ConversionTrait<T>::ReturnType numberToStringImpl(UnsignedIntegerType number, typename ConversionTrait<T>::AdditionalArgumentType* additionalArgument)
84 inline typename ConversionTrait<T>::ReturnType numberToStringSigned(SignedIntegerType number, typename ConversionTrait<T>::AdditionalArgumentType* additionalArgument = 0)
92 inline typename ConversionTrait<T>::ReturnType numberToStringUnsigned(UnsignedIntegerType number, typename ConversionTrait<T>::AdditionalArgumentType* additionalArgument = 0)
  /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...]
  /external/chromium_org/third_party/ocmock/OCMock/
NSMethodSignature+OCMAdditions.m 13 const char *returnType = [self methodReturnType];
14 while(strchr("rnNoORV", returnType[0]) != NULL)
15 returnType += 1;
16 return returnType;
  /external/mockito/src/org/mockito/internal/invocation/
SerializableMethod.java 20 private Class<?> returnType;
28 returnType = method.getReturnType();
38 return returnType;
95 if (returnType == null) {
96 if (other.returnType != null)
98 } else if (!returnType.equals(other.returnType))
  /external/dexmaker/src/main/java/com/google/dexmaker/
MethodId.java 33 final TypeId<R> returnType;
41 MethodId(TypeId<D> declaringType, TypeId<R> returnType, String name, TypeList parameters) {
42 if (declaringType == null || returnType == null || name == null || parameters == null) {
46 this.returnType = returnType;
58 return returnType;
92 result.append(returnType.name);
105 && ((MethodId<?, ?>) o).returnType.equals(returnType);
113 result = 31 * result + returnType.hashCode()
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingTestCase.java 107 private static Object getDefaultValue(Class<?> returnType) {
108 if (returnType == boolean.class || returnType == Boolean.class) {
110 } else if (returnType == int.class || returnType == Integer.class) {
112 } else if ((returnType == Set.class) || (returnType == Collection.class)) {
114 } else if (returnType == Iterator.class){
116 } else if (returnType.isArray()) {
117 return Array.newInstance(returnType.getComponentType(), 0)
    [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;
  /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...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderProtoReference.java 46 @Nonnull final BuilderTypeReference returnType;
50 @Nonnull BuilderTypeReference returnType) {
53 this.returnType = returnType;
61 return returnType.getType();
74 return returnType.equals(other.returnType) &&
82 int res = returnType.compareTo(o.returnType);
BuilderProtoPool.java 58 @Nonnull String returnType) {
59 ProtoKey key = new Key(parameters, returnType);
66 context.stringPool.internString(MethodUtil.getShorty(parameters, returnType)),
68 context.typePool.internType(returnType));
82 return key.returnType;
116 @Nonnull private final String returnType;
118 public Key(@Nonnull List<? extends CharSequence> parameters, @Nonnull String returnType) {
120 this.returnType = returnType;
128 return returnType;
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
ImmutableMethodReference.java 47 @Nonnull protected final String returnType;
52 @Nonnull String returnType) {
56 this.returnType = returnType;
62 @Nonnull String returnType) {
66 this.returnType = returnType;
84 @Nonnull @Override public String getReturnType() { return returnType; }
  /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);
  /external/mockito/src/org/mockito/internal/handler/
NullResultGuardian.java 30 Class<?> returnType = invocation.getMethod().getReturnType();
31 if(result == null && returnType.isPrimitive()) {
33 return new HandyReturnValues().returnFor(returnType);
  /external/eigen/Eigen/src/Core/
ReturnByValue.h 25 : public traits<typename traits<Derived>::ReturnType>
31 Flags = (traits<typename traits<Derived>::ReturnType>::Flags
45 typedef typename traits<Derived>::ReturnType type;
54 typedef typename internal::traits<Derived>::ReturnType ReturnType;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/
GLAPISpecTest.java 31 String returnType = "void";
38 GLAPISpec spec = GLAPISpec.parseLine(createSpec(returnType, funcName, args));
41 assertEquals(returnType, spec.getReturnValue().getCType());
58 private String createSpec(String returnType, String funcName, List<String> args) {
60 sb.append(String.format("%s, %s", returnType, funcName));

Completed in 497 milliseconds

1 2 3 4 5 6 7 8 91011>>