/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/ |
expired.pass.cpp | 14 // bool expired() const; 35 assert(wp.expired() == (wp.use_count() == 0)); 41 assert(wp.expired() == (wp.use_count() == 0)); 44 assert(wp.expired() == (wp.use_count() == 0));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/ |
expired.pass.cpp | 14 // bool expired() const; 35 assert(wp.expired() == (wp.use_count() == 0)); 41 assert(wp.expired() == (wp.use_count() == 0)); 44 assert(wp.expired() == (wp.use_count() == 0));
|
/external/llvm/bindings/python/llvm/ |
object.py | 58 # This is NOT OK. You perform a lookup after the object has expired. 61 print symbol.name # This raises because the object has expired. 191 self.expired = False 199 if self.expired: 200 raise Exception('Section instance has expired.') 207 if self.expired: 208 raise Exception('Section instance has expired.') 214 if self.expired: 215 raise Exception('Section instance has expired.') 227 if self.expired [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
ANQPData.java | 102 public boolean expired() { method in class:ANQPData 103 return expired(mClock.currentTimeMillis()); 106 public boolean expired(long at) { method in class:ANQPData 143 sb.append(expired(now) ? 'x' : '-');
|
AnqpCache.java | 129 if (data == null || data.expired()) { 184 if (entry.getValue().expired(now)) {
|
/external/jetty/src/java/org/eclipse/jetty/util/thread/ |
Timeout.java | 93 /** Get an expired tasks. 95 * expired Task, but without calling it's {@link Task#expire()} or 96 * {@link Task#expired()} methods. 98 * @return the next expired task or null. 100 public Task expired() method in class:Timeout 140 task.expired(); 366 * @see #expired() For an unsynchronized callback. 376 public void expired(){} method in class:Timeout.Task
|
/external/protobuf/src/google/protobuf/stubs/ |
shared_ptr.h | 158 // a bad_weak_ptr exception when ptr is expired. Is it better to provide this 298 // Create an empty (i.e. already expired) weak_ptr. 365 // Note that this number can be 0 (if this pointer has expired). 370 bool expired() const { return use_count() == 0; } 373 // have expired, the shared_ptr will be empty. We have to be careful 431 CHECK(!weak_this_.expired()) << "No shared_ptr owns this object"; 435 CHECK(!weak_this_.expired()) << "No shared_ptr owns this object"; 459 CHECK(ptr->weak_this_.expired()) << "Object already owned by a shared_ptr";
|
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/ |
shared_ptr.h | 158 // a bad_weak_ptr exception when ptr is expired. Is it better to provide this 298 // Create an empty (i.e. already expired) weak_ptr. 365 // Note that this number can be 0 (if this pointer has expired). 370 bool expired() const { return use_count() == 0; } 373 // have expired, the shared_ptr will be empty. We have to be careful 431 CHECK(!weak_this_.expired()) << "No shared_ptr owns this object"; 435 CHECK(!weak_this_.expired()) << "No shared_ptr owns this object"; 459 CHECK(ptr->weak_this_.expired()) << "Object already owned by a shared_ptr";
|
/external/dhcpcd-6.8.2/ |
ipv6nd.c | 330 rap->expired = seconds ? 0 : 1; 360 if (rap->lifetime && rap->expired) { 364 rap->expired = 0; 370 if (rap->lifetime && !rap->expired) { 374 rap->expired = 1; 860 rap->expired = 0; 1241 !rap->expired && 1267 if (rap->iface == ifp && !rap->expired) 1281 !rap->expired && 1426 uint8_t expired, valid, validone; local 1523 uint8_t expired = 0; local [all...] |
ipv6nd.h | 59 uint8_t expired; member in struct:ra
|
/external/libdrm/amdgpu/ |
amdgpu_cs.c | 344 uint32_t *expired) 351 if (NULL == expired) 360 *expired = false; 367 *expired = true;
|
/libcore/ojluni/src/main/java/java/util/ |
ResourceBundle.java | 322 * The flag indicating this bundle has expired in the cache. 324 private volatile boolean expired; field in class:ResourceBundle 328 * the cache (yet) or has expired. [all...] |
/packages/apps/Email/provider_src/com/android/email/activity/setup/ |
AccountSecurity.java | 67 private static final String EXTRA_PASSWORD_EXPIRED = "EXPIRED"; 127 boolean expired) { 130 intent.putExtra(expired ? EXTRA_PASSWORD_EXPIRED : EXTRA_PASSWORD_EXPIRING, true); 570 * or has expired. If the user clicks OK, we launch the password settings screen. 575 private static final String BUNDLE_KEY_EXPIRED = "expired"; 580 public static PasswordExpirationDialog newInstance(String accountName, boolean expired) { 584 b.putBoolean(BUNDLE_KEY_EXPIRED, expired); 593 * Note, this actually creates two slightly different dialogs (for expiring vs. expired) 598 final boolean expired = getArguments().getBoolean(BUNDLE_KEY_EXPIRED); 599 final int titleId = expired [all...] |
/external/fio/engines/ |
windowsaio.c | 239 BOOL expired = FALSE; local 245 expired = TRUE; 247 expired = TRUE; 249 return expired;
|
/external/libdrm/tests/amdgpu/ |
basic_tests.c | 174 uint32_t expired; local 233 0, &expired); 262 uint32_t expired; local 314 0, &expired); 346 uint32_t expired; local 392 0, &expired); 419 uint32_t expired; local 479 0, &expired); 481 CU_ASSERT_EQUAL(expired, true);
|
cs_tests.c | 127 uint32_t expired; local 158 0, &expired);
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
AsyncContinuation.java | 295 (_expired?",expired":""); 483 protected void expired() method in class:AsyncContinuation 764 expired(); method 1076 public void expired() method in class:AsyncContinuation.AsyncTimeout [all...] |
/frameworks/base/core/java/android/view/animation/ |
Animation.java | 857 final boolean expired = normalizedTime >= 1.0f || isCanceled(); 858 mMore = !expired; 881 if (expired) { [all...] |
/external/jemalloc/include/jemalloc/internal/ |
prof.h | 192 bool expired; member in struct:prof_tdata_s 389 } else if (unlikely(tdata->expired)) {
|
/external/jetty/src/java/org/eclipse/jetty/security/authentication/ |
DigestAuthenticator.java | 287 long expired = request.getTimeStamp()-_maxNonceAgeMs; local 289 while (nonce!=null && nonce._ts<expired)
|
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
TimerModel.java | 61 import static com.android.deskclock.data.Timer.State.EXPIRED; 96 * The ids of expired timers for which the ringer is ringing. Not all expired timers have their 97 * ids in this collection. If a timer was already expired when the app was started its id will 111 /** A mutable copy of the expired timers. */ 117 * from killing this application while expired timers are actively firing. 160 * @return all expired timers in their expiration order 181 * @return the timer that last expired and is still expired now; {@code null} if no timers are 182 * expired 747 final List<Timer> expired = getExpiredTimers(); local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/ |
shared_ptr.h | 861 if (expired()) 878 return expired() ? __shared_ptr<element_type, _Lp>() 889 expired() const // never throws function in class:tr1::__weak_ptr 1108 if (this->expired()) 1120 return this->expired() ? shared_ptr<_Tp>()
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/ |
shared_ptr.h | 861 if (expired()) 878 return expired() ? __shared_ptr<element_type, _Lp>() 889 expired() const // never throws function in class:tr1::__weak_ptr 1108 if (this->expired()) 1120 return this->expired() ? shared_ptr<_Tp>()
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/ |
shared_ptr.h | 861 if (expired()) 878 return expired() ? __shared_ptr<element_type, _Lp>() 889 expired() const // never throws function in class:tr1::__weak_ptr 1108 if (this->expired()) 1120 return this->expired() ? shared_ptr<_Tp>()
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/ |
shared_ptr.h | 861 if (expired()) 878 return expired() ? __shared_ptr<element_type, _Lp>() 889 expired() const // never throws function in class:tr1::__weak_ptr 1108 if (this->expired()) 1120 return this->expired() ? shared_ptr<_Tp>()
|