HomeSort by relevance Sort by last modified time
    Searched refs:value_ (Results 1 - 25 of 360) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/http/
http_version.h 16 HttpVersion() : value_(0) { }
19 HttpVersion(uint16 major, uint16 minor) : value_(major << 16 | minor) { }
23 return value_ >> 16;
28 return value_ & 0xffff;
34 return value_ == v.value_;
37 return value_ != v.value_;
40 return value_ > v.value_;
53 uint32 value_; \/\/ Packed as <major>:<minor> member in class:net::HttpVersion
    [all...]
  /external/chromium_org/tools/gn/
output_file.h 17 OutputFile() : value_() {}
19 : value_(str.data(), str.size()) {
22 std::string& value() { return value_; }
23 const std::string& value() const { return value_; }
27 return SourceFile(build_settings->build_dir().value() + value_);
31 return value_ == other.value_;
34 return value_ != other.value_;
37 return value_ < other.value_
41 std::string value_; member in class:OutputFile
    [all...]
source_dir.cc 26 : value_(p.data(), p.size()) {
27 if (!EndsWithSlash(value_))
28 value_.push_back('/');
29 AssertValueSourceDirString(value_);
33 value_.swap(*s);
34 if (!EndsWithSlash(value_))
35 value_.push_back('/');
36 AssertValueSourceDirString(value_);
54 ret.value_.assign(p.data(), p.size());
55 NormalizePath(&ret.value_);
    [all...]
source_file.cc 16 : value_(p.data(), p.size()) {
17 DCHECK(!value_.empty());
18 DCHECK(value_[0] == '/');
19 DCHECK(!EndsWithSlash(value_));
29 DCHECK(value_.find('/') != std::string::npos);
30 size_t last_slash = value_.rfind('/');
31 return std::string(&value_[last_slash + 1],
32 value_.size() - last_slash - 1);
39 DCHECK(value_.find('/') != std::string::npos);
40 size_t last_slash = value_.rfind('/')
    [all...]
token.cc 9 Token::Token() : type_(INVALID), value_() {
16 value_(v),
21 return type_ == IDENTIFIER && value_ == v;
25 return type_ == STRING && value_ == v;
source_dir.h 54 bool is_null() const { return value_.empty(); }
55 const std::string& value() const { return value_; }
60 return value_.size() >= 2 && value_[0] == '/' && value_[1] == '/';
78 return base::StringPiece(&value_[1], value_.size() - 1);
84 return value_ == other.value_;
90 return value_ < other.value_
95 std::string value_; member in class:SourceDir
    [all...]
source_file.h 28 bool is_null() const { return value_.empty(); }
29 const std::string& value() const { return value_; }
42 return value_.size() >= 2 && value_[0] == '/' && value_[1] == '/';
59 return base::StringPiece(&value_[1], value_.size() - 1);
63 return value_ == other.value_;
69 return value_ < other.value_
75 std::string value_; member in class:SourceFile
    [all...]
  /external/chromium_org/tools/clang/blink_gc_plugin/
NeedsTracing.h 16 bool IsUnneeded() { return value_ == kUnneeded; }
17 bool IsUnknown() { return value_ == kUnknown; }
18 bool IsNeeded() { return value_ == kNeeded; }
20 return value_ > other.value_ ? value_ : other.value_;
23 return value_ == other.value_;
27 NeedsTracing(Value value) : value_(value) {
28 Value value_; member in class:NeedsTracing
    [all...]
  /external/chromium_org/content/common/
inter_process_time_ticks_converter.cc 17 : remote_lower_bound_(remote_lower_bound.value_),
18 remote_upper_bound_(remote_upper_bound.value_) {
19 int64 target_range = local_upper_bound.value_ - local_lower_bound.value_;
20 int64 source_range = remote_upper_bound.value_ - remote_lower_bound.value_;
28 local_lower_bound.value_ + (target_range - source_range) / 2;
30 DCHECK_LE(local_lower_bound.value_,
31 ToLocalTimeTicks(remote_lower_bound).value_);
32 DCHECK_GE(local_upper_bound.value_,
    [all...]
inter_process_time_ticks_converter.h 79 int ToInt32() const { return value_; }
85 LocalTimeDelta(int value) : value_(value) {}
87 int value_; member in class:content::LocalTimeDelta
97 return base::TimeTicks::FromInternalValue(value_);
101 return LocalTimeTicks(value_ + delta.value_);
107 LocalTimeTicks(int64 value) : value_(value) {}
109 int64 value_; member in class:content::LocalTimeTicks
122 RemoteTimeDelta(int value) : value_(value) {}
124 int value_; member in class:content::RemoteTimeDelta
142 int64 value_; member in class:content::RemoteTimeTicks
    [all...]
  /external/chromium_org/dbus/
object_path.cc 14 return IsValidObjectPath(value_);
18 return value_ < that.value_;
22 return value_ == that.value_;
26 return value_ != that.value_;
file_descriptor.cc 13 base::File auto_closer(value_);
18 return value_;
24 return value_;
28 base::File file(value_);
31 file.TakePlatformFile(); // Prevent |value_| from being closed by |file|.
file_descriptor.h 38 FileDescriptor() : value_(-1), owner_(false), valid_(false) {}
39 explicit FileDescriptor(int value) : value_(value), owner_(false),
52 value_ = value;
66 int value_; member in class:dbus::FileDescriptor
  /external/chromium_org/base/
sys_info_internal.h 18 : value_(F()) { }
22 T value() { return value_; }
25 const T value_; member in class:base::internal::LazySysInfoValue
  /external/chromium_org/base/prefs/
scoped_user_pref_update.cc 17 value_(NULL) {}
24 if (!value_)
25 value_ = service_->GetMutableUserPref(path_.c_str(), type);
26 return value_;
30 if (value_) {
32 value_ = NULL;
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
atomic32_mac.cc 22 : value_(initial_value) {
30 return OSAtomicIncrement32Barrier(&value_);
34 return OSAtomicDecrement32Barrier(&value_);
38 return OSAtomicAdd32Barrier(value, &value_);
42 return OSAtomicAdd32Barrier(-value, &value_);
46 return OSAtomicCompareAndSwap32Barrier(compare_value, new_value, &value_);
atomic32_win.cc 22 : value_(initial_value) {
23 COMPILE_ASSERT(sizeof(value_) == sizeof(LONG),
33 reinterpret_cast<volatile LONG*>(&value_)));
38 reinterpret_cast<volatile LONG*>(&value_)));
42 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_),
47 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_),
53 reinterpret_cast<volatile LONG*>(&value_),
  /external/chromium_org/net/disk_cache/blockfile/
addr.h 71 Addr() : value_(0) {}
72 explicit Addr(CacheAddr address) : value_(address) {}
74 value_ = ((file_type << kFileTypeOffset) & kFileTypeMask) |
80 CacheAddr value() const { return value_; }
82 value_ = address;
86 return (value_ & kInitializedMask) != 0;
90 return (value_ & kFileTypeMask) == 0;
98 return static_cast<FileType>((value_ & kFileTypeMask) >> kFileTypeOffset);
103 return value_ & kFileNameMask;
105 return ((value_ & kFileSelectorMask) >> kFileSelectorOffset)
183 CacheAddr value_; member in class:disk_cache::Addr
    [all...]
  /external/chromium_org/ppapi/shared_impl/
socket_option_data.cc 9 SocketOptionData::SocketOptionData() : type_(TYPE_INVALID), value_(0) {}
18 *out_value = value_ != 0;
25 *out_value = value_;
31 value_ = value ? 1 : 0;
36 value_ = value;
  /frameworks/base/media/mca/filterfw/native/core/
statistics.h 51 : gain_(gain), n_(0), value_(0.0f) {}
54 value_ = n_++ ? gain_ * measurement + (1.0f - gain_) * value_ : measurement;
60 float Output() const { return value_; }
65 float value_; member in class:android::filterfw::RCFilter
  /art/runtime/
lock_word-inl.h 27 return (value_ >> kThinLockOwnerShift) & kThinLockOwnerMask;
32 return (value_ >> kThinLockCountShift) & kThinLockCountMask;
37 MonitorId mon_id = static_cast<MonitorId>(value_ & ~(kStateMask << kStateShift));
43 return static_cast<size_t>(value_ << kStateSize);
46 inline LockWord::LockWord() : value_(0) {
51 : value_(mon->GetMonitorId() | (kStateFat << kStateShift)) {
57 return (value_ >> kHashShift) & kHashMask;
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_value.cpp 294 value_.int_ = 0;
297 value_.real_ = 0.0;
300 value_.string_ = 0;
305 value_.map_ = new ObjectValues();
309 value_.array_ = arrayAllocator()->newArray();
312 value_.map_ = mapAllocator()->newMap();
316 value_.bool_ = false;
332 value_.uint_ = value;
343 value_.int_ = value;
356 value_.int_ = value
    [all...]
  /external/jsoncpp/chromium-overrides/src/lib_json/
json_value.cpp 288 value_.int_ = 0;
291 value_.real_ = 0.0;
294 value_.string_ = 0;
299 value_.map_ = new ObjectValues();
303 value_.array_ = arrayAllocator()->newArray();
306 value_.map_ = mapAllocator()->newMap();
310 value_.bool_ = false;
326 value_.uint_ = value;
337 value_.int_ = value;
350 value_.int_ = value
    [all...]
  /external/jsoncpp/src/lib_json/
json_value.cpp 284 value_.int_ = 0;
287 value_.real_ = 0.0;
290 value_.string_ = 0;
295 value_.map_ = new ObjectValues();
299 value_.array_ = arrayAllocator()->newArray();
302 value_.map_ = mapAllocator()->newMap();
306 value_.bool_ = false;
322 value_.uint_ = value;
333 value_.int_ = value;
346 value_.int_ = value
    [all...]
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
tote.cc 57 value_[sub0] += idelta;
62 value_[sub1] += idelta;
67 value_[sub2] += idelta;
82 if (value_[sub1] < value_[alloc]) {alloc = sub1;}
83 if (value_[sub2] < value_[alloc]) {alloc = sub2;}
86 value_[alloc] = idelta;
96 if (top_value < value_[sub]) {
97 top_value = value_[sub]
    [all...]

Completed in 485 milliseconds

1 2 3 4 5 6 7 8 91011>>