OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:exclusive
(Results
1 - 25
of
2339
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/valgrind/drd/tests/
hold_lock_1.vgtest
3
vgopts: --
exclusive
-threshold=500 --shared-threshold=2000
hold_lock_2.vgtest
3
vgopts: --
exclusive
-threshold=2000 --shared-threshold=500
/external/clang/test/SemaObjC/
property-10.m
6
@property(readonly, readwrite) int p0; // expected-error {{property attributes 'readonly' and 'readwrite' are mutually
exclusive
}}
13
@property(assign, copy) id p3_0; // expected-error {{property attributes 'assign' and 'copy' are mutually
exclusive
}}
14
@property(assign, retain) id p3_1; // expected-error {{property attributes 'assign' and 'retain' are mutually
exclusive
}}
15
@property(assign, strong) id s3_1; // expected-error {{property attributes 'assign' and 'strong' are mutually
exclusive
}}
16
@property(copy, retain) id p3_2; // expected-error {{property attributes 'copy' and 'retain' are mutually
exclusive
}}
17
@property(copy, strong) id s3_2; // expected-error {{property attributes 'copy' and 'strong' are mutually
exclusive
}}
18
@property(assign, copy, retain) id p3_3; // expected-error {{property attributes 'assign' and 'copy' are mutually
exclusive
}}, expected-error {{property attributes 'assign' and 'retain' are mutually
exclusive
}}
19
@property(assign, copy, strong) id s3_3; // expected-error {{property attributes 'assign' and 'copy' are mutually
exclusive
}}, expected-error {{property attributes 'assign' and 'strong' are mutually
exclusive
}}
[
all
...]
conflict-atomic-property.m
5
@property (nonatomic, assign, atomic) float dummy; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually
exclusive
}}
9
@property (atomic, nonatomic, assign) float d4; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually
exclusive
}}
property-12.m
16
@property(readonly,readwrite) id X; // expected-error {{property attributes 'readonly' and 'readwrite' are mutually
exclusive
}}
20
@property(assign,copy) id X; // expected-error {{property attributes 'assign' and 'copy' are mutually
exclusive
}}
24
@property(assign,retain) id X; // expected-error {{property attributes 'assign' and 'retain' are mutually
exclusive
}}
28
@property(copy,retain) id X; // expected-error {{property attributes 'copy' and 'retain' are mutually
exclusive
}}
weak-property.m
13
@property (weak, assign) id v1; // expected-error {{property attributes 'assign' and 'weak' are mutually
exclusive
}}
14
@property (weak, copy) id v2; // expected-error {{property attributes 'copy' and 'weak' are mutually
exclusive
}}
15
@property (weak, retain) id v3; // expected-error {{property attributes 'retain' and 'weak' are mutually
exclusive
}}
16
@property (weak, assign) id v4; // expected-error {{property attributes 'assign' and 'weak' are mutually
exclusive
}}
warn-retain-block-property.m
37
// CHECK-ARC: 15:1: error: property attributes 'retain' and 'weak' are mutually
exclusive
40
// CHECK-ARC: 18:1: error: property attributes 'copy' and 'retain' are mutually
exclusive
43
// CHECK-ARC: 19:1: error: property attributes 'assign' and 'retain' are mutually
exclusive
54
// CHECK: 15:1: error: property attributes 'retain' and 'weak' are mutually
exclusive
57
// CHECK: 18:1: error: property attributes 'copy' and 'retain' are mutually
exclusive
60
// CHECK: 19:1: error: property attributes 'assign' and 'retain' are mutually
exclusive
property-in-class-extension-1.m
52
@property (nonatomic, atomic, readonly) float propertyName; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually
exclusive
}}
56
@property (atomic, nonatomic, readonly, readwrite) float propertyName; // expected-error {{property attributes 'readonly' and 'readwrite' are mutually
exclusive
}} \
57
// expected-error {{property attributes 'atomic' and 'nonatomic' are mutually
exclusive
}}
/external/libxml2/result/schemas/
src-attribute1_0_0.err
1
./test/schemas/src-attribute1_0.xsd:9: element attribute: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}attribute': The attributes 'default' and 'fixed' are mutually
exclusive
.
src-element1_0_0.err
1
./test/schemas/src-element1_0.xsd:7: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}element': The attributes 'default' and 'fixed' are mutually
exclusive
.
src-element3_0_0.err
1
./test/schemas/src-element3_0.xsd:8: element complexType: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}element': The attribute 'type' and the <complexType> child are mutually
exclusive
.
2
./test/schemas/src-element3_0.xsd:16: element simpleType: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}element': The attribute 'type' and the <simpleType> child are mutually
exclusive
.
src-attribute4_0_0.err
1
./test/schemas/src-attribute4_0.xsd:8: element simpleType: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}attribute': The attribute 'type' and the <simpleType> child are mutually
exclusive
.
src-element2-1_0_0.err
1
./test/schemas/src-element2-1_0.xsd:12: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}element': The attributes 'ref' and 'name' are mutually
exclusive
.
/external/jsr305/ri/src/main/java/javax/annotation/meta/
Exclusive.java
16
* @
Exclusive
int value();
24
public @interface
Exclusive
{
/frameworks/base/core/java/android/hardware/camera2/utils/
CloseableLock.java
25
* Implement a shared/
exclusive
lock that can be closed.
28
*
exclusive
lock acquire will block until all shared locks have been released.</p>
33
* <p>Acquiring to acquire a shared lock while holding an
exclusive
lock or vice versa is not
48
/** If an
exclusive
lock is acquired by some thread. */
53
* <p>Reentrant locking increments this. If an
exclusive
lock is held,
155
* <p>If other threads hold a non-
exclusive
lock (and the lock is not yet closed),
156
* this operation will return immediately. If another thread holds an
exclusive
lock,
157
* this thread will block until the
exclusive
lock has been released.</p>
159
* <p>This lock is re-entrant; acquiring more than one non-
exclusive
lock per thread is
165
* @throws IllegalStateException if this thread is already holding an
exclusive
loc
[
all
...]
/external/javassist/src/main/javassist/bytecode/
CodeIterator.java
448
private int insert0(int pos, byte[] code, boolean
exclusive
)
456
pos = insertGapAt(pos, len,
exclusive
).position;
505
* Inserts an
exclusive
gap
524
* Inserts an
exclusive
gap in front of the instruction at the given
561
* Inserts an inclusive or
exclusive
gap in front of the instruction
569
* then it is included within that block. If the gap is
exclusive
,
588
* @param
exclusive
true if
exclusive
, otherwise false.
592
public Gap insertGapAt(int pos, int length, boolean
exclusive
)
596
* cursorPos indicates the next bytecode whichever
exclusive
i
[
all
...]
/art/runtime/base/
mutex.h
194
//
exclusive
access to what it guards. A Mutex can be in one of two states:
196
// -
Exclusive
- owned by a single thread.
201
// Free |
Exclusive
| error
202
//
Exclusive
| Block* | Free
213
// Block until mutex is free then acquire
exclusive
access.
217
// Returns true if acquires
exclusive
access, false otherwise.
221
// Release
exclusive
access.
225
// Is the current thread the
exclusive
holder of the Mutex.
244
// Id associated with
exclusive
owner. No memory ordering semantics if called from a thread other
259
//
Exclusive
owner
[
all
...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
StringList.java
18
* @param to the final index of the range to be copied,
exclusive
.
/external/libxml2/include/libxml/
c14n.h
2
* Summary: Provide Canonical XML and
Exclusive
XML Canonicalization
10
* "
Exclusive
XML Canonicalization" implementation
34
*
Exclusive
XML Canonicazation
63
XML_C14N_EXCLUSIVE_1_0 = 1, /*
Exclusive
C14N 1.0 spec */
/external/libxml2/result/
dav11
6
<D:lockscope>
exclusive
</D:lockscope>
dav19
8
<D:lockscope>
Exclusive
</D:lockscope>
/external/libxml2/result/noent/
dav11
6
<D:lockscope>
exclusive
</D:lockscope>
dav19
8
<D:lockscope>
Exclusive
</D:lockscope>
/external/libxml2/test/
dav11
6
<D:lockscope>
exclusive
</D:lockscope>
dav19
8
<D:lockscope>
Exclusive
</D:lockscope>
Completed in 943 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>