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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerCodeRef.h 64 : m_value(0)
70 : m_value((void*)value)
72 ASSERT_VALID_CODE_POINTER(m_value);
77 : m_value((void*)value)
79 ASSERT_VALID_CODE_POINTER(m_value);
84 : m_value((void*)value)
86 ASSERT_VALID_CODE_POINTER(m_value);
91 : m_value((void*)value)
93 ASSERT_VALID_CODE_POINTER(m_value);
98 : m_value((void*)value
118 void* m_value; member in class:JSC::FunctionPtr
149 void* m_value; member in class:JSC::ReturnAddressPtr
193 void* m_value; member in class:JSC::MacroAssemblerCodePtr
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptValue.h 58 m_value = v8::Persistent<v8::Value>::New(value);
60 V8GCController::registerGlobalHandle(SCRIPTVALUE, this, m_value);
66 if (value.m_value.IsEmpty())
69 m_value = v8::Persistent<v8::Value>::New(value.m_value);
71 V8GCController::registerGlobalHandle(SCRIPTVALUE, this, m_value);
82 if (value.m_value.IsEmpty())
85 m_value = v8::Persistent<v8::Value>::New(value.m_value);
87 V8GCController::registerGlobalHandle(SCRIPTVALUE, this, m_value);
163 mutable v8::Persistent<v8::Value> m_value; member in class:WebCore::ScriptValue
    [all...]
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
  /external/webkit/Source/WebCore/css/
CSSPrimitiveValueMappings.h 55 m_value.ident = CSSValueNone;
58 m_value.ident = CSSValueHidden;
61 m_value.ident = CSSValueInset;
64 m_value.ident = CSSValueGroove;
67 m_value.ident = CSSValueRidge;
70 m_value.ident = CSSValueOutset;
73 m_value.ident = CSSValueDotted;
76 m_value.ident = CSSValueDashed;
79 m_value.ident = CSSValueSolid;
82 m_value.ident = CSSValueDouble
    [all...]
CSSLineBoxContainValue.cpp 35 : m_value(value)
43 if (m_value & LineBoxContainBlock)
45 if (m_value & LineBoxContainInline) {
50 if (m_value & LineBoxContainFont) {
55 if (m_value & LineBoxContainGlyphs) {
60 if (m_value & LineBoxContainReplaced) {
65 if (m_value & LineBoxContainInlineBox) {
MediaQueryListListener.h 45 bool operator==(const MediaQueryListListener& other) const { return m_value == other.m_value; }
48 MediaQueryListListener(ScriptValue value) : m_value(value) { }
50 ScriptValue m_value; member in class:WebCore::MediaQueryListListener
  /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/Source/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
StylePendingImage.h 42 virtual WrappedImagePtr data() const { return m_value; }
46 virtual PassRefPtr<CSSValue> cssValue() const { return m_value; }
47 CSSImageValue* cssImageValue() const { return m_value; }
64 : m_value(value)
68 CSSImageValue* m_value; // Not retained; it owns us. member in class:WebCore::StylePendingImage
  /external/webkit/Source/WebCore/webaudio/
AudioParam.cpp 44 m_value = value;
49 if (m_smoothedValue == m_value) {
55 m_smoothedValue += (m_value - m_smoothedValue) * m_smoothingConstant;
58 if (fabs(m_smoothedValue - m_value) < SnapThreshold) // FIXME: the threshold needs to be adjustable depending on range - but this is OK general purpose value.
59 m_smoothedValue = m_value;
  /external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
ParsedDirective.java 28 private String m_value; field in class:ParsedDirective
36 m_value = value;
42 return m_value;
  /external/smack/src/com/novell/sasl/client/
ParsedDirective.java 28 private String m_value; field in class:ParsedDirective
36 m_value = value;
42 return m_value;
  /external/webkit/Source/JavaScriptCore/runtime/
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
  /external/webkit/Source/WebCore/bridge/
IdentifierRep.h 46 int number() const { return m_isString ? 0 : m_value.m_number; }
47 const char* string() const { return m_isString ? m_value.m_string : 0; }
53 m_value.m_number = number;
59 m_value.m_string = fastStrDup(name);
71 } m_value; member in class:WebCore::IdentifierRep
  /external/webkit/Source/JavaScriptCore/wtf/text/
TextPosition.h 91 int zeroBasedInt() const { return m_value; }
92 int convertAsOneBasedInt() const { return m_value + 1; }
95 bool operator==(ZeroBasedNumber other) { return m_value == other.m_value; }
102 ZeroBasedNumber(int value) : m_value(value) {}
103 int m_value; member in class:WTF::ZeroBasedNumber
112 int oneBasedInt() const { return m_value; }
113 int convertAsZeroBasedInt() const { return m_value - 1; }
114 ZeroBasedNumber convertToZeroBased() const { return ZeroBasedNumber::fromZeroBasedInt(m_value - 1); }
116 bool operator==(OneBasedNumber other) { return m_value == other.m_value;
124 int m_value; member in class:WTF::OneBasedNumber
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptValue.h 50 ScriptValue(JSC::JSGlobalData& globalData, JSC::JSValue value) : m_value(globalData, value) {}
53 JSC::JSValue jsValue() const { return m_value.get(); }
61 bool hasNoValue() const { return !m_value; }
63 bool operator==(const ScriptValue& other) const { return m_value == other.m_value; }
75 JSC::Strong<JSC::Unknown> m_value; member in class:WebCore::ScriptValue
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binomial_heap_base_/
find_fn_imps.hpp 53 return m_p_max->m_value;
67 if (Cmp_Fn::operator()(m_p_max->m_value, p_cur->m_value))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binomial_heap_base_/
find_fn_imps.hpp 53 return m_p_max->m_value;
67 if (Cmp_Fn::operator()(m_p_max->m_value, p_cur->m_value))
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/binomial_heap_base_/
find_fn_imps.hpp 53 return m_p_max->m_value;
67 if (Cmp_Fn::operator()(m_p_max->m_value, p_cur->m_value))
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/binomial_heap_base_/
find_fn_imps.hpp 53 return m_p_max->m_value;
65 if (Cmp_Fn::operator()(m_p_max->m_value, p_cur->m_value))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/cc_hash_table_map_/
debug_no_store_hash_fn_imps.hpp 47 { debug_base::check_key_exists(PB_DS_V2F(p->m_value)); }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pairing_heap_/
find_fn_imps.hpp 49 return base_type::m_p_root->m_value;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/cc_hash_table_map_/
debug_no_store_hash_fn_imps.hpp 47 { debug_base::check_key_exists(PB_DS_V2F(p->m_value)); }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pairing_heap_/
find_fn_imps.hpp 49 return base_type::m_p_root->m_value;

Completed in 335 milliseconds

1 2 3 4 5 6 7 8 91011>>