OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FunctionTy
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm-c/
Core.h
380
LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef
FunctionTy
);
381
LLVMTypeRef LLVMGetReturnType(LLVMTypeRef
FunctionTy
);
382
unsigned LLVMCountParamTypes(LLVMTypeRef
FunctionTy
);
383
void LLVMGetParamTypes(LLVMTypeRef
FunctionTy
, LLVMTypeRef *Dest);
696
LLVMTypeRef
FunctionTy
);
[
all
...]
/external/llvm/lib/VMCore/
Core.cpp
267
LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef
FunctionTy
) {
268
return unwrap<FunctionType>(
FunctionTy
)->isVarArg();
271
LLVMTypeRef LLVMGetReturnType(LLVMTypeRef
FunctionTy
) {
272
return wrap(unwrap<FunctionType>(
FunctionTy
)->getReturnType());
275
unsigned LLVMCountParamTypes(LLVMTypeRef
FunctionTy
) {
276
return unwrap<FunctionType>(
FunctionTy
)->getNumParams();
279
void LLVMGetParamTypes(LLVMTypeRef
FunctionTy
, LLVMTypeRef *Dest) {
280
FunctionType *Ty = unwrap<FunctionType>(
FunctionTy
);
[
all
...]
/external/clang/lib/CodeGen/
CodeGenFunction.cpp
218
llvm::FunctionType *
FunctionTy
=
222
llvm::Constant *F = CGM.CreateRuntimeFunction(
FunctionTy
, Fn);
[
all
...]
Completed in 552 milliseconds