Home
last modified time | relevance | path

Searched refs:exclusive (Results 1 – 25 of 961) sorted by relevance

12345678910>>...39

/external/toolchain-utils/
Dlock_machine_test.py19 file_lock_machine.Machine(machine, auto=True).Lock(exclusive=True)
40 self.assertTrue(mach.Lock(exclusive=True))
41 self.assertTrue(mach.Unlock(exclusive=True))
45 self.assertTrue(mach.Lock(exclusive=True))
46 self.assertTrue(mach.Unlock(exclusive=True))
51 self.assertTrue(mach.Lock(exclusive=False))
53 self.assertTrue(mach.Unlock(exclusive=False))
54 self.assertTrue(mach.Lock(exclusive=True))
55 self.assertTrue(mach.Unlock(exclusive=True))
59 self.assertTrue(mach.Lock(exclusive=False))
[all …]
Dfile_lock_machine.py65 self.exclusive = desc['exclusive']
72 self.exclusive = False
79 return self.counter or self.exclusive
83 'Owner: %s' % self.owner, 'Exclusive: %s' % self.exclusive,
124 file_lock.getDescription().exclusive,
160 if self._description.exclusive and self._description.auto:
199 def NonBlockingLock(self, exclusive, reason=''): argument
201 if lock.exclusive:
207 if exclusive:
215 lock.exclusive = True
[all …]
/external/clang/test/SemaObjC/
Dproperty-10.m6 …int p0; // expected-error {{property attributes 'readonly' and 'readwrite' are mutually exclusive}}
13 …opy) id p3_0; // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}}
14 …n) id p3_1; // expected-error {{property attributes 'assign' and 'retain' are mutually exclusive}}
15 …g) id s3_1; // expected-error {{property attributes 'assign' and 'strong' are mutually exclusive}}
16 …ain) id p3_2; // expected-error {{property attributes 'copy' and 'retain' are mutually exclusive}}
17 …ong) id s3_2; // expected-error {{property attributes 'copy' and 'strong' are mutually exclusive}}
18 …ign' and 'copy' are mutually exclusive}}, expected-error {{property attributes 'assign' and 'retai…
19 …ign' and 'copy' are mutually exclusive}}, expected-error {{property attributes 'assign' and 'stron…
21 …0; // expected-error {{property attributes 'unsafe_unretained' and 'copy' are mutually exclusive}}
22 … // expected-error {{property attributes 'unsafe_unretained' and 'retain' are mutually exclusive}}
[all …]
Dwarn-retain-block-property.m37 // 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
Dweak-property.m13 …ssign) id v1; // expected-error {{property attributes 'assign' and 'weak' are mutually exclusive}}
14 …ak, copy) id v2; // expected-error {{property attributes 'copy' and 'weak' are mutually exclusive}}
15 …retain) id v3; // expected-error {{property attributes 'retain' and 'weak' are mutually exclusive}}
16 …ssign) id v4; // expected-error {{property attributes 'assign' and 'weak' are mutually exclusive}}
Dproperty-12.m16 …) id X; // expected-error {{property attributes 'readonly' and 'readwrite' are mutually exclusive}}
20 …gn,copy) id X; // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}}
24 …etain) id X; // expected-error {{property attributes 'assign' and 'retain' are mutually exclusive}}
28 …,retain) id X; // expected-error {{property attributes 'copy' and 'retain' are mutually exclusive}}
Dconflict-atomic-property.m5 …at dummy; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}}
9 …float d4; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}}
Dproperty-in-class-extension-1.m52 …ertyName; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}}
58 …Name; // expected-error {{property attributes 'readonly' and 'readwrite' are mutually exclusive}} \
59 // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}}
/external/tensorflow/tensorflow/python/kernel_tests/
Dscan_ops_test.py44 def handle_options(func, x, axis, exclusive, reverse): argument
53 if exclusive:
80 def _compare(self, x, axis, exclusive, reverse): argument
81 np_out = handle_options(np.cumsum, x, axis, exclusive, reverse)
83 tf_out = math_ops.cumsum(x, axis, exclusive, reverse).eval()
88 for exclusive in [True, False]:
90 self._compare(x, axis, exclusive, reverse)
160 def _compareGradient(self, shape, axis, exclusive, reverse): argument
164 result = math_ops.cumsum(t, axis, exclusive, reverse)
192 for exclusive in [True, False]:
[all …]
/external/freetype/src/gxvalid/
Dgxvfeat.c84 FT_Bool exclusive, in gxv_feat_registry_validate() argument
124 if ( exclusive != gxv_feat_registry[feature].exclusive ) in gxv_feat_registry_validate()
127 exclusive )); in gxv_feat_registry_validate()
165 FT_Bool exclusive, in gxv_feat_setting_validate() argument
179 if ( exclusive && ( setting & 1 ) == 0 ) in gxv_feat_setting_validate()
203 FT_Bool exclusive; in gxv_feat_name_validate() local
226 exclusive = FT_BOOL( featureFlags & GXV_FEAT_MASK_EXCLUSIVE_SETTINGS ); in gxv_feat_name_validate()
227 if ( exclusive ) in gxv_feat_name_validate()
243 gxv_feat_registry_validate( feature, nSettings, exclusive, gxvalid ); in gxv_feat_name_validate()
250 gxv_feat_setting_validate( p, limit, exclusive, gxvalid ); in gxv_feat_name_validate()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Cumprod.pbtxt19 name: "exclusive"
21 If `True`, perform exclusive cumprod.
39 By setting the `exclusive` kwarg to `True`, an exclusive cumprod is
43 tf.cumprod([a, b, c], exclusive=True) # => [1, a, a * b]
55 The `reverse` and `exclusive` kwargs can also be combined:
58 tf.cumprod([a, b, c], exclusive=True, reverse=True) # => [b * c, c, 1]
Dapi_def_Cumsum.pbtxt19 name: "exclusive"
21 If `True`, perform exclusive cumsum.
39 By setting the `exclusive` kwarg to `True`, an exclusive cumsum is
43 tf.cumsum([a, b, c], exclusive=True) # => [0, a, a + b]
55 The `reverse` and `exclusive` kwargs can also be combined:
58 tf.cumsum([a, b, c], exclusive=True, reverse=True) # => [b + c, c, 0]
/external/tensorflow/tensorflow/core/kernels/
Dscan_ops_gpu.h162 bool exclusive, bool reverse, Op op) { in scan_kernel() argument
212 if (exclusive) { in scan_kernel()
231 const bool exclusive) { in LaunchScan() argument
248 out.data(), dimx, dimy, dimz, exclusive, reverse, op)); in LaunchScan()
254 out.data(), dimx, dimy, dimz, exclusive, reverse, op)); in LaunchScan()
260 out.data(), dimx, dimy, dimz, exclusive, reverse, op)); in LaunchScan()
266 out.data(), dimx, dimy, dimz, exclusive, reverse, op)); in LaunchScan()
272 out.data(), dimx, dimy, dimz, exclusive, reverse, op)); in LaunchScan()
278 out.data(), dimx, dimy, dimz, exclusive, reverse, op)); in LaunchScan()
287 const bool reverse, const bool exclusive) {
[all …]
Dscan_ops.h31 const bool reverse, const bool exclusive) { in operator()
39 To32Bit(in).reverse(dims).scan(1, reducer, exclusive).reverse(dims); in operator()
/external/tensorflow/tensorflow/compiler/tests/
Dscan_ops_test.py43 def handle_options(func, x, axis, exclusive, reverse): argument
52 if exclusive:
79 def _compare(self, x, axis, exclusive, reverse): argument
80 np_out = handle_options(np.cumsum, x, axis, exclusive, reverse)
83 tf_out = math_ops.cumsum(p, axis, exclusive, reverse).eval(
89 for exclusive in [True, False]:
91 self._compare(x, axis, exclusive, reverse)
157 def _compare(self, x, axis, exclusive, reverse): argument
158 np_out = handle_options(np.cumprod, x, axis, exclusive, reverse)
161 prod = math_ops.cumprod(p, axis, exclusive, reverse)
[all …]
/external/autotest/client/cros/
Dkernel_config.py105 def is_exclusive(self, exclusive): argument
115 for name in exclusive['missing']:
117 for name in exclusive['builtin']:
120 for name in exclusive['module']:
123 for name in exclusive['enabled']:
128 regex = r'CONFIG_%s' % (exclusive['regex'])
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrAtomics.td36 // Low-level exclusive operations
39 // TODO: add exclusive operations here...
47 // And clear exclusive.
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorScan.h60 const XprType& expr, const Index& axis, bool exclusive = false, const Op& op = Op())
61 : m_expr(expr), m_axis(axis), m_accumulator(op), m_exclusive(exclusive) {}
70 bool exclusive() const { return m_exclusive; }
108 m_exclusive(op.exclusive()),
147 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool exclusive() const {
231 if (self.exclusive()) {
261 if (self.exclusive()) {
/external/tensorflow/tensorflow/python/framework/
Dsmart_cond_test.py110 exclusive=False)
112 exclusive=True)
123 exclusive=False)
126 exclusive=True)
Dsmart_cond.py93 def smart_case(pred_fn_pairs, default=None, exclusive=False, name="smart_case"): argument
118 smart_cond, pred_fn_pairs, default, exclusive, name,
/external/libxml2/result/schemas/
Dsrc-element3_0_0.err1 …g/2001/XMLSchema}element': The attribute 'type' and the <complexType> child are mutually exclusive.
2 …rg/2001/XMLSchema}element': The attribute 'type' and the <simpleType> child are mutually exclusive.
Delement-err_0_0.err8 …://www.w3.org/2001/XMLSchema}element': The attributes 'default' and 'fixed' are mutually exclusive.
10 …{http://www.w3.org/2001/XMLSchema}element': The attributes 'ref' and 'name' are mutually exclusive.
18 …://www.w3.org/2001/XMLSchema}element': The attributes 'default' and 'fixed' are mutually exclusive.
19 …g/2001/XMLSchema}element': The attribute 'type' and the <complexType> child are mutually exclusive.
/external/tensorflow/tensorflow/python/ops/parallel_for/
Dmath_test.py301 for exclusive in (True, False):
308 a, axis=axis, exclusive=exclusive, reverse=reverse)
317 for exclusive in (True, False):
324 a, axis=axis, exclusive=exclusive, reverse=reverse)
/external/u-boot/drivers/mtd/ubi/
Dkapi.c167 if (vol->exclusive) in ubi_open_volume()
173 if (vol->exclusive || vol->writers > 0) in ubi_open_volume()
179 if (vol->exclusive || vol->writers || vol->readers || in ubi_open_volume()
182 vol->exclusive = 1; in ubi_open_volume()
186 if (vol->metaonly || vol->exclusive) in ubi_open_volume()
348 vol->exclusive = 0; in ubi_close_volume()
/external/vixl/
DREADME.md101 All exclusive-access instructions are supported, but the simulator cannot
105 * A local monitor is simulated, so simulated exclusive loads and stores execute
107 * The global monitor is simulated by occasionally causing exclusive-access
116 * A pair of load-/store-exclusive instructions will only succeed if they have
119 will clear the exclusive monitor.
121 exclusive monitor will sometimes be left intact after these instructions.

12345678910>>...39