OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ivar
(Results
51 - 75
of
230
) sorted by null
1
2
3
4
5
6
7
8
9
10
/external/clang/test/SemaObjC/
property-and-ivar-use.m
3
// Do not issue error if '
ivar
' used previously belongs to the inherited class
class-unavail-warning.m
8
MyClass *
ivar
; // no error.
19
MyClass *
ivar
; // expected-error {{unavailable}}
comptypes-legal.m
10
void __setRetained(id *
ivar
, id value, NSObject **o) {
11
*
ivar
= value;
weak-attr-ivar.m
78
id
ivar
__attribute__((objc_gc(weak)));
83
id *(__attribute__((objc_gc(strong))) x) = &t->
ivar
; // expected-warning {{initializing '__strong id *' with an expression of type '__weak id *' discards qualifiers}}
/external/clang/test/SemaObjCXX/
instantiate-expr.mm
5
int
ivar
;
21
get_an_A(N)->
ivar
= value; // expected-error{{assigning to 'int' from incompatible type 'int *'}}
33
//
ivar
reference.
36
ptr->
ivar
= value; // expected-error{{assigning to 'int' from incompatible type 'int *'}}
/external/chromium_org/third_party/tlslite/tlslite/
handshakesettings.py
29
@
ivar
minKeySize: The minimum bit length for asymmetric keys.
36
@
ivar
maxKeySize: The maximum bit length for asymmetric keys.
43
@
ivar
cipherNames: The allowed ciphers, in order of preference.
61
@
ivar
macNames: The allowed MAC algorithms.
69
@
ivar
certificateTypes: The allowed certificate types, in order of
79
@
ivar
minVersion: The minimum allowed SSL/TLS version.
87
@
ivar
maxVersion: The maximum allowed SSL/TLS version.
97
@
ivar
useExperimentalTackExtension: Whether to enabled TACK support.
errors.py
75
@
ivar
description: Set to one of the constants in
79
@
ivar
level: Set to one of the constants in
83
@
ivar
message: Description of what went wrong.
103
@
ivar
description: Set to one of the constants in
107
@
ivar
level: Set to one of the constants in
session.py
32
@
ivar
srpUsername: The client's SRP username (or None).
35
@
ivar
clientCertChain: The client's certificate chain (or None).
38
@
ivar
serverCertChain: The server's certificate chain (or None).
41
@
ivar
tackExt: The server's TackExtension (or None).
44
@
ivar
tackInHelloExt: True if a TACK was presented via TLS Extension.
x509.py
19
@
ivar
bytes: The DER-encoded ASN.1 certificate
22
@
ivar
publicKey: The subject public key from the certificate.
25
@
ivar
subject: The DER-encoded ASN.1 subject distinguished name.
/external/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp
85
// to an
ivar
.
115
for (const auto *
Ivar
: ID->ivars()) {
121
if (
Ivar
->getAccessControl() != ObjCIvarDecl::Private ||
122
Ivar
->hasAttr<UnusedAttr>() ||
Ivar
->hasAttr<IBOutletAttr>() ||
123
Ivar
->hasAttr<IBOutletCollectionAttr>() ||
124
Ivar
->isUnnamedBitfield())
127
M[
Ivar
] = Unused;
CheckObjCDealloc.cpp
116
for (const auto *
Ivar
: ID->ivars()) {
117
QualType T =
Ivar
->getType();
120
Ivar
->hasAttr<IBOutletAttr>() || // Skip IBOutlets.
121
Ivar
->hasAttr<IBOutletCollectionAttr>()) // Skip IBOutletCollections.
232
//
ivar
must be released if and only if the kind of setter was not 'assign'
242
? "missing
ivar
release (leak)"
243
: "missing
ivar
release (Hybrid MM, non-GC)";
250
? "extra
ivar
release (use-after-release)"
251
: "extra
ivar
release (Hybrid MM, non-GC)";
/external/clang/test/CodeGenObjC/
autorelease.m
8
id
ivar
;
19
return
ivar
;
mrr-captured-block-var-inlined-layout.m
1
// RUN: %clang_cc1 -fblocks -fobjc-runtime-has-weak -triple x86_64-apple-darwin -print-
ivar
-layout -emit-llvm -o /dev/null %s > %t-64.layout
3
// RUN: %clang_cc1 -fblocks -fobjc-runtime-has-weak -triple i386-apple-darwin -print-
ivar
-layout -emit-llvm -o /dev/null %s > %t-32.layout
objc2-write-barrier-3.m
44
// Storing into an
ivar
of an array of strong pointer types.
/external/llvm/test/Transforms/ObjCARC/
contract-storestrong-ivar.ll
19
%
ivar
= load i64* @"OBJC_IVAR_$_Controller.preferencesController", align 8
21
%add.ptr = getelementptr inbounds i8* %tmp, i64 %
ivar
/external/clang/test/FixIt/
typo.m
128
@interface
Ivar
132
@property (retain) id
ivar
;
141
@synthesize
ivar
;
144
// Test that we don't correct '
ivar
' to '
Ivar
' e
145
[
ivar
method]; // expected-warning{{multiple methods named 'method' found}}
/external/clang/lib/Analysis/
BodyFarm.cpp
77
/// Create an Objective-C
ivar
reference.
78
ObjCIvarRefExpr *makeObjCIvarRef(const Expr *Base, const ObjCIvarDecl *
IVar
);
153
const ObjCIvarDecl *
IVar
) {
154
return new (C) ObjCIvarRefExpr(const_cast<ObjCIvarDecl*>(
IVar
),
155
IVar
->getType(), SourceLocation(),
391
// First, find the backing
ivar
.
392
const ObjCIvarDecl *
IVar
= Prop->getPropertyIvarDecl();
393
if (!
IVar
)
406
IVar
->getContainingInterface()->getImplementation();
419
// Sanity check that the property is the same type as the
ivar
, or
[
all
...]
/external/clang/lib/CodeGen/
CGObjCRuntime.h
68
// Utility functions for unified
ivar
access. These need to
72
/// Compute an offset to the given
ivar
, suitable for passing to
77
/// sythesized
ivar
.
80
const ObjCIvarDecl *
Ivar
);
83
const ObjCIvarDecl *
Ivar
);
88
const ObjCIvarDecl *
Ivar
,
256
const ObjCIvarDecl *
Ivar
,
260
const ObjCIvarDecl *
Ivar
) = 0;
291
const ObjCIvarDecl *
Ivar
);
/external/clang/test/Index/
complete-member-access.m
14
int
IVar
;
22
ptr->
IVar
= 0;
54
// CHECK-CC2: ObjCIvarDecl:{ResultType int}{TypedText
IVar
} (35)
index-decls.m
60
// CHECK: [indexDeclaration]: kind: objc-
ivar
| name: _prop | {{.*}} | loc: 11:20
64
// CHECK: [indexDeclaration]: kind: objc-
ivar
| name: _auto_prop | {{.*}} | loc: 20:33
65
// CHECK: [indexEntityReference]: kind: objc-
ivar
| name: _auto_prop | {{.*}} | loc: 25:3
/external/clang/lib/Sema/
SemaObjCProperty.cpp
644
ObjCIvarDecl *
ivar
) {
645
if (property->isInvalidDecl() ||
ivar
->isInvalidDecl()) return;
647
QualType ivarType =
ivar
->getType();
663
// If the
ivar
is private, and it's implicitly __unsafe_unretained
669
ivar
->getAccessControl() == ObjCIvarDecl::Private) {
675
ivar
->setType(ivarType);
682
S.Diag(
ivar
->getLocation(), diag::err_arc_strong_property_ownership)
684
<<
ivar
->getDeclName()
689
S.Diag(
ivar
->getLocation(), diag::error_weak_property)
691
<<
ivar
->getDeclName()
[
all
...]
/external/clang/test/ARCMT/
remove-dealloc-zerouts.m
39
self.a.x = 0; // every dealloc must zero out its own
ivar
. This patter is not recognized.
remove-dealloc-zerouts.m.result
34
self.a.x = 0; // every dealloc must zero out its own
ivar
. This patter is not recognized.
/external/clang/test/ASTMerge/Inputs/
interface1.m
13
//
Ivar
mismatch
interface2.m
13
//
Ivar
mismatch
Completed in 359 milliseconds
1
2
3
4
5
6
7
8
9
10