Searched refs:value_ (Results 26 - 50 of 175) sorted by relevance

1234567

/external/chromium/base/
H A Dplatform_file.h158 explicit PassPlatformFile(PlatformFile* value) : value_(value) {
165 PlatformFile temp = *value_;
166 *value_ = kInvalidPlatformFileValue;
171 PlatformFile* value_; member in class:base::PassPlatformFile
H A Dtools_sanity_unittest.cc18 explicit TOOLS_SANITY_TEST_CONCURRENT_THREAD(bool *value) : value_(value) {}
21 *value_ = true;
29 bool *value_; member in class:base::__anon1788::TOOLS_SANITY_TEST_CONCURRENT_THREAD
/external/chromium/chrome/browser/extensions/
H A Dextension_menu_manager.h75 ContextList() : value_(0) {}
76 explicit ContextList(Context context) : value_(context) {}
77 ContextList(const ContextList& other) : value_(other.value_) {}
80 value_ = other.value_;
84 return value_ == other.value_;
92 return (value_ & context) > 0;
96 value_ |
100 uint32 value_; // A bitmask of Context values. member in class:ExtensionMenuItem::ContextList
[all...]
/external/v8/src/
H A Dlithium.h51 LOperand() : value_(KindField::encode(INVALID)) { }
53 Kind kind() const { return KindField::decode(value_); }
54 int index() const { return static_cast<int>(value_) >> kKindFieldWidth; }
63 bool Equals(LOperand* other) const { return value_ == other->value_; }
67 value_ = KindField::encode(kind);
68 value_ |= index << kKindFieldWidth;
82 unsigned value_; member in class:v8::internal::LOperand
167 Policy policy() const { return PolicyField::decode(value_); }
169 value_
[all...]
H A Dsplay-tree.h111 value_(value),
123 Value value() { return value_; }
131 Value value_; member in class:v8::internal::SplayTree::Node
143 Value& value() { return node_->value_; }
144 void set_value(const Value& value) { node_->value_ = value; }
H A Ddateparser.h178 return value_;
186 return value_;
190 return static_cast<char>(value_);
202 return tag_ == kSymbolTag && (value_ == '-' || value_ == '+');
206 return 44 - value_;
209 return IsKeywordType(TIME_ZONE_NAME) && length_ == 1 && value_ == 0;
212 return IsUnknown() && value_ == character;
250 value_(value) { }
254 int value_; member in struct:v8::internal::DateParser::DateToken
[all...]
H A Dmirror-debugger.js432 this.value_ = value;
466 return this.value_;
515 return this.value_ ? 'true' : 'false';
532 return %NumberToString(this.value_);
549 return this.value_.length;
554 return this.value_.substring(0, maxLength) +
557 return this.value_;
580 return %_ClassOf(this.value_);
585 return MakeMirror(%DebugGetProperty(this.value_, 'constructor'));
590 return MakeMirror(%DebugGetProperty(this.value_, 'prototyp
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfloat-weight.h37 FloatWeight(float f) : value_(f) {}
39 FloatWeight(const FloatWeight &w) : value_(w.value_) {}
42 value_ = w.value_;
47 return ReadType(strm, &value_);
51 return WriteType(strm, value_);
58 } u = { value_ };
62 const float &Value() const { return value_; }
65 float value_; member in class:fst::FloatWeight
[all...]
/external/chromium/webkit/glue/
H A Dcpp_binding_example.cc15 value->Set(value_);
20 value_.Set(value);
25 CppVariant value_; member in class:__anon3357::PropertyCallbackExample
/external/chromium/chrome/browser/
H A Daccessibility_events.h168 value_ = value;
173 const std::string& value() const { return value_; }
176 std::string value_; member in class:AccessibilityComboBoxInfo
198 value_ = value;
203 const std::string& value() const { return value_; }
209 std::string value_; member in class:AccessibilityTextBoxInfo
231 value_ = value;
236 const std::string& value() const { return value_; }
239 std::string value_; member in class:AccessibilityListBoxInfo
/external/webp/src/utils/
H A Dbit_reader.h27 // The Boolean decoder needs to maintain infinite precision on the value_ field.
29 // for value_. Left bits (MSB) gets zeroed and shifted away when value_ falls
35 // 8bit window of value_: either we shift them in, while keeping the position of
39 // Example, for BITS=16: here is the content of value_ for both strategies:
44 // [unused][value_][cached bits][0] || [unused...][value_][cached bits]
56 // -> we're back to height active 'value_' bits (marked 'v') and BITS cached
119 bit_t value_; // current value member in struct:VP8BitReader
174 br->value_ |
[all...]
H A Dbit_writer.c53 const int32_t bits = bw->value_ >> s;
55 bw->value_ -= bits << s;
107 bw->value_ += split + 1;
115 bw->value_ <<= shift;
125 bw->value_ += split + 1;
132 bw->value_ <<= 1;
159 bw->value_ = 0;
H A Dhuffman_encode.c126 int value_; member in struct:__anon16292
141 assert(t1->value_ != t2->value_);
142 return (t1->value_ < t2->value_) ? -1 : 1;
153 bit_depths[tree->value_] = level;
219 tree[idx].value_ = j;
248 tree[k].value_ = -1;
257 bit_depths[tree[0].value_] = 1;
/external/chromium/testing/gtest/test/
H A Dgtest-param-test_test.cc267 explicit DogAdder(const char* a_value) : value_(a_value) {}
268 DogAdder(const DogAdder& other) : value_(other.value_.c_str()) {}
272 value_ = other.value_;
277 msg << value_.c_str() << other.value_.c_str();
281 return value_ < other.value_;
283 const ::testing::internal::String& value() const { return value_; }
286 ::testing::internal::String value_; member in class:DogAdder
320 int value_; member in class:IntWrapper
819 int value_; member in class:Unstreamable
[all...]
/external/gtest/test/
H A Dgtest-param-test_test.cc267 explicit DogAdder(const char* a_value) : value_(a_value) {}
268 DogAdder(const DogAdder& other) : value_(other.value_.c_str()) {}
272 value_ = other.value_;
277 msg << value_.c_str() << other.value_.c_str();
281 return value_ < other.value_;
283 const ::testing::internal::String& value() const { return value_; }
286 ::testing::internal::String value_; member in class:DogAdder
320 int value_; member in class:IntWrapper
819 int value_; member in class:Unstreamable
[all...]
/external/libvpx/libvpx/third_party/googletest/src/test/
H A Dgtest-param-test_test.cc267 explicit DogAdder(const char* a_value) : value_(a_value) {}
268 DogAdder(const DogAdder& other) : value_(other.value_.c_str()) {}
272 value_ = other.value_;
277 msg << value_.c_str() << other.value_.c_str();
281 return value_ < other.value_;
283 const ::testing::internal::String& value() const { return value_; }
286 ::testing::internal::String value_; member in class:DogAdder
320 int value_; member in class:IntWrapper
819 int value_; member in class:Unstreamable
[all...]
/external/protobuf/gtest/test/
H A Dgtest-param-test_test.cc208 explicit DogAdder(const char* value) : value_(value) {}
209 DogAdder(const DogAdder& other) : value_(other.value_.c_str()) {}
213 value_ = other.value_;
218 msg << value_.c_str() << other.value_.c_str();
222 return value_ < other.value_;
224 const ::testing::internal::String& value() const { return value_; }
227 ::testing::internal::String value_; member in class:DogAdder
261 int value_; member in class:IntWrapper
[all...]
/external/chromium/net/base/
H A Dnet_log.h232 return value_;
239 const std::string value_; member in class:net::NetLogStringParameter
248 : name_(name), value_(value) {}
251 return value_;
258 const int value_; member in class:net::NetLogIntegerParameter
267 : name_(name), value_(value) {}
270 return value_;
277 const NetLog::Source value_; member in class:net::NetLogSourceParameter
/external/chromium/base/memory/
H A Dsingleton_unittest.cc23 int value_; member in class:__anon1692::IntSingleton
34 int value_; member in class:__anon1692::Init5Singleton
40 instance->value_ = 5;
46 return &IntSingleton::GetInstance()->value_;
50 return &Init5Singleton::GetInstance()->value_;
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp5 T value_; member in struct:test0::Num
8 Num(T value) : value_(value) {}
9 T get() const { return value_; }
24 return a.value_ + b.value_;
28 value_ += b.value_;
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-actions.h166 delete value_;
167 value_ = new T(x);
172 delete value_;
173 value_ = NULL;
177 static bool IsSet() { return value_ != NULL; }
189 return value_ == NULL ?
190 internal::BuiltInDefaultValue<T>::Get() : *value_;
193 static const T* value_; member in class:testing::DefaultValue
242 const T* DefaultValue<T>::value_ = NULL; member in class:testing::DefaultValue
454 explicit ReturnAction(R value) : value_(valu
498 Result value_; member in class:testing::internal::ReturnAction::Impl
503 R value_; member in class:testing::internal::ReturnAction
616 T value_; member in class:testing::internal::ReturnRefOfCopyAction::Impl
621 const T value_; member in class:testing::internal::ReturnRefOfCopyAction
649 const T2 value_; member in class:testing::internal::AssignAction
697 const A value_; member in class:testing::internal::SetArgumentPointeeAction
[all...]
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
209 value_ = value_ + step_;
215 virtual const T* Current() const { return &value_; }
230 base_(other.base_), value_(other.value_), index_(other.index_),
237 T value_; member in class:testing::internal::RangeGenerator::Iterator
297 value_.reset();
305 // value_ is updated here and not in Advance() because Advance()
310 if (value_
339 mutable scoped_ptr<const T> value_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
209 value_ = value_ + step_;
215 virtual const T* Current() const { return &value_; }
230 base_(other.base_), value_(other.value_), index_(other.index_),
237 T value_; member in class:testing::internal::RangeGenerator::Iterator
297 value_.reset();
305 // value_ is updated here and not in Advance() because Advance()
310 if (value_
339 mutable scoped_ptr<const T> value_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
209 value_ = value_ + step_;
215 virtual const T* Current() const { return &value_; }
230 base_(other.base_), value_(other.value_), index_(other.index_),
237 T value_; member in class:testing::internal::RangeGenerator::Iterator
297 value_.reset();
305 // value_ is updated here and not in Advance() because Advance()
310 if (value_
339 mutable scoped_ptr<const T> value_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
209 value_ = value_ + step_;
215 virtual const T* Current() const { return &value_; }
230 base_(other.base_), value_(other.value_), index_(other.index_),
237 T value_; member in class:testing::internal::RangeGenerator::Iterator
297 value_.reset();
305 // value_ is updated here and not in Advance() because Advance()
310 if (value_
339 mutable scoped_ptr<const T> value_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]

Completed in 1745 milliseconds

1234567