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

1 2

  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
injected-class-name.cpp 48 template<typename R, typename ...ArgTypes>
49 struct X<R(ArgTypes...)> {
50 X<R(ArgTypes...)> f();
53 template<typename R, typename ...ArgTypes>
54 X<R(ArgTypes...)> X<R(ArgTypes...)>::f() { return *this; }
60 template<typename ...ArgTypes> int g(ArgTypes...);
64 template<typename R, typename ...ArgTypes>
65 struct X1<R(ArgTypes...)>
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p21.cpp 10 template<class R, class ... ArgTypes> struct X<R(int, ArgTypes ...)> {
  /frameworks/base/opengl/tools/glgen/src/
CFunc.java 27 List<CType> argTypes = new ArrayList<CType>();
58 argTypes.add(argType);
87 return argTypes.get(index);
105 s += argTypes.get(i) + " " + argNames.get(i);
JFunc.java 29 List<JType> argTypes = new ArrayList<JType>();
82 argTypes.add(argType);
114 return argTypes.get(index);
164 s += argTypes.get(i) + " " + argNames.get(i);
  /external/clang/bindings/python/clang/
cindex.py     [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
MethodRef.java 26 public MethodRef(String declClass, String[] argTypes, String returnType,
29 mArgTypes = argTypes;
  /external/javassist/src/main/javassist/compiler/
MemberResolver.java 77 int[] argTypes, int[] argDims,
86 argTypes, argDims, argClassNames);
96 Method m = lookupMethod(clazz, methodName, argTypes, argDims,
105 int[] argTypes, int[] argDims,
120 argTypes, argDims, argClassNames);
144 Method r = lookupMethod(pclazz, methodName, argTypes,
159 argTypes, argDims, argClassNames,
169 Method r = lookupMethod(pclazz, methodName, argTypes,
187 * argTypes, argDims, and argClassNames represent actual parameters.
196 private int compareSignature(String desc, int[] argTypes,
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-variadic-templates.cpp 54 template<typename R, typename ...ArgTypes> identity<R(ArgTypes...)> f5() {}
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 202 typedef std::vector<llvm::Type*> ArgTypes;
222 const ArgTypes &theArgTypes,
    [all...]
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 83 std::vector<llvm::Type *> ArgTypes;
89 ArgTypes.push_back(cast<llvm::PointerType>(V->getType())->getElementType());
92 CGF.getLLVMContext(), ArgTypes);
103 llvm::ConstantExpr::getSizeOf(ArgTypes[I]),
  /external/apache-http/src/org/apache/commons/logging/
LogSource.java 169 Class[] argtypes = new Class[1]; local
170 argtypes[0] = "".getClass();
171 logImplctor = logclass.getConstructor(argtypes);
187 Class[] argtypes = new Class[1]; local
188 argtypes[0] = "".getClass();
189 logImplctor = logclass.getConstructor(argtypes);
  /external/llvm/utils/TableGen/
IntrinsicEmitter.cpp 209 const std::vector<Record*> &ArgTypes,
211 if (ArgTypes.empty())
214 if (ArgTypes.size() == 1)
215 return EmitTypeGenerate(OS, ArgTypes.front(), ArgNo);
220 I = ArgTypes.begin(), E = ArgTypes.end(); I != E; ++I) {
341 const RecPair &ArgTypes = I->first;
342 const std::vector<Record*> &RetTys = ArgTypes.first;
343 const std::vector<Record*> &ParamTys = ArgTypes.second;
438 const RecPair &ArgTypes = I->first
    [all...]
  /external/clang/utils/ABITest/
TypeGen.py 163 def __init__(self, index, returnType, argTypes):
166 self.argTypes = argTypes
173 if not self.argTypes:
176 at = ', '.join(map(str, self.argTypes))
184 if not self.argTypes:
187 at = ', '.join(map(str, self.argTypes))
  /external/valgrind/main/none/tests/amd64/
gen_insn_test.pl 7 our %ArgTypes = (
256 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
293 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
378 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
415 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
503 print qq| $ArgTypes{$type} $name|;
526 print qq| $ArgTypes{$type} $name;\n|;
545 print qq| $ArgTypes{$type} $name;\n|;
563 print qq| $ArgTypes{eflags} $name;\n|;
587 print qq| $ArgTypes{fpucw} $name;\n|
    [all...]
  /external/valgrind/main/none/tests/x86/
gen_insn_test.pl 7 our %ArgTypes = (
233 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
270 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
355 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
392 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
480 print qq| $ArgTypes{$type} $name|;
503 print qq| $ArgTypes{$type} $name;\n|;
522 print qq| $ArgTypes{$type} $name;\n|;
540 print qq| $ArgTypes{eflags} $name;\n|;
564 print qq| $ArgTypes{fpucw} $name;\n|
    [all...]
  /external/icu4c/i18n/
msgfmt.cpp 274 argTypes(NULL),
301 argTypes(NULL),
329 argTypes(NULL),
354 argTypes(NULL),
375 uprv_free(argTypes);
376 argTypes = NULL;
420 * Allocate argTypes[] to at least the given capacity and return
421 * TRUE if successful. If not, leave argTypes[] unchanged.
423 * If argTypes is NULL, allocate it. If it is not NULL, enlarge it
427 if (argTypes == NULL)
    [all...]
umsg.cpp 405 const Formattable::Type* argTypes =
419 switch(argTypes[i]) {
  /dalvik/vm/oo/
Object.cpp 209 const char* returnType, size_t argCount, const char** argTypes)
230 for (/*argCount*/; argCount != 0; argCount--, argTypes++) {
231 const char* argType = *argTypes;
331 static inline void copyTypes(char* buffer, const char** argTypes,
341 argTypes[i] = buffer;
382 const char* argTypes[argCount];
384 copyTypes(buffer, argTypes, argCount, descriptor);
402 argTypes) == 0) {
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
printf.h 71 N, ARGTYPES, and return value are as for parse_printf_format. */
85 /* Parse FMT, and fill in N elements of ARGTYPES with the
  /external/javassist/src/main/javassist/tools/reflect/
ClassMetaobject.java 346 * @param argTypes array of Class specifying the method signature
352 public final int getMethodIndex(String originalName, Class[] argTypes)
362 && Arrays.equals(argTypes, mthds[i].getParameterTypes()))
  /frameworks/base/tests/CoreTests/android/core/
ClassTest.java 116 Class[] argTypes = new Class[1];
117 argTypes[0] = helloClass;
118 helloClass.getMethod("method", argTypes);
  /external/javassist/src/main/javassist/
CtNewMethod.java 415 * CtClass[] argTypes = { CtClass.intType };
416 * CtMethod m = CtNewMethod.wrapped(CtClass.voidType, "add", argTypes,
442 * only on the value of <code>argTypes</code> passed to
CtNewConstructor.java 264 * CtClass[] argTypes = { CtClass.intType };
266 * CtConstructor c = CtNewConstructor.make(argTypes, null,
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateMethodAdapter2.java 231 Type[] argTypes = Type.getArgumentTypes(mDesc);
233 for (Type t : argTypes) {
  /external/libffi/doc/
libffi.info 110 unsigned int NARGS, ffi_type *RTYPE, ffi_type **ARGTYPES)
123 ARGTYPES is a vector of `ffi_type' pointers. ARGTYPES must have

Completed in 607 milliseconds

1 2