Searched defs:Value (Results 1 - 25 of 527) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/dotzlib/DotZLib/
H A DChecksumImpl.cs53 public uint Value { get { return _current; } } property in class:DotZLib.ChecksumGeneratorBase
H A DDotZLib.cs119 uint Value { get; } property in interface:DotZLib.ChecksumGenerator
/external/webrtc/src/system_wrappers/source/
H A Datomic32_mac.cc56 WebRtc_Word32 Atomic32::Value() const function in class:webrtc::Atomic32
H A Datomic32_posix.cc60 WebRtc_Word32 Atomic32::Value() const function in class:webrtc::Atomic32
H A Datomic32_win.cc68 WebRtc_Word32 Atomic32::Value() const function in class:webrtc::Atomic32
/external/valgrind/main/memcheck/
H A Dmc_errors.c97 } Value; member in union:_MC_Error::__anon33008
413 extra->Err.Value.szB );
415 if (extra->Err.Value.origin_ec)
416 mc_pp_origin( extra->Err.Value.origin_ec,
417 extra->Err.Value.otag & 3 );
422 extra->Err.Value.szB );
424 if (extra->Err.Value.origin_ec)
425 mc_pp_origin( extra->Err.Value.origin_ec,
426 extra->Err.Value.otag & 3 );
718 extra.Err.Value
[all...]
/external/tinyxml/
H A Dtinyxml.h449 const char *Value() const { return value.c_str (); } function in class:TiXmlNode
452 /** Return Value() as a std::string. If you only use STL,
453 this is more efficient than calling Value().
727 const char* Value() const { return value.c_str (); } ///< Return the value of this attribute. function in class:TiXmlAttribute
/external/tinyxml2/
H A Dtinyxml2.h467 const char* Value() const { return value.GetStr(); } function in class:tinyxml2::XMLNode
468 /** Set the Value of an XML node.
469 @sa Value()
774 const char* Value() const { return value.GetStr(); } ///< The value of the attribute. function in class:tinyxml2::XMLAttribute
845 /// Get the name of an element (which is the Value() of the node.)
846 const char* Name() const { return Value(); }
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcache.h413 virtual StateId Value() const { return s_; } function in class:fst::CacheStateIterator
444 const Arc& Value() const { return state_->arcs[i_]; } function in class:fst::CacheArcIterator
H A Dcomplement.h194 virtual StateId Value() const { return s_; } function in class:fst::StateIterator
236 virtual const A& Value() const { function in class:fst::ArcIterator
242 arc_ = aiter_->Value();
H A Dconst-fst.h131 StateId s = siter.Value();
149 const A &arc = aiter.Value();
349 StateId Value() const { return s_; } function in class:fst::StateIterator
375 const A& Value() const { return arcs_[i_]; } function in class:fst::ArcIterator
H A Dfactor-weight.h59 // pair<W, W> Value() const;
71 pair<W, W> Value() const { return make_pair(W::One(), W::One()); } // unused function in class:fst::IdentityFactor
87 pair< StringWeight<L, S>, StringWeight<L, S> > Value() const { function in class:fst::StringFactor
89 StringWeight<L, S> w1(iter.Value());
92 w2.PushBack(iter.Value());
115 pair< GallicWeight<L, W, S>, GallicWeight<L, W, S> > Value() const { function in class:fst::GallicFactor
117 GallicWeight<L, W, S> w1(iter.Value().first, weight_.Value2());
118 GallicWeight<L, W, S> w2(iter.Value().second, W::One());
259 const A &arc = ait.Value();
267 const pair<Weight, Weight> &p = fit.Value();
[all...]
H A Dfloat-weight.h62 const float &Value() const { return value_; } function in class:fst::FloatWeight
71 volatile float v1 = w1.Value();
72 volatile float v2 = w2.Value();
82 return w1.Value() <= w2.Value() + delta && w2.Value() <= w1.Value() + delta;
86 if (w.Value() == kPosInfinity)
88 else if (w.Value() == kNegInfinity)
90 else if (w.Value() !
[all...]
H A Dfst.h225 virtual StateId Value() const = 0; // Current state (when !Done)
244 // StateId s = siter.Value();
263 StateId Value() const { return data_.base ? data_.base->Value() : s_; } function in class:fst::StateIterator
296 virtual const A& Value() const = 0; // Current state (when !Done)
318 // StdArc &arc = aiter.Value();
342 const Arc& Value() const { function in class:fst::ArcIterator
343 return data_.base ? data_.base->Value() : data_.arcs[i_];
H A Dmap.h100 const A &arc = aiter.Value();
180 StateId s = siter.Value();
185 ofst->AddArc(s, (*mapper)(aiter.Value()));
364 A aarc(aiter.Value());
552 StateId Value() const { return s_; } function in class:fst::StateIterator
656 return LogArc(arc.ilabel, arc.olabel, arc.weight.Value(), arc.nextstate);
671 return StdArc(arc.ilabel, arc.olabel, arc.weight.Value(), arc.nextstate);
735 Label l = w1.Size() == 1 ? iter1.Value() : 0;
805 fst_->AddArc(p, ToArc(i ? 0 : l, iter1.Value(), AW::One(), n));
808 s = s + osymbols_->Find(iter1.Value());
[all...]
H A Dmutable-fst.h133 // StdArc arc = aiter.Value();
151 const Arc& Value() const { return data_.base->Value(); } function in class:fst::MutableArcIterator
H A Dpartition.h264 const T Value() { function in class:fst::PartitionIterator
H A Drelabel.h63 StateId s = siter.Value();
66 A arc = aiter.Value();
111 ipairs.push_back(make_pair(syms_iter.Value(),
121 opairs.push_back(make_pair(syms_iter.Value(),
210 input_map_[syms_iter.Value()] = new_isymbols->Find(syms_iter.Symbol());
220 output_map_[syms_iter.Value()] =
275 A arc = aiter.Value();
418 StateId Value() const { return s_; } function in class:fst::StateIterator
H A Dstring-weight.h168 const L& Value() const { return init_ ? first_ : *iter_; } function in class:fst::StringWeightIterator
200 const L& Value() const { return iter_ == rest_.rend() ? first_ : *iter_; } function in class:fst::StringWeightReverseIterator
243 L label = iter.Value();
254 return iter.Value() != kStringBad;
262 rw.PushFront(iter.Value());
270 h ^= h<<1 ^ iter.Value();
282 // PushBack(iter.Value());
297 if (iter1.Value() != iter2.Value())
321 else if (iter.Value()
[all...]
H A Dsymbol-table.h343 // return the Value() of the current symbol (in64 key)
344 int64 Value(void) { function in class:fst::SymbolTableIterator
H A Dvector-fst.h332 StateId s = siter.Value();
339 const A &arc = aiter.Value();
678 StateId Value() const { return s_; } function in class:fst::StateIterator
704 const A& Value() const { return arcs_[i_]; } function in class:fst::ArcIterator
737 virtual const A& Value() const { return state_->arcs[i_]; } function in class:fst::MutableArcIterator
/external/skia/src/core/
H A DSkImageFilter.cpp389 struct Value { struct in class:CacheImpl
390 Value(Key key, const SkBitmap& bitmap, const SkIPoint& offset) function in struct:CacheImpl::Value
395 static const Key& GetKey(const Value& v) {
402 SkTDynamicHash<Value, Key> fData;
407 Value* v = fData.find(key);
417 Value* v = fData.find(key);
426 fData.add(new Value(key, result, offset));
435 SkTDynamicHash<Value, Key>::Iter iter(&fData);
438 Value* v = &*iter;
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h487 const char *Value() const { return value.c_str (); } function in class:TiXmlNode
490 /** Return Value() as a std::string. If you only use STL,
491 this is more efficient than calling Value().
812 const char* Value() const { return value.c_str(); } ///< Return the value of this attribute. function in class:TiXmlAttribute
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...

Completed in 3718 milliseconds

1234567891011>>