HomeSort by relevance Sort by last modified time
    Searched defs:m_value (Results 26 - 50 of 59) sorted by null

12 3

  /external/webkit/JavaScriptCore/runtime/
PropertyDescriptor.h 46 JSValue value() const { return m_value; }
55 void setValue(JSValue value) { m_value = value; }
58 bool isEmpty() const { return !(m_value || m_getter || m_setter || m_seenAttributes); }
72 JSValue m_value; member in class:JSC::PropertyDescriptor
Protect.h 99 JSValue get() const { return m_value; }
100 operator JSValue() const { return m_value; }
101 JSValue operator->() const { return m_value; }
103 operator bool() const { return m_value; }
104 bool operator!() const { return !m_value; }
110 JSValue m_value; member in class:JSC::ProtectedJSValue
154 : m_value(value)
156 gcProtect(m_value);
160 : m_value(o.get())
162 gcProtect(m_value);
    [all...]
PropertySlot.h 113 m_value = value;
114 m_data.valueSlot = &m_value;
177 m_value = JSValue();
203 JSValue m_value; member in class:JSC::PropertySlot
UStringImpl.h 48 : m_value(reinterpret_cast<uintptr_t>(ptrValue) | bitValue)
58 T asPtr() const { return reinterpret_cast<T>(m_value & s_alignmentMask); }
62 m_value &= bits | s_alignmentMask;
68 m_value |= bits & ~s_alignmentMask;
74 return m_value & mask & ~s_alignmentMask;
79 uintptr_t m_value; member in class:JSC::UntypedPtrAndBitfield
Collector.h 179 template<> struct CellSize<sizeof(uint32_t)> { static const size_t m_value = 32; }; member in struct:JSC::CellSize
181 template<> struct CellSize<sizeof(uint32_t)> { static const size_t m_value = 64; }; member in struct:JSC::CellSize
183 template<> struct CellSize<sizeof(uint64_t)> { static const size_t m_value = 64; }; member in struct:JSC::CellSize
194 const size_t MINIMUM_CELL_SIZE = CellSize<sizeof(void*)>::m_value;
JSString.h 77 Fiber() : m_value(0) {}
78 Fiber(UString::Rep* string) : m_value(reinterpret_cast<intptr_t>(string)) {}
79 Fiber(Rope* rope) : m_value(reinterpret_cast<intptr_t>(rope) | 1) {}
81 Fiber(void* nonFiber) : m_value(reinterpret_cast<intptr_t>(nonFiber)) {}
112 bool isRope() { return m_value & 1; }
113 Rope* rope() { return reinterpret_cast<Rope*>(m_value & ~1); }
115 UString::Rep* string() { return reinterpret_cast<UString::Rep*>(m_value); }
117 void* nonFiber() { return reinterpret_cast<void*>(m_value); }
119 intptr_t m_value; member in class:JSC::JSString::Rope::Fiber
171 , m_value(value
361 mutable UString m_value; member in class:JSC::JSString
    [all...]
JSONObject.cpp 62 mutable JSValue m_value; member in class:JSC::PropertyNameForFunctionCall
180 if (!m_value) {
182 m_value = jsString(exec, m_identifier->ustring());
184 m_value = jsNumber(exec, m_number);
186 return m_value;
  /external/webkit/JavaScriptCore/wtf/
ThreadSpecific.h 95 T* m_value; member in class:WTF::ThreadSpecific
110 : m_value(0)
122 return m_value;
129 m_value = ptr;
ListHashSet.h 195 : m_value(value)
214 ValueArg m_value; member in struct:WTF::ListHashSetNode
226 static unsigned hash(Node* const& key) { return HashArg::hash(key->m_value); }
227 static bool equal(Node* const& a, Node* const& b) { return HashArg::equal(a->m_value, b->m_value); }
300 return &m_position->m_value;
351 static bool equal(Node* const& a, const ValueType& b) { return HashFunctions::equal(a->m_value, b); }
603 delete (*it)->m_value;
  /external/webkit/WebCore/dom/
Attribute.h 50 const AtomicString& value() const { return m_value; }
60 bool isNull() const { return m_value.isNull(); }
61 bool isEmpty() const { return m_value.isEmpty(); }
68 void setValue(const AtomicString& value) { m_value = value; }
75 : m_name(name), m_value(value), m_impl(0)
79 : m_name(nullAtom, name, nullAtom), m_value(value), m_impl(0)
85 AtomicString m_value; member in class:WebCore::Attribute
InputElement.h 93 String value() const { return m_value; }
94 void setValue(const String& value) { m_value = value; }
113 String m_value; member in class:WebCore::InputElementData
  /external/webkit/WebCore/rendering/
CounterNode.h 47 int value() const { return m_value; }
80 int m_value; member in class:WebCore::CounterNode
  /external/webkit/WebCore/xml/
XPathResult.h 78 XPath::Value m_value; member in class:WebCore::XPathResult
80 XPath::NodeSet m_nodeSet; // FIXME: why duplicate the node set stored in m_value?
XPathPredicate.h 46 Value m_value; member in class:WebCore::XPath::Number
56 Value m_value; member in class:WebCore::XPath::StringExpression
  /ndk/sources/android/stlport/test/unit/
sort_test.cpp 79 : m_index(index), m_value(value) {}
82 { return m_index == other.m_index && m_value == other.m_value; }
84 { return m_value < other.m_value; }
87 int m_index, m_value; member in struct:Data
  /external/emma/core/java12/com/vladium/util/
IntIntMap.java 119 out [0] = entry.m_value;
138 out [index] = entry.m_value;
192 currentKeyEntry.m_value = value;
269 m_value = value;
274 int m_value; field in class:IntIntMap.Entry
IntObjectMap.java 119 return entry.m_value;
178 final Object currentKeyValue = currentKeyEntry.m_value;
179 currentKeyEntry.m_value = value;
227 m_value = value;
231 Object m_value; // reference to the value [never null] field in class:IntObjectMap.Entry
ObjectIntMap.java 128 out [0] = entry.m_value;
185 currentKeyEntry.m_value = value;
265 m_value = value;
270 int m_value; field in class:ObjectIntMap.Entry
  /external/webkit/WebCore/html/
HTMLTextAreaElement.h 110 mutable String m_value; member in class:WebCore::HTMLTextAreaElement
  /external/webkit/WebCore/svg/
SVGAnimatedProperty.h 91 : m_value(SVGAnimatedPropertyTraits<AnimatedType>::null())
98 : m_value(value1)
105 : m_value(value1, value2)
110 ReturnType value() const { return SVGAnimatedPropertyTraits<AnimatedType>::toReturnType(m_value); }
111 ReturnType baseValue() const { return SVGAnimatedPropertyTraits<AnimatedType>::toReturnType(m_value); }
113 void setValue(PassType type) { m_value = type; }
114 void setBaseValue(PassType type) { m_value = type; }
122 StoredType m_value; member in class:WebCore::SVGAnimatedProperty
  /external/webkit/JavaScriptCore/qt/api/
qscriptvalue_p.h 45 Invalid -> QSVP is invalid, no assumptions should be made about class members (apart from m_value).
133 JSValueRef m_value; member in class:QScriptValuePrivate
159 if (m_value)
160 JSValueUnprotect(context(), m_value); local
165 , m_value(0)
172 , m_value(0)
179 , m_value(0)
186 , m_value(0)
193 , m_value(0)
200 , m_value(0
222 JSValueProtect(context(), m_value); local
237 JSValueProtect(context(), m_value); local
252 JSValueProtect(context(), m_value); local
267 JSValueProtect(context(), m_value); local
282 JSValueProtect(context(), m_value); local
297 JSValueProtect(context(), m_value); local
307 JSValueProtect(context(), m_value); local
317 JSValueProtect(context(), m_value); local
696 JSValueUnprotect(context(), m_value); local
    [all...]
  /external/webkit/WebCore/bindings/js/
SerializedScriptValue.h 198 PassRefPtr<SerializedScriptValue> result = adoptRef(new SerializedScriptValue(m_value));
199 m_value = SerializedScriptValueData();
206 if (m_value.type() != SerializedScriptValueData::StringType)
208 return m_value.asString();
213 if (!m_value)
215 return m_value.deserialize(exec, globalObject, m_mustCopy);
223 : m_value(value)
228 SerializedScriptValueData m_value; member in class:WebCore::SerializedScriptValue
  /external/webkit/WebCore/platform/
Length.h 39 : m_value(0)
44 : m_value(t)
49 : m_value((v * 16) | (q << 3) | t) // FIXME: Doesn't work if the passed-in value is very large!
55 : m_value(static_cast<int>(v * percentScaleFactor) * 16 | (q << 3) | t)
60 bool operator==(const Length& o) const { return m_value == o.m_value; }
61 bool operator!=(const Length& o) const { return m_value != o.m_value; }
68 int rawValue() const { return (m_value & ~0xF) / 16; }
76 LengthType type() const { return static_cast<LengthType>(m_value & 7);
190 int m_value; member in struct:WebCore::Length
    [all...]
  /external/webkit/JavaScriptCore/assembler/
AbstractMacroAssembler.h 155 : m_value(value)
161 return reinterpret_cast<intptr_t>(m_value);
164 void* m_value; member in struct:JSC::AbstractMacroAssembler::ImmPtr
175 : m_value(value)
184 : m_value(ptr.asIntptr())
192 int32_t m_value; member in struct:JSC::AbstractMacroAssembler::Imm32
  /external/webkit/WebCore/css/
CSSPrimitiveValue.h 134 double getDoubleValue() const { return m_value.num; }
139 float getFloatValue() const { return static_cast<float>(m_value.num); }
143 int getIntValue() const { return static_cast<int>(m_value.num); }
150 Counter* getCounterValue() const { return m_type != CSS_COUNTER ? 0 : m_value.counter; }
153 Rect* getRectValue() const { return m_type != CSS_RECT ? 0 : m_value.rect; }
156 RGBA32 getRGBA32Value() const { return m_type != CSS_RGBCOLOR ? 0 : m_value.rgbcolor; }
159 Pair* getPairValue() const { return m_type != CSS_PAIR ? 0 : m_value.pair; }
161 DashboardRegion* getDashboardRegionValue() const { return m_type != CSS_DASHBOARD_REGION ? 0 : m_value.region; }
213 } m_value; member in class:WebCore::CSSPrimitiveValue

Completed in 1506 milliseconds

12 3