HomeSort by relevance Sort by last modified time
    Searched defs:IsValid (Results 1 - 25 of 224) sorted by null

1 2 3 4 5 6 7 8 9

  /external/libchrome/dbus/
object_path.cc 13 bool ObjectPath::IsValid() const {
  /external/pdfium/xfa/fwl/
cfwl_eventtarget.h 25 bool IsValid() const { return m_bValid; }
  /external/v4l2_codec2/vda/
vp9_raw_bits_reader.h 32 bool IsValid() const { return valid_; }
vp9_bool_decoder.h 31 bool IsValid() const { return valid_; }
  /external/v8/src/interpreter/
bytecode-array-random-iterator.cc 24 bool BytecodeArrayRandomIterator::IsValid() const {
30 if (IsValid()) {
  /system/bt/service/common/bluetooth/
advertise_data.cc 32 bool AdvertiseData::IsValid() const {
  /art/runtime/
obj_ptr-inl.h 27 inline bool ObjPtr<MirrorType>::IsValid() const {
37 CHECK(IsValid()) << "Stale object pointer " << PtrUnchecked() << " , expected cookie "
  /external/dng_sdk/source/
dng_rational.h 57 bool IsValid () const
64 return !IsValid ();
116 bool IsValid () const
123 return !IsValid ();
dng_tone_curve.cpp 80 bool dng_tone_curve::IsValid () const
  /external/libchrome/base/files/
dir_reader_fallback.h 12 // Open a directory. If |IsValid| is true, then |Next| can be called to start
16 // After construction, IsValid returns true iff the directory was
18 bool IsValid() const { return false; }
memory_mapped_file.cc 34 if (IsValid())
51 if (!file_.IsValid()) {
90 if (IsValid())
108 bool MemoryMappedFile::IsValid() const {
scoped_temp_dir.cc 84 bool ScopedTempDir::IsValid() const {
  /external/perfetto/src/ftrace_reader/
ftrace_config.cc 28 bool IsValid(const std::string& str) {
58 if (!IsValid(event_name)) {
64 if (!IsValid(category)) {
70 if (!IsValid(app)) {
  /frameworks/native/libs/vr/libbufferhubqueue/
buffer_hub_queue_parcelable.cpp 10 bool BufferHubQueueParcelable<Magic>::IsValid() const {
11 return !!channel_parcelable_ && channel_parcelable_->IsValid();
16 if (!IsValid()) {
32 if (!IsValid()) {
48 if (IsValid()) {
  /system/bt/stack/include/
advertise_data_parser.h 75 static bool IsValid(const std::vector<uint8_t>& ad) {
  /system/bt/vendor_libs/test_vendor_lib/src/
bt_address.cc 26 bool BtAddress::IsValid(const std::string& addr) {
43 if (!IsValid(str)) return false;
  /art/compiler/optimizing/
graph_checker.h 78 bool IsValid() const {
  /device/google/contexthub/util/nanotool/
apptohostevent.cpp 30 if (!event->IsValid()) {
127 bool AppToHostEvent::IsValid() const {
  /external/google-breakpad/src/processor/
static_map_iterator-inl.h 60 if (!IsValid()) {
71 if (!IsValid()) {
83 if (!IsValid()) {
95 if (!IsValid()) {
107 if (!IsValid()) {
116 if (!IsValid()) {
138 bool StaticMapIterator<Key, Value, Compare>::IsValid() const {
  /external/libchrome/base/
sequence_token.cc 29 return token_ == other.token_ && IsValid();
36 bool SequenceToken::IsValid() const {
55 return token_ == other.token_ && IsValid();
62 bool TaskToken::IsValid() const {
  /external/libmojo/device/bluetooth/
bluetooth_uuid.cc 78 bool BluetoothUUID::IsValid() const {
  /external/libtextclassifier/util/i18n/
locale.h 45 bool IsValid() const { return is_valid_; }
  /external/pdfium/core/fpdfapi/page/
cpdf_iccprofile.h 24 bool IsValid() const { return IsSRGB() || IsSupported(); }
  /external/vulkan-validation-layers/layers/
parameter_name.h 61 ParameterName(const char *source) : source_(source) { assert(IsValid()); }
70 ParameterName(const std::string &source) : source_(source) { assert(IsValid()); }
79 ParameterName(const std::string &&source) : source_(std::move(source)) { assert(IsValid()); }
90 ParameterName(const std::string &source, const IndexVector &args) : source_(source), args_(args) { assert(IsValid()); }
102 assert(IsValid());
130 bool IsValid() {
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
AutoCompleteTextViewBindingAdapter.java 35 @BindingAdapter(value = {"android:fixText", "android:isValid"}, requireAll = false)
37 final IsValid isValid) {
38 if (fixText == null && isValid == null) {
43 public boolean isValid(CharSequence text) {
44 if (isValid != null) {
45 return isValid.isValid(text);
75 public interface IsValid {
76 boolean isValid(CharSequence text)
    [all...]

Completed in 972 milliseconds

1 2 3 4 5 6 7 8 9