HomeSort by relevance Sort by last modified time
    Searched defs:bool (Results 201 - 225 of 1477) sorted by null

1 2 3 4 5 6 7 891011>>

  /system/vold/
Keymaster.h 49 explicit operator bool() { return mError == km::ErrorCode::OK; }
54 bool updateCompletely(TI& input, TO* output) {
62 bool finish(std::string* output);
86 bool updateCompletely(const char* input, size_t inputLen,
102 explicit operator bool() { return mDevice.get() != nullptr; }
104 bool generateKey(const km::AuthorizationSet& inParams, std::string* key);
106 bool deleteKey(const std::string& key);
108 bool upgradeKey(const std::string& oldKey, const km::AuthorizationSet& inParams,
115 bool isSecure();
120 static bool hmacKeyGenerated
    [all...]
  /art/cmdline/
cmdline_result.h 38 operator bool() const {
43 bool IsSuccess() const { return status_ == kSuccess; }
45 bool IsError() const { return status_ != kSuccess; }
  /bootable/recovery/otautil/include/otautil/
rangeset.h 38 bool PushBack(Range range);
50 bool Overlaps(const RangeSet& other) const;
104 explicit operator bool() const {
112 bool operator==(const RangeSet& other) const {
117 bool operator!=(const RangeSet& other) const {
157 bool Overlaps(size_t start, size_t len) const;
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XBoolean.java 112 public boolean bool() method in class:XBoolean
160 return m_val == obj2.bool();
  /external/curl/docs/examples/
multi-debugcallback.c 37 typedef char bool; typedef
43 bool nohex)
  /external/deqp/framework/common/
tcuMaybe.hpp 50 operator bool (void) const { return !!m_ptr; }
  /external/deqp/framework/egl/
egluUnique.cpp 45 UniqueDisplay::operator bool (void) const
63 UniqueSurface::operator bool (void) const
81 UniqueContext::operator bool (void) const
111 UniqueImage::operator bool (void) const
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
RecordReader.java 17 boolean bool(String name); method in interface:RecordReader
RecordWriter.java 17 void bool(String name, boolean value); method in interface:RecordWriter
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
RecordReader.java 16 boolean bool(String name); method in interface:RecordReader
RecordWriter.java 16 void bool(String name, boolean value); method in interface:RecordWriter
  /external/libchrome/base/
callback_internal.h 57 bool (*is_cancelled)(const BindStateBase*));
72 bool IsCancelled() const {
84 bool (*is_cancelled_)(const BindStateBase*);
106 bool is_null() const { return !bind_state_; }
107 explicit operator bool() const { return !is_null(); }
111 bool IsCancelled() const;
120 bool EqualsInternal(const CallbackBase& other) const;
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_lock/
s-c1.c 116 int bool; local
127 bool = ((nbthOK[i] + nbthNOK[i]) >= nbthTOT);
146 bool = ((nbthOK[i] + nbthNOK[i]) >= nbthTOT);
153 /* When every thread has passed the lock call, bool is true.
156 if (bool) {
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
socket_option.hpp 39 explicit boolean(bool v)
45 boolean& operator=(bool v)
52 bool value() const
57 // Convert to bool.
58 operator bool() const
64 bool operator!() const
223 linger(bool e, int t)
230 void enabled(bool value)
236 bool enabled() const
  /external/pdfium/core/fxcrt/
maybe_owned.h 44 bool IsOwned() const { return !!m_pOwnedObj; }
67 bool operator==(const MaybeOwned& that) const { return Get() == that.Get(); }
68 bool operator==(const std::unique_ptr<T, D>& ptr) const {
71 bool operator==(T* ptr) const { return Get() == ptr; }
73 bool operator!=(const MaybeOwned& that) const { return !(*this == that); }
74 bool operator!=(const std::unique_ptr<T, D> ptr) const {
77 bool operator!=(T* ptr) const { return !(*this == ptr); }
79 explicit operator bool() const { return !!m_pObj; }
unowned_ptr.h 67 bool operator==(const UnownedPtr& that) const { return Get() == that.Get(); }
68 bool operator!=(const UnownedPtr& that) const { return !(*this == that); }
69 bool operator<(const UnownedPtr& that) const {
74 bool operator==(const U* that) const {
79 bool operator!=(const U* that) const {
92 explicit operator bool() const { return !!m_pObj; }
108 inline bool operator==(const U* lhs, const UnownedPtr<T>& rhs) {
113 inline bool operator!=(const U* lhs, const UnownedPtr<T>& rhs) {
  /external/perfetto/include/perfetto/base/
scoped_file.h 48 explicit operator bool() const { return t_ != InvalidValue; }
  /external/perfetto/include/perfetto/ipc/
async_result.h 30 // std::pair<unique_ptr<T>, bool> with syntactic sugar. It is used as callback
40 bool has_more = false,
48 bool success() const { return !!msg_; }
49 explicit operator bool() const { return success(); }
51 bool has_more() const { return has_more_; }
52 void set_has_more(bool has_more) { has_more_ = has_more; }
64 bool has_more_ = false;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowDatabaseUtils.java 21 Boolean bool = (Boolean) value; local
22 if (bool) {
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
OwningPtr.h 63 operator bool() const { return Ptr != 0; }
64 bool operator!() const { return Ptr == 0; }
116 operator bool() const { return Ptr != 0; }
117 bool operator!() const { return Ptr == 0; }
  /external/xz-embedded/userspace/
xz_config.h 29 typedef unsigned char bool; typedef
  /frameworks/base/tools/aapt2/util/
Maybe.h 78 explicit operator bool() const;
106 bool nothing_;
245 Maybe<T>::operator bool() const {
288 typename std::enable_if<has_eq_op<T, U>::value, bool>::type operator==(const Maybe<T>& a,
299 typename std::enable_if<has_eq_op<T, U>::value, bool>::type operator==(const Maybe<T>& a,
306 typename std::enable_if<has_eq_op<T, U>::value, bool>::type operator!=(const Maybe<T>& a,
312 typename std::enable_if<has_lt_op<T, U>::value, bool>::type operator<(const Maybe<T>& a,
  /frameworks/native/libs/vr/libpdx/private/pdx/
channel_handle.h 35 bool valid() const { return value_ >= 0; }
36 explicit operator bool() const { return valid(); }
  /frameworks/native/libs/vr/libpdx_uds/private/uds/
channel_event_set.h 23 explicit operator bool() const {
46 explicit operator bool() const {
  /frameworks/native/services/vr/performanced/
cpu_set.h 29 bool IsRoot() const { return parent_ == nullptr; }
56 static void SetPrefixEnabled(bool enabled) { prefix_enabled_ = enabled; }
57 static bool prefix_enabled_;
88 operator bool() const { return root_set_ != nullptr; }

Completed in 744 milliseconds

1 2 3 4 5 6 7 891011>>