Searched refs:value_ (Results 1 - 25 of 335) sorted by relevance

1234567891011>>

/external/chromium_org/net/http/
H A Dhttp_version.h16 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/clang/blink_gc_plugin/
H A DNeedsTracing.h16 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_(valu
28 Value value_; member in class:NeedsTracing
[all...]
/external/chromium_org/content/common/
H A Dinter_process_time_ticks_converter.cc17 : 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...]
H A Dinter_process_time_ticks_converter.h79 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/
H A Dobject_path.cc14 return IsValidObjectPath(value_);
18 return value_ < that.value_;
22 return value_ == that.value_;
26 return value_ != that.value_;
H A Dfile_descriptor.cc13 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|.
H A Dfile_descriptor.h38 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
H A Dobject_path.h29 explicit ObjectPath(const std::string& value) : value_(value) {}
32 const std::string& value() const { return value_; }
47 std::string value_; member in class:dbus::ObjectPath
/external/chromium_org/tools/gn/
H A Doutput_file.h17 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_ < othe
41 std::string value_; member in class:OutputFile
[all...]
H A Dsource_dir.cc26 : 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...]
H A Dsource_file.cc16 : 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_
[all...]
H A Dtoken.cc9 Token::Token() : type_(INVALID), value_() {
16 value_(v),
21 return type_ == IDENTIFIER && value_ == v;
25 return type_ == STRING && value_ == v;
H A Dsource_dir.h54 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_ < othe
95 std::string value_; member in class:SourceDir
[all...]
H A Dsource_file.h28 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_ < othe
75 std::string value_; member in class:SourceFile
[all...]
/external/chromium_org/base/prefs/
H A Dscoped_user_pref_update.cc17 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/
H A Datomic32_mac.cc22 : 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_);
H A Datomic32_win.cc22 : 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_),
H A Datomic32_posix.cc22 : value_(initial_value) {
30 return __sync_fetch_and_add(&value_, 1) + 1;
34 return __sync_fetch_and_sub(&value_, 1) - 1;
38 int32_t return_value = __sync_fetch_and_add(&value_, value);
44 int32_t return_value = __sync_fetch_and_sub(&value_, value);
50 return __sync_bool_compare_and_swap(&value_, compare_value, new_value);
/external/chromium_org/base/
H A Dsys_info_internal.h18 : value_(F()) { }
22 T value() { return value_; }
25 const T value_; member in class:base::internal::LazySysInfoValue
/external/chromium_org/ppapi/shared_impl/
H A Dsocket_option_data.cc9 SocketOptionData::SocketOptionData() : type_(TYPE_INVALID), value_(0) {}
18 *out_value = value_ != 0;
25 *out_value = value_;
31 value_ = value ? 1 : 0;
36 value_ = value;
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
H A Djson_value.cpp294 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_
[all...]
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp288 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_
[all...]
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp284 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_
[all...]
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dtote.cc57 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_[su
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Daddr.cc13 return value_ & kStartBlockMask;
17 DCHECK(is_block_file() || !value_);
18 return ((value_ & kNumBlocksMask) >> kNumBlocksOffset) + 1;
25 value_ = kInitializedMask | file_number;
31 return !value_;
44 return !value_;

Completed in 1007 milliseconds

1234567891011>>