Searched defs:argTypes (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/skia/ext/
H A Devent_tracer_impl.cc22 const uint8_t* argTypes,
49 const uint8_t* argTypes,
54 argTypes, (const long long unsigned int*) argValues, NULL, flags);
43 addTraceEvent(char phase, const uint8_t* categoryEnabledFlag, const char* name, uint64_t id, int32_t numArgs, const char** argNames, const uint8_t* argTypes, const uint64_t* argValues, uint8_t flags) argument
/external/chromium_org/third_party/angle/src/common/
H A Devent_tracer.cpp40 int numArgs, const char** argNames, const unsigned char* argTypes,
45 g_addTraceEvent(phase, categoryGroupEnabled, name, id, numArgs, argNames, argTypes, argValues, flags);
39 TraceAddTraceEvent(char phase, const unsigned char* categoryGroupEnabled, const char* name, unsigned long long id, int numArgs, const char** argNames, const unsigned char* argTypes, const unsigned long long* argValues, unsigned char flags) argument
/external/clang/lib/CodeGen/
H A DCodeGenABITypes.cpp64 ArrayRef<CanQualType> argTypes,
68 returnType, /*IsInstanceMethod=*/false, argTypes, info, args);
63 arrangeFreeFunctionCall(CanQualType returnType, ArrayRef<CanQualType> argTypes, FunctionType::ExtInfo info, RequiredArgs args) argument
H A DCGCall.cpp125 SmallVector<CanQualType, 16> argTypes; local
126 return ::arrangeFreeFunctionType(*this, argTypes, FTP);
187 SmallVector<CanQualType, 16> argTypes; local
191 argTypes.push_back(GetThisType(Context, RD));
193 argTypes.push_back(Context.VoidPtrTy);
195 return ::arrangeCXXMethodType(*this, argTypes,
224 SmallVector<CanQualType, 16> argTypes; local
225 argTypes.push_back(GetThisType(Context, D->getParent()));
229 TheCXXABI.HasThisReturn(GD) ? argTypes.front() : Context.VoidTy;
235 argTypes
274 SmallVector<CanQualType, 2> argTypes; local
428 SmallVector<CanQualType, 16> argTypes; local
442 SmallVector<CanQualType, 16> argTypes; local
456 SmallVector<CanQualType, 16> argTypes; local
476 arrangeLLVMFunctionInfo(CanQualType resultType, bool IsInstanceMethod, ArrayRef<CanQualType> argTypes, FunctionType::ExtInfo info, RequiredArgs required) argument
527 create(unsigned llvmCC, bool IsInstanceMethod, const FunctionType::ExtInfo &info, CanQualType resultType, ArrayRef<CanQualType> argTypes, RequiredArgs required) argument
944 SmallVector<llvm::Type*, 8> argTypes; local
[all...]
H A DCGExprScalar.cpp2263 llvm::Type *argTypes[] = { CGF.Int64Ty, CGF.Int64Ty, Int8Ty, Int8Ty }; local
2265 llvm::FunctionType::get(CGF.Int64Ty, argTypes, true);
H A DCGObjC.cpp1859 llvm::Type *argTypes[] = { CGF.Int8PtrPtrTy, CGF.Int8PtrTy }; local
1862 = llvm::FunctionType::get(CGF.Int8PtrTy, argTypes, false);
1889 llvm::Type *argTypes[] = { CGF.Int8PtrPtrTy, CGF.Int8PtrPtrTy }; local
1892 = llvm::FunctionType::get(CGF.Builder.getVoidTy(), argTypes, false);
2060 llvm::Type *argTypes[] = { Int8PtrPtrTy, Int8PtrTy }; local
2062 = llvm::FunctionType::get(Builder.getVoidTy(), argTypes, false);
/external/mockito/src/org/mockito/internal/configuration/injection/
H A DConstructorInjection.java76 public Object[] resolveTypeInstances(Class<?>... argTypes) { argument
77 List<Object> argumentInstances = new ArrayList<Object>(argTypes.length);
78 for (Class<?> argType : argTypes) {
/external/chromium_org/third_party/WebKit/Source/platform/
H A DEventTracer.cpp78 const unsigned char argTypes[], const unsigned long long argValues[],
91 return blink::Platform::current()->addTraceEvent(phase, categoryEnabledFlag, name, id, numArgs, argNames, argTypes, argValues, webConvertableValues, flags);
96 const unsigned char* argTypes, const unsigned long long* argValues,
99 return blink::Platform::current()->addTraceEvent(phase, categoryEnabledFlag, name, id, numArgs, argNames, argTypes, argValues, 0, flags);
76 addTraceEvent(char phase, const unsigned char* categoryEnabledFlag, const char* name, unsigned long long id, int numArgs, const char* argNames[], const unsigned char argTypes[], const unsigned long long argValues[], TraceEvent::ConvertableToTraceFormat* convertableValues[], unsigned char flags) argument
94 addTraceEvent(char phase, const unsigned char* categoryEnabledFlag, const char* name, unsigned long long id, int numArgs, const char** argNames, const unsigned char* argTypes, const unsigned long long* argValues, unsigned char flags) argument
H A DTraceEvent.h970 unsigned char argTypes[1]; local
972 setTraceValue(arg1Val, &argTypes[0], &argValues[0]);
978 numArgs, &arg1Name, argTypes, argValues,
984 numArgs, &arg1Name, argTypes, argValues,
1002 unsigned char argTypes[2]; local
1004 setTraceValue(arg1Val, &argTypes[0], &argValues[0]);
1005 setTraceValue(arg2Val, &argTypes[1], &argValues[1]);
1012 numArgs, argNames, argTypes, argValues,
1018 numArgs, argNames, argTypes, argValues,
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dmsgfmt.h896 Formattable::Type* argTypes; member in class:MessageFormat
901 * TRUE if there are different argTypes for the same argument.
903 * where the pattern argTypes determine how the va_arg list is read.
1053 return argTypes;
/external/icu/icu4c/source/i18n/unicode/
H A Dmsgfmt.h896 Formattable::Type* argTypes; member in class:MessageFormat
901 * TRUE if there are different argTypes for the same argument.
903 * where the pattern argTypes determine how the va_arg list is read.
1053 return argTypes;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DTraceEventDispatcher.cpp43 int numArgs, const char* const* argNames, const unsigned char* argTypes, const unsigned long long* argValues,
52 self->enqueueEvent(timestamp, phase, name, id, currentThread(), numArgs, argNames, argTypes, argValues);
42 dispatchEventOnAnyThread(char phase, const unsigned char*, const char* name, unsigned long long id, int numArgs, const char* const* argNames, const unsigned char* argTypes, const unsigned long long* argValues, unsigned char flags, double timestamp) argument
/external/javassist/src/main/javassist/tools/reflect/
H A DClassMetaobject.java346 * @param argTypes array of Class specifying the method signature
352 public final int getMethodIndex(String originalName, Class[] argTypes) argument
362 && Arrays.equals(argTypes, mthds[i].getParameterTypes()))
/external/mockito/src/org/mockito/internal/util/reflection/
H A DFieldInitializer.java141 * @param argTypes Constructor argument types, should not be null.
144 Object[] resolveTypeInstances(Class<?>... argTypes); argument
/external/javassist/src/main/javassist/compiler/
H A DMemberResolver.java77 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, argument
75 lookupMethod(CtClass clazz, CtClass currentClass, MethodInfo current, String methodName, int[] argTypes, int[] argDims, String[] argClassNames) argument
104 lookupMethod(CtClass clazz, String methodName, int[] argTypes, int[] argDims, String[] argClassNames, boolean onlyExact) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dumsg.cpp406 const Formattable::Type* argTypes = local
420 switch(argTypes[i]) {
/external/icu/icu4c/source/i18n/
H A Dumsg.cpp406 const Formattable::Type* argTypes = local
420 switch(argTypes[i]) {
/external/chromium_org/third_party/angle/src/third_party/trace_event/
H A Dtrace_event.h713 unsigned char argTypes[1]; local
715 setTraceValue(arg1Val, &argTypes[0], &argValues[0]);
718 numArgs, &arg1Name, argTypes, argValues,
734 unsigned char argTypes[2]; local
736 setTraceValue(arg1Val, &argTypes[0], &argValues[0]);
737 setTraceValue(arg2Val, &argTypes[1], &argValues[1]);
740 numArgs, argNames, argTypes, argValues,
/external/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h373 ArrayRef<CanQualType> argTypes,
463 ArrayRef<CanQualType> argTypes) {
473 i = argTypes.begin(), e = argTypes.end(); i != e; ++i) {
458 Profile(llvm::FoldingSetNodeID &ID, bool InstanceMethod, const FunctionType::ExtInfo &info, RequiredArgs required, CanQualType resultType, ArrayRef<CanQualType> argTypes) argument
/external/chromium_org/third_party/WebKit/public/platform/
H A DPlatform.h496 // - numArgs specifies the number of elements in argNames, argTypes, and
500 // - argTypes is the array of argument types:
535 const unsigned char* argTypes,
528 addTraceEvent( char phase, const unsigned char* categoryEnabledFlag, const char* name, unsigned long long id, int numArgs, const char** argNames, const unsigned char* argTypes, const unsigned long long* argValues, const WebConvertableToTraceFormat* convertableValues, unsigned char flags) argument
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1137 ArgTypes argTypes; local
1138 argTypes.push_back(builder.getInt32Ty());
1145 argTypes,
1745 ArgTypes argTypes; local
1752 argTypes.clear();
1753 argTypes.push_back(builder.getInt32Ty());
1754 argTypes.push_back(builder.getInt8PtrTy());
1760 argTypes,
1771 argTypes.clear();
1772 argTypes
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.app_1.3.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf.identity_3.1.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 647 milliseconds

12