OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:declared
(Results
226 - 250
of
3775
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
profil.h
31
- pr_scale is
declared
as unsigned long (instead of "unsigned int")
32
- pr_size is
declared
as size_t (instead of "unsigned int")
33
- pr_off is
declared
as void * (instead of "__psunsigned_t")
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
profil.h
31
- pr_scale is
declared
as unsigned long (instead of "unsigned int")
32
- pr_size is
declared
as size_t (instead of "unsigned int")
33
- pr_off is
declared
as void * (instead of "__psunsigned_t")
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
profil.h
31
- pr_scale is
declared
as unsigned long (instead of "unsigned int")
32
- pr_size is
declared
as size_t (instead of "unsigned int")
33
- pr_off is
declared
as void * (instead of "__psunsigned_t")
/bionic/libc/dns/include/
resolv_static.h
6
/* this structure contains all the variables that were
declared
/external/clang/test/Analysis/
default-diagnostic-visitors.c
8
int *password; // expected-note {{'password'
declared
without an initial value}}
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p3.cpp
15
EPtrSize = sizeof((E*)0) // ok, E is already
declared
/external/clang/test/CXX/class/class.mem/
p14.cpp
3
// In addition, if class T has a user-
declared
constructor (12.1),
/external/clang/test/CXX/class.access/class.access.base/
p5.cpp
19
private: static int x; // expected-note 5 {{
declared
private here}}
30
public: static int x; // expected-note{{member is
declared
here}}
48
protected: static int x; // expected-note{{member is
declared
here}}
87
int field; // expected-note {{member is
declared
here}}
/external/clang/test/CXX/class.access/class.access.nest/
p1.cpp
25
int y; // expected-note {{
declared
private here}}
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p10.cpp
4
virtual void f(int a = 7); // expected-note{{'A::f'
declared
here}}
/external/clang/test/CXX/temp/temp.param/
p1.cpp
11
class X0 {}; // expected-note{{template is
declared
here}}
/external/clang/test/PCH/
pragma-weak.c
10
// expected-warning {{weak identifier 'undeclaredvar' never
declared
}}
/external/clang/test/Sema/
assign.c
6
// expected-note@-1 {{variable 'x'
declared
const here}}
implicit-int.c
21
h19_insline(n) // expected-warning {{parameter 'n' was not
declared
, defaulting to type 'int'}}
x86-attr-force-align-arg-pointer.c
9
// Functions only have to be
declared
force_align_arg_pointer once.
/external/clang/test/SemaCXX/
default-assignment-operator.cpp
5
int &ref; // expected-note {{
declared
here}} \
13
const int cint; // expected-note {{
declared
here}}
79
const int a; // expected-note{{
declared
here}}
93
X &operator=(const X&); // expected-note{{
declared
protected here}}
warn-overloaded-virtual.cpp
4
virtual void foo(int); // expected-note {{
declared
here}}
5
virtual void foo(); // expected-note {{
declared
here}}
13
void foo(); // expected-note {{
declared
here}}
17
virtual void foo(void*); // expected-note {{
declared
here}}
warn-pure-virtual-call-from-ctor-dtor.cpp
6
virtual void f() = 0; // expected-note 2 {{'f'
declared
here}}
/external/clang/test/SemaObjC/
arc-no-runtime.m
10
@property (weak) id testObjectWeakProperty; // expected-note {{
declared
here}}
check-objcbridge-related-attribute-lookup.m
4
typedef struct __attribute__((objc_bridge_related(NSColor,colorXWithCGColor:,CXGColor))) CGColor *CGColorRef; // expected-note 2 {{
declared
here}}
6
typedef struct __attribute__((objc_bridge_related(XNSColor,colorWithCGColor:,CGColor))) CGColor1 *CGColorRef1; // expected-note 2 {{
declared
here}}
8
typedef struct __attribute__((objc_bridge_related(PNsColor,colorWithCGColor:,CGColor))) CGColor2 *CGColorRef2; // expected-note 2 {{
declared
here}}
20
typedef int PNsColor; // expected-note 2 {{
declared
here}}
format-cstrings-warning.m
14
- (instancetype)initWithFormat:(NSString *)format, ... __attribute__((format(__NSString__, 1, 2))); // expected-note 2 {{method 'initWithFormat:'
declared
here}}
18
+ (instancetype)stringWithFormat:(NSString *)format, ... __attribute__((format(__NSString__, 1, 2))); // expected-note {{method 'stringWithFormat:'
declared
here}}
19
+ (instancetype)localizedStringWithFormat:(NSString *)format, ... __attribute__((format(__NSString__, 1, 2))); // expected-note {{method 'localizedStringWithFormat:'
declared
here}}
20
- (void)MyRandomMethod:(NSString *)format locale:(id)locale arguments:(va_list)argList __attribute__((format(__NSString__, 1, 0))); // expected-note {{method 'MyRandomMethod:locale:arguments:'
declared
here}}
53
CFStringRef CFStringCreateWithFormatAndArguments(CFAllocatorRef alloc, CFDictionaryRef formatOptions, CFStringRef format, va_list arguments) __attribute__((format(CFString, 3, 0))); // expected-note {{'CFStringCreateWithFormatAndArguments'
declared
here}}
59
void CFStringAppendFormatAndArguments(CFMutableStringRef theString, CFDictionaryRef formatOptions, CFStringRef format, va_list arguments) __attribute__((format(CFString, 3, 0))); // expected-note {{'CFStringAppendFormatAndArguments'
declared
here}}
69
extern void MyNSLog(NSString *format, ...) __attribute__((format(__NSString__, 1, 2))); // expected-note {{'MyNSLog'
declared
here}}
70
extern void MyCFStringCreateWithFormat(CFStringRef format, ...) __attribute__((format(__CFString__, 1, 2))); // expected-note {{'MyCFStringCreateWithFormat'
declared
here}}
71
extern void XMyNSLog(int, NSString *format, ...) __attribute__((format(__NSString__, 2, 3))); // expected-note {{'XMyNSLog'
declared
here}}
ivar-sem-check-1.m
14
FOO BADFUNC; // expected-error {{field 'BADFUNC'
declared
as a function}}
method-not-defined.m
3
@interface Foo // expected-note {{receiver is instance of class
declared
here}}
narrow-property-type-in-cont-class.m
12
@property(nonatomic,readonly,retain) NSMutableArray* err_outline; // expected-note {{property
declared
here}}
objcbridge-attribute.m
4
typedef struct __attribute__ ((objc_bridge(NSError))) __CFErrorRef * CFErrorRef; // expected-note 3 {{
declared
here}}
6
typedef struct __attribute__ ((objc_bridge(MyError))) __CFMyErrorRef * CFMyErrorRef; // expected-note 1 {{
declared
here}}
20
typedef struct __attribute__((objc_bridge(NSDictionary))) __CFDictionary * CFDictionaryRef; // expected-note {{
declared
here}}
48
typedef struct __attribute__((objc_bridge(NSTesting))) __CFError *CFTestingRef; // expected-note {{
declared
here}}
56
typedef CFErrorRef1 CFErrorRef2; // expected-note {{
declared
here}}
64
@interface NSError<P1, P2, P3> @end // expected-note 3 {{
declared
here}}
66
@interface MyError : NSError // expected-note 1 {{
declared
here}}
116
typedef struct __attribute__ ((objc_bridge(MyPersonalError))) __CFMyPersonalErrorRef * CFMyPersonalErrorRef; // expected-note 1 {{
declared
here}}
118
@interface MyPersonalError : NSError <P4> // expected-note 1 {{
declared
here}}
Completed in 659 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>