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

1 2 3

  /external/webkit/WebKit/win/
WebSerializedJSValue.h 54 RefPtr<WebCore::SerializedScriptValue> m_value; member in class:WebSerializedJSValue
  /external/emma/ant/ant14/com/vladium/emma/ant/
StringValue.java 27 if (m_value == null)
29 m_value = new StringBuffer (value);
33 m_value.append (separator);
34 m_value.append (value); // no trailing separator kept
41 return m_value != null ? m_value.toString () : null;
62 private StringBuffer m_value; field in class:StringValue
PropertyElement.java 34 return m_value;
44 m_value = value;
54 private String m_name, m_value; field in class:PropertyElement
  /external/webkit/JavaScriptCore/runtime/
JSAPIValueWrapper.h 36 JSValue value() const { return m_value; }
49 , m_value(value)
54 JSValue m_value; member in class:JSC::JSAPIValueWrapper
Completion.h 44 , m_value(value)
49 JSValue value() const { return m_value; }
50 void setValue(JSValue v) { m_value = v; }
51 bool isValueCompletion() const { return m_value; }
55 JSValue m_value; member in class:JSC::Completion
JSNumberCell.h 56 double value() const { return m_value; }
84 , m_value(value)
90 , m_value(value)
96 double m_value; member in class:JSC::JSNumberCell
  /external/webkit/WebCore/bindings/js/
ScriptValue.h 46 ScriptValue(JSC::JSValue value = JSC::JSValue()) : m_value(value) {}
49 JSC::JSValue jsValue() const { return m_value.get(); }
51 String toString(ScriptState* scriptState) const { return m_value.get().toString(scriptState); }
56 bool hasNoValue() const { return m_value == JSC::JSValue(); }
62 JSC::ProtectedJSValue m_value; member in class:WebCore::ScriptValue
  /external/webkit/WebCore/bindings/v8/
SharedPersistent.h 49 m_value = value;
53 return m_value;
57 if (!m_value.IsEmpty()) {
58 m_value.Dispose();
59 m_value.Clear();
71 explicit SharedPersistent(v8::Persistent<T> value) : m_value(value) { }
72 v8::Persistent<T> m_value; member in class:WebCore::SharedPersistent
ScriptValue.h 57 m_value = v8::Persistent<v8::Value>::New(value);
59 V8GCController::registerGlobalHandle(SCRIPTVALUE, this, m_value);
65 if (value.m_value.IsEmpty())
68 m_value = v8::Persistent<v8::Value>::New(value.m_value);
70 V8GCController::registerGlobalHandle(SCRIPTVALUE, this, m_value);
81 if (value.m_value.IsEmpty())
84 m_value = v8::Persistent<v8::Value>::New(value.m_value);
86 V8GCController::registerGlobalHandle(SCRIPTVALUE, this, m_value);
153 mutable v8::Persistent<v8::Value> m_value; member in class:WebCore::ScriptValue
    [all...]
  /external/webkit/WebCore/css/
MediaQueryExp.h 46 CSSValue* value() const { return m_value.get(); }
51 && ((!other.m_value && !m_value)
52 || (other.m_value && m_value && other.m_value->cssText() == m_value->cssText()));
67 RefPtr<CSSValue> m_value; member in class:WebCore::MediaQueryExp
CSSProperty.h 37 , m_value(value)
47 m_value = other.m_value;
57 CSSValue* value() const { return m_value.get(); }
69 RefPtr<CSSValue> m_value; member in class:WebCore::CSSProperty
  /external/webkit/WebCore/editing/
SetNodeAttributeCommand.h 49 AtomicString m_value; member in class:WebCore::SetNodeAttributeCommand
  /external/webkit/WebCore/html/
HTMLParamElement.h 49 String value() const { return m_value; }
59 AtomicString m_value; member in class:WebCore::HTMLParamElement
  /external/webkit/WebCore/rendering/style/
LineClampValue.h 36 , m_value(-1)
42 , m_value(value)
46 int value() const { return m_value; }
50 bool isNone() const { return m_value == -1; }
64 int m_value; member in class:WebCore::LineClampValue
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_Double_info.java 33 public double m_value; field in class:CONSTANT_Double_info
38 m_value = value;
55 return Double.toString (m_value);
75 out.writeDouble (m_value);
83 m_value = bytes.readDouble ();
CONSTANT_Float_info.java 33 public float m_value; field in class:CONSTANT_Float_info
38 m_value = value;
55 return Float.toString (m_value);
66 out.writeFloat (m_value);
74 m_value = bytes.readFloat ();
CONSTANT_Integer_info.java 34 public int m_value; field in class:CONSTANT_Integer_info
39 m_value = value;
56 return Integer.toString (m_value);
67 out.writeInt (m_value);
75 m_value = bytes.readInt ();
CONSTANT_Long_info.java 35 public long m_value; field in class:CONSTANT_Long_info
40 m_value = value;
57 return Long.toString (m_value);
76 out.writeLong (m_value);
84 m_value = bytes.readLong ();
CONSTANT_Utf8_info.java 37 public String m_value; field in class:CONSTANT_Utf8_info
42 m_value = value;
60 return "CONSTANT_Utf8: [" + m_value + ']';
71 out.writeUTF (m_value);
79 m_value = bytes.readUTF ();
  /external/webkit/JavaScriptCore/assembler/
MacroAssemblerCodeRef.h 66 : m_value(0)
75 : m_value((void*)(value))
77 : m_value(reinterpret_cast<void*>(value))
80 ASSERT_VALID_CODE_POINTER(m_value);
83 void* value() const { return m_value; }
84 void* executableAddress() const { return m_value; }
88 void* m_value; member in class:JSC::FunctionPtr
100 : m_value(0)
105 : m_value(value)
107 ASSERT_VALID_CODE_POINTER(m_value);
119 void* m_value; member in class:JSC::ReturnAddressPtr
163 void* m_value; member in class:JSC::MacroAssemblerCodePtr
    [all...]
  /external/webkit/WebCore/bridge/
IdentifierRep.h 45 int number() const { return m_isString ? 0 : m_value.m_number; }
46 const char* string() const { return m_isString ? m_value.m_string : 0; }
52 m_value.m_number = number;
58 m_value.m_string = fastStrDup(name);
70 } m_value; member in class:WebCore::IdentifierRep
  /external/webkit/WebCore/dom/
OptionElement.h 61 String value() const { return m_value; }
62 void setValue(const String& value) { m_value = value; }
71 String m_value; member in class:WebCore::OptionElementData
  /external/webkit/WebCore/rendering/
RenderListItem.h 36 int value() const { if (!m_isValueUpToDate) updateValueNow(); return m_value; }
73 mutable int m_value; member in class:WebCore::RenderListItem
  /external/webkit/WebCore/svg/
SVGAngle.h 59 float m_value; member in class:WebCore::SVGAngle
  /external/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

Completed in 1642 milliseconds

1 2 3