OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FunTy
(Results
1 - 6
of
6
) sorted by null
/external/clang/test/Sema/
dllexport.c
10
typedef __declspec(dllexport) void (*
FunTy
)(); // expected-warning{{'dllexport' attribute only applies to variables and functions}}
dllimport.c
10
typedef __declspec(dllimport) void (*
FunTy
)(); // expected-warning{{'dllimport' attribute only applies to variables and functions}}
/external/llvm/lib/CodeGen/
JumpInstrTables.cpp
166
FunctionType *
FunTy
= transformType(OrigFunTy);
168
JumpMap::iterator it = Metadata.find(
FunTy
);
173
Metadata[
FunTy
] = Meta;
174
it = Metadata.find(
FunTy
);
187
JITI->insertEntry(
FunTy
, Target, JumpFun);
193
bool JumpInstrTables::hasTable(FunctionType *
FunTy
) {
194
FunctionType *TransTy = transformType(
FunTy
);
198
FunctionType *JumpInstrTables::transformType(FunctionType *
FunTy
) {
201
Type *VoidPtrTy = Type::getInt8PtrTy(
FunTy
->getContext());
205
bool IsVarArg =
FunTy
->isVarArg()
[
all
...]
/external/clang/lib/Sema/
Sema.cpp
[
all
...]
/external/clang/test/SemaCXX/
dllexport.cpp
22
typedef __declspec(dllexport) void (*
FunTy
)(); // expected-warning{{'dllexport' attribute only applies to variables, functions and classes}}
[
all
...]
dllimport.cpp
21
typedef __declspec(dllimport) void (*
FunTy
)(); // expected-warning{{'dllimport' attribute only applies to variables, functions and classes}}
[
all
...]
Completed in 280 milliseconds