/external/dng_sdk/source/ |
dng_matrix.h | 93 bool NotEmpty () const 210 bool NotEmpty () const
|
dng_opcode_list.h | 64 bool NotEmpty () const 73 return fAlwaysApply && NotEmpty ();
|
dng_image_writer.cpp | 1252 if (exif.fBatteryLevelA.NotEmpty ()) 1312 if (exif.fDateTime.Subseconds ().NotEmpty ()) 1324 if (exif.fDateTimeOriginal.Subseconds ().NotEmpty ()) 1336 if (exif.fDateTimeDigitized.Subseconds ().NotEmpty ()) 1343 if (exif.fMake.NotEmpty ()) 1348 if (exif.fModel.NotEmpty ()) 1353 if (exif.fArtist.NotEmpty ()) 1358 if (exif.fSoftware.NotEmpty ()) 1363 if (exif.fCopyright.NotEmpty ()) 1368 if (exif.fImageDescription.NotEmpty ()) [all...] |
dng_validate.cpp | 116 if (gDumpDNG.NotEmpty ()) 173 if (gDumpStage1.NotEmpty ()) 213 if (gDumpStage2.NotEmpty ()) 269 if (gDumpStage3.NotEmpty ()) 290 if (gDumpDNG.NotEmpty ()) 422 if (gDumpTIF.NotEmpty ())
|
dng_iptc.h | 132 bool NotEmpty () const
|
dng_preview.cpp | 102 if (preview.fInfo.fApplicationName.NotEmpty ()) 109 if (preview.fInfo.fApplicationVersion.NotEmpty ()) 116 if (preview.fInfo.fSettingsName.NotEmpty ()) 137 if (preview.fInfo.fDateTime.NotEmpty ())
|
dng_string.h | 89 bool NotEmpty () const
|
dng_xmp.cpp | 426 if (dateStamp.NotEmpty ()) 485 if (s.NotEmpty ()) 1152 if (s.NotEmpty ()) 1209 if (s.NotEmpty ()) 1412 if (s.NotEmpty ()) 1486 if (s.NotEmpty ()) 1639 if (s.NotEmpty ()) [all...] |
dng_misc_opcodes.cpp | 217 if (overlap.NotEmpty ()) 227 if (overlap.NotEmpty ()) 408 if (overlap.NotEmpty ()) 627 if (overlap.NotEmpty ()) 989 if (overlap.NotEmpty ()) 1195 if (overlap.NotEmpty ()) 1375 if (overlap.NotEmpty ()) 1552 if (overlap.NotEmpty ())
|
dng_opcodes.cpp | 366 if (modifiedBounds.NotEmpty ()) 540 if (modifiedBounds.NotEmpty ())
|
dng_rect.h | 111 bool NotEmpty () const 283 bool NotEmpty () const
|
dng_bad_pixels.h | 169 bool NotEmpty () const
|
dng_shared.cpp | [all...] |
dng_camera_profile.h | 112 DNG_ASSERT (!fFingerprint.IsValid () || fName.NotEmpty (), 127 DNG_ASSERT (!fFingerprint.IsValid () || fName.NotEmpty (), 168 return fName.NotEmpty (); // Fingerprint is optional.
|
dng_negative.cpp | 869 if (b.NotEmpty () && minEntry > 0.0) 927 if (n.NotEmpty () && maxEntry > 0.0) 1275 if (id.Name ().NotEmpty () && id.Fingerprint ().IsValid ()) 1297 if (id.Name ().NotEmpty ()) 1339 if (id.Name ().NotEmpty ()) [all...] |
/external/wpa_supplicant_8/src/ap/ |
ieee802_11_auth.c | 511 int *untagged, *tagged, *notempty; local 569 notempty = &cache->vlan_id.notempty; 572 *notempty = !!radius_msg_get_vlanid(msg, untagged, 597 if (cache->vlan_id.notempty && 608 !cache->vlan_id.notempty)
|
vlan_full.c | 423 int untagged, *tagged, i, notempty; local 438 notempty = vlan->vlan_desc.notempty; 442 if (!notempty) { 535 int notempty = vlan->vlan_desc.notempty; local 552 if (!notempty) {
|
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
MonitorBasedArrayBlockingQueue.java | 86 private final Monitor.Guard notEmpty; 176 notEmpty = new Monitor.Guard(monitor) { 307 if (monitor.enterIf(notEmpty)) { 321 monitor.enterWhen(notEmpty); 332 if (monitor.enterWhen(notEmpty, timeout, unit)) { 346 if (monitor.enterIf(notEmpty)) {
|
MonitorBasedPriorityBlockingQueue.java | 97 private final Monitor.Guard notEmpty = 250 monitor.enterWhen(notEmpty); 261 if (monitor.enterWhen(notEmpty, timeout, unit)) {
|
/libcore/luni/src/main/java/java/util/concurrent/ |
LinkedBlockingDeque.java | 132 private final Condition notEmpty = lock.newCondition(); 200 notEmpty.signal(); 219 notEmpty.signal(); 463 notEmpty.await(); 476 notEmpty.await(); 493 nanos = notEmpty.awaitNanos(nanos); 511 nanos = notEmpty.awaitNanos(nanos); [all...] |
LinkedBlockingQueue.java | 129 private final Condition notEmpty = takeLock.newCondition(); 145 notEmpty.signal(); 413 notEmpty.await(); 418 notEmpty.signal(); 438 nanos = notEmpty.awaitNanos(nanos); 443 notEmpty.signal(); 465 notEmpty.signal(); [all...] |
PriorityBlockingQueue.java | 142 private final Condition notEmpty; 195 this.notEmpty = lock.newCondition(); 218 this.notEmpty = lock.newCondition(); 463 notEmpty.signal(); 519 notEmpty.await(); 533 nanos = notEmpty.awaitNanos(nanos); [all...] |
/hardware/libhardware/tests/camera2/ |
camera2_utils.h | 73 Condition notEmpty;
|
camera2_utils.cpp | 74 notEmpty.signal(); 141 res = notEmpty.waitRelative(mMutex,timeout);
|
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
Condition.java | 50 * final Condition notEmpty = <b>lock.newCondition(); </b> 63 * <b>notEmpty.signal();</b> 73 * <b>notEmpty.await();</b>
|