Searched defs:Value (Results 1 - 25 of 38) sorted by relevance

12

/external/zlib/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/v8/src/
H A Dtoken.h209 enum Value { enum in class:v8::internal::Token
217 static const char* Name(Value tok) {
223 static bool IsAssignmentOp(Value tok) {
227 static bool IsBinaryOp(Value op) {
231 static bool IsCompareOp(Value op) {
235 static bool IsBitOp(Value op) {
239 static bool IsUnaryOp(Value op) {
243 static bool IsCountOp(Value op) {
250 static const char* String(Value tok) {
257 static int Precedence(Value to
[all...]
H A Dscopeinfo.h204 struct Value { struct in class:v8::internal::ContextSlotCache
205 Value(Variable::Mode mode, int index) { function in struct:v8::internal::ContextSlotCache::Value
213 inline Value(uint32_t value) : value_(value) {} function in struct:v8::internal::ContextSlotCache::Value
H A Dheap-profiler.h116 typedef NumberAndSizeInfo Value; typedef in struct:v8::internal::JSObjectsClusterTreeConfig
118 static const Value kNoValue;
156 typedef JSObjectsClusterTree* Value; typedef in struct:v8::internal::JSObjectsRetainerTreeConfig
158 static const Value kNoValue;
204 typedef JSObjectsCluster Value; typedef in struct:v8::internal::BASE_EMBEDDED::ClusterEqualityConfig
206 static const Value kNoValue;
H A Dzone.h211 // typedef Value: the value type
220 typedef typename Config::Value Value; typedef in class:v8::internal::ZoneSplayTree
263 Node(const Key& key, const Value& value)
269 Value value() { return value_; }
276 Value value_;
288 Value& value() { return node_->value_; }
289 void set_value(const Value& value) { node_->value_ = value; }
/external/webkit/WebCore/xml/
H A DXPathValue.h54 // Copying Value objects makes their data partially shared, so care has to be taken when dealing with copies.
55 class Value { class in namespace:WebCore::XPath
59 Value(unsigned value) : m_type(NumberValue), m_bool(false), m_number(value) {} function in class:WebCore::XPath::Value
60 Value(unsigned long value) : m_type(NumberValue), m_bool(false), m_number(value) {} function in class:WebCore::XPath::Value
61 Value(double value) : m_type(NumberValue), m_bool(false), m_number(value) {} function in class:WebCore::XPath::Value
63 Value(const char* value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {} function in class:WebCore::XPath::Value
64 Value(const String& value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {} function in class:WebCore::XPath::Value
65 Value(const NodeSet& value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {} function in class:WebCore::XPath::Value
66 Value(Node* value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create()) { m_data->m_nodeSet.append(value); } function in class:WebCore::XPath::Value
69 template<typename T> Value(
72 Value(NodeSet& value, const AdoptTag&) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create()) { value.swap(m_data->m_nodeSet); } function in class:WebCore::XPath::Value
95 inline Value::Value(bool value) function in class:WebCore::XPath::Value
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DValue.java28 public abstract class Value class
44 * Returns this Value as a Category1Value.
48 throw new IllegalArgumentException("Value is not a Category 1 value [" + this.getClass().getName() + "]");
52 * Returns this Value as a Category2Value.
56 throw new IllegalArgumentException("Value is not a Category 2 value [" + this.getClass().getName() + "]");
61 * Returns this Value as an IntegerValue.
65 throw new IllegalArgumentException("Value is not an integer value [" + this.getClass().getName() + "]");
69 * Returns this Value as a LongValue.
73 throw new IllegalArgumentException("Value is not a long value [" + this.getClass().getName() + "]");
77 * Returns this Value a
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
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 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 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 Dpartition.h264 const T Value() { function in class:fst::PartitionIterator
H A Drelabel.h64 StateId s = siter.Value();
67 A arc = aiter.Value();
112 ipairs.push_back(make_pair(syms_iter.Value(),
122 opairs.push_back(make_pair(syms_iter.Value(),
211 input_map_[syms_iter.Value()] = new_isymbols->Find(syms_iter.Symbol());
221 output_map_[syms_iter.Value()] =
276 A arc = aiter.Value();
419 StateId Value() const { return s_; } function in class:fst::StateIterator
H A Dsymbol-table.h344 // return the Value() of the current symbol (in64 key)
345 int64 Value(void) { function in class:fst::SymbolTableIterator
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 Dconst-fst.h131 StateId s = siter.Value();
149 const A &arc = aiter.Value();
347 StateId Value() const { return s_; } function in class:fst::StateIterator
373 const A& Value() const { return arcs_[i_]; } function in class:fst::ArcIterator
H A Dfactor-weight.h61 // pair<W, W> Value() const;
73 pair<W, W> Value() const { return make_pair(W::One(), W::One()); } // unused function in class:fst::IdentityFactor
89 pair< StringWeight<L, S>, StringWeight<L, S> > Value() const { function in class:fst::StringFactor
91 StringWeight<L, S> w1(iter.Value());
94 w2.PushBack(iter.Value());
117 pair< GallicWeight<L, W, S>, GallicWeight<L, W, S> > Value() const { function in class:fst::GallicFactor
119 GallicWeight<L, W, S> w1(iter.Value().first, weight_.Value2());
120 GallicWeight<L, W, S> w2(iter.Value().second, W::One());
261 const A &arc = ait.Value();
269 const pair<Weight, Weight> &p = fit.Value();
[all...]
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...]
/external/v8/tools/
H A Dstats-viewer.py146 value = counter.Value()
247 ui_counter.Set(counter.Value())
334 def Value(self): member in class:Counter
392 def Value(self): member in class:ChromeCounter
/external/webkit/JavaScriptCore/jit/
H A DJITStubCall.h89 , m_returnType(Value)
192 ASSERT(m_returnType == Value || m_returnType == Cell);
194 if (m_returnType == Value)
213 ASSERT(m_returnType == Value || m_returnType == VoidPtr || m_returnType == Int || m_returnType == Cell);
228 enum { Void, VoidPtr, Int, Value, Cell } m_returnType; enumerator in enum:JSC::JITStubCall::__anon6487
/external/webkit/WebCore/bindings/v8/
H A DV8Binding.h52 typedef v8::Handle<v8::Value> Value; typedef in class:WebCore::V8Binding
73 String v8NonStringValueToWebCoreString(v8::Handle<v8::Value>);
74 String v8ValueToWebCoreString(v8::Handle<v8::Value> value);
81 AtomicString v8NonStringValueToAtomicWebCoreString(v8::Handle<v8::Value>);
82 AtomicString v8ValueToAtomicWebCoreString(v8::Handle<v8::Value> value);
102 int toInt32(v8::Handle<v8::Value> value, bool& ok);
105 inline int toInt32(v8::Handle<v8::Value> value)
111 inline float toFloat(v8::Local<v8::Value> value)
116 inline long long toInt64(v8::Local<v8::Value> valu
[all...]
/external/chromium/base/
H A Dpe_image_unittest.cc84 enum Value { enum
95 int GetExpectedValue(Value value, DWORD os) {
117 // Contains the expected value, for each enumerated property (Value), and the
118 // OS version: [Value][os_version]
H A Dregistry.h163 // Name and Value functions
165 CTP Value() const { return value_; } function in class:RegistryValueIterator
H A Dvalues.h5 // This file specifies a recursive data storage class called Value
33 class Value;
40 typedef std::vector<Value*> ValueVector;
41 typedef std::map<std::wstring, Value*> ValueMap;
43 // The Value class is the base class for Values. A Value can be
44 // instantiated via the Create*Value() factory methods, or by directly
46 class Value { class
48 virtual ~Value();
50 // Convenience methods for creating Value object
107 explicit Value(ValueType type) : type_(type) {} function in class:Value
[all...]
H A Dvalues.cc16 Value* CopyWithoutEmptyChildren(Value* node) {
19 case Value::TYPE_LIST: {
24 Value* child_copy = CopyWithoutEmptyChildren(*it);
35 case Value::TYPE_DICTIONARY: {
40 Value* child = NULL;
43 Value* child_copy = CopyWithoutEmptyChildren(child);
62 ///////////////////// Value ////////////////////
64 Value::~Value() {
[all...]

Completed in 274 milliseconds

12