HomeSort by relevance Sort by last modified time
    Searched defs:kExternal (Results 1 - 3 of 3) sorted by null

  /external/libbrillo/brillo/
any_internal_impl.h 222 enum StorageType { kExternal, kContained };
223 Buffer() : external_ptr_(nullptr), storage_(kExternal) {}
242 return (storage_ == kExternal) ? external_ptr_
246 return (storage_ == kExternal)
254 if (storage_ == kExternal) {
263 storage_ = kExternal;
290 storage_ = kExternal;
319 return (storage_ == kExternal && external_ptr_ == nullptr);
336 if (storage_ == kExternal) {
338 destination->storage_ = kExternal;
    [all...]
  /external/skia/src/gpu/
GrResourceCache.h 193 kExternal,
  /external/v8/src/
property-details.h 98 kExternal,
114 static Representation External() { return Representation(kExternal); }
132 if (kind_ == kExternal && other.kind_ == kNone) return true;
133 if (kind_ == kExternal && other.kind_ == kExternal) return false;
134 if (kind_ == kNone && other.kind_ == kExternal) return false;
136 DCHECK(kind_ != kExternal);
137 DCHECK(other.kind_ != kExternal);
181 bool IsExternal() const { return kind_ == kExternal; }

Completed in 145 milliseconds