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

/macosx-10.10/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h172 T* get() const { return value_; }
173 T* operator->() const { return value_; }
174 T& operator*() const { return *value_; }
176 bool operator==(T* p) const { return value_ == p; }
177 bool operator!=(T* p) const { return value_ != p; }
180 return value_ == ptr.get();
184 return value_ != ptr.get();
191 T* value_; member in class:testing::internal::linked_ptr
195 if (link_.depart()) delete value_;
199 value_
[all...]
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...]
H A Dgtest-port.h1357 explicit ValueHolder(const T& value) : value_(value) {}
1359 T* pointer() { return &value_; }
1362 T value_; member in class:testing::internal::ThreadLocal::ValueHolder
1425 ThreadLocal() : value_() {}
1426 explicit ThreadLocal(const T& value) : value_(value) {}
1427 T* pointer() { return &value_; }
1428 const T* pointer() const { return &value_; }
1429 const T& get() const { return value_; }
1430 void set(const T& value) { value_ = value; }
1432 T value_; member in class:testing::internal::ThreadLocal
[all...]
H A Dgtest-internal.h384 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
394 return fp.u_.value_;
441 RawType value_; // The raw floating-point number. member in union:testing::internal::FloatingPoint::FloatingPointUnion
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/src/
H A Dviewx.cpp376 c4_Reference &c4_Reference::operator = (const c4_Reference &value_) { argument
378 value_.GetData(result);
411 c4_IntRef &c4_IntRef::operator = (t4_i32 value_) { argument
412 SetData(c4_Bytes(&value_, sizeof value_));
431 c4_LongRef &c4_LongRef::operator = (t4_i64 value_) { argument
432 SetData(c4_Bytes(&value_, sizeof value_));
447 c4_FloatRef &c4_FloatRef::operator = (double value_) { argument
448 float v = (float)value_; // lose
464 operator =(double value_) argument
481 operator =(const c4_Bytes &value_) argument
578 operator =(const char *value_) argument
595 operator =(const c4_View &value_) argument
[all...]
H A Dremap.cpp91 virtual bool InsertRows(int pos_, c4_Cursor value_, int count_ = 1);
391 bool c4_HashViewer::InsertRows(int pos_, c4_Cursor value_, int count_) { argument
395 int i = Lookup(value_, n);
397 _base.SetAt(i, *value_); // replace existing
414 _base.InsertAt(pos_, *value_);
489 virtual bool InsertRows(int pos_, c4_Cursor value_, int count_ = 1);
665 bool c4_BlockedViewer::InsertRows(int pos_, c4_Cursor value_, int count_) {
679 bv.InsertAt(pos_, *value_, count_);
813 virtual bool InsertRows(int pos_, c4_Cursor value_, int count_ = 1);
891 bool c4_OrderedViewer::InsertRows(int, c4_Cursor value_, in
[all...]
H A Dcustom.cpp216 virtual bool InsertRows(int pos_, c4_Cursor value_, int count_ = 1);
253 bool c4_SliceViewer::InsertRows(int pos_, c4_Cursor value_, int count_) { argument
261 _parent.InsertAt(pos_, *value_, count_);
396 virtual bool InsertRows(int pos_, c4_Cursor value_, int count_ = 1);
441 bool c4_PairViewer::InsertRows(int pos_, c4_Cursor value_, int count_) { argument
442 _parent.InsertAt(pos_, *value_, count_);
443 _argView.InsertAt(pos_, *value_, count_);
532 //virtual bool InsertRows(int pos_, c4_Cursor value_, int count_=1);
H A Dcolumn.h126 void SetInt(int index_, t4_i32 value_);
H A Dcolumn.cpp1306 void c4_ColOfInts::SetInt(int index_, t4_i32 value_) {
1307 Set(index_, c4_Bytes(&value_, sizeof value_));
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dbytestrieiterator.cpp28 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) {
50 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) {
136 value_=readValue(pos, node>>1);
174 value_=-1; // no real value for str
203 value_=value;
H A Ducharstrieiterator.cpp28 maxLength_(maxStringLength), value_(0), stack_(NULL) {
50 maxLength_(maxStringLength), value_(0), stack_(NULL) {
141 value_=readValue(pos, node&0x7fff);
143 value_=readNodeValue(pos, node);
206 value_=value;
/macosx-10.10/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/
H A Dgtest-typed-test.h51 T value_;
70 TypeParam n = this->value_;
H A Dgtest.h477 key_(a_key), value_(a_value) {
487 return value_.c_str();
492 value_ = new_value;
499 internal::String value_; member in class:testing::TestProperty
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/tcl/
H A Dmk4tcl.h60 bool MatchOneKeyword(const char *value_, const c4_String &crit_);
219 int AddCondition(int id_, Tcl_Obj *props_, Tcl_Obj *value_);
220 bool MatchOneString(int id_, const char *value_, const char *crit_);
241 void tcl_ListObjAppendElement(Tcl_Obj *obj_, Tcl_Obj *value_);
H A Dmk4tcl.cpp149 bool MatchOneKeyword(const char *value_, const c4_String &crit_) { argument
157 const char *limit = value_ + strlen(value_) - n;
158 while (value_ <= limit) {
159 c4_String s(value_, n);
163 while (*++value_)
164 if ((*value_ == cu || *value_ == cl) && !isalnum(value_[ - 1]))
1165 int TclSelector::AddCondition(int id_, Tcl_Obj *props_, Tcl_Obj *value_) { argument
1173 MatchOneString(int id_, const char *value_, const char *crit_) argument
1346 tcl_ListObjAppendElement(Tcl_Obj *obj_, Tcl_Obj *value_) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/unicode/
H A Ducharstrie.h328 int32_t getValue() const { return value_; }
333 value_=-1; // no real value for str
348 int32_t value_; member in class:UCharsTrie::Iterator
H A Dbytestrie.h314 int32_t getValue() const { return value_; }
330 int32_t value_; member in class:BytesTrie::Iterator
/macosx-10.10/cxxfilt-11/cxxfilt/include/opcode/
H A Dcgen.h1320 (CGEN_CPU_DESC, int opindex_, CGEN_FIELDS *fields_, int value_);
1325 (CGEN_CPU_DESC, int opindex_, CGEN_FIELDS *fields_, bfd_vma value_);
/macosx-10.10/apache-793/httpd/modules/http/
H A Dmod_mime.c246 const char *value_, const char* ext)
252 char *value = apr_pstrdup(cmd->pool, value_);
245 add_extension_info(cmd_parms *cmd, void *m_, const char *value_, const char* ext) argument

Completed in 239 milliseconds