OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:typedef2
(Results
1 - 8
of
8
) sorted by null
/external/clang/test/ASTMerge/Inputs/
typedef1.c
2
typedef int
Typedef2
;
4
Typedef2
x2;
typedef2.c
2
typedef double
Typedef2
;
4
Typedef2
x2;
/external/clang/test/ASTMerge/
typedef.c
2
// RUN: %clang_cc1 -emit-pch -o %t.2.ast %S/Inputs/
typedef2
.c
5
// CHECK:
typedef2
.c:4:10: error: external variable 'x2' declared with incompatible types in different translation units ('
Typedef2
' (aka 'double') vs. '
Typedef2
' (aka 'int'))
6
// CHECK: typedef1.c:4:10: note: declared here with type '
Typedef2
' (aka 'int')
/external/clang/test/Sema/
dllexport.c
8
typedef __declspec(dllexport) int
typedef2
; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
typedef
dllimport.c
8
typedef __declspec(dllimport) int
typedef2
; // expected-warning{{'dllimport' attribute only applies to variables and functions}}
typedef
/external/clang/lib/AST/
ASTImporter.cpp
[
all
...]
/external/clang/test/SemaCXX/
dllexport.cpp
20
typedef __declspec(dllexport) int
typedef2
; // expected-warning{{'dllexport' attribute only applies to variables, functions and classes}}
typedef
[
all
...]
dllimport.cpp
19
typedef __declspec(dllimport) int
typedef2
; // expected-warning{{'dllimport' attribute only applies to variables, functions and classes}}
typedef
[
all
...]
Completed in 347 milliseconds