Searched defs:m_value (Results 26 - 50 of 128) sorted by relevance

123456

/external/emma/ant/ant14/com/vladium/emma/ant/
H A DPropertyElement.java34 return m_value;
44 m_value = value;
54 private String m_name, m_value; field in class:PropertyElement
H A DStringValue.java27 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
/external/lldb/include/lldb/Core/
H A DThreadSafeValue.h29 m_value (),
35 m_value (value),
50 value = m_value;
60 return m_value;
67 m_value = value;
75 m_value = value;
85 T m_value; member in class:lldb_private::ThreadSafeValue
/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
H A DParsedDirective.java28 private String m_value; field in class:ParsedDirective
36 m_value = value;
42 return m_value;
/external/smack/src/com/novell/sasl/client/
H A DParsedDirective.java28 private String m_value; field in class:ParsedDirective
36 m_value = value;
42 return m_value;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DNullable.h18 : m_value()
22 : m_value(value)
26 : m_value(other.m_value)
31 m_value = other.m_value;
38 m_value = value;
41 const T& get() const { ASSERT(!m_isNull); return m_value; }
42 T& get() { ASSERT(!m_isNull); return m_value; }
47 operator UnspecifiedBoolType() const { return m_isNull ? 0 : &m_value; }
60 T m_value; member in class:blink::Nullable
[all...]
H A DScriptValue.h51 , m_value(value.IsEmpty() ? nullptr : SharedPersistent<v8::Value>::create(value, scriptState->isolate()))
58 , m_value(value.m_value)
77 m_value = value.m_value;
88 return *m_value == *value.m_value;
130 return !m_value.get() || m_value->isEmpty();
135 m_value
146 RefPtr<SharedPersistent<v8::Value> > m_value; member in class:blink::FINAL
[all...]
H A DScriptPromiseResolverTest.cpp36 , m_value(value)
43 *m_value = toCoreString(value.v8Value()->ToString());
47 String* m_value; member in class:blink::__anon10901::Function
H A DScriptPromiseTest.cpp60 , m_value(value)
67 *m_value = toCoreString(value.v8Value()->ToString());
71 String* m_value; member in class:blink::__anon10902::Function
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DInterpolableValue.h48 double value() const { return m_value; }
49 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(m_value); }
55 double m_value; member in class:blink::InterpolableNumber
58 : m_value(value)
72 bool value() const { return m_value; }
73 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(m_value); }
79 bool m_value; member in class:blink::InterpolableBool
82 : m_value(value)
145 AnimatableValue* value() const { return m_value.get(); }
146 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(m_value); }
[all...]
H A DStringKeyframe.h37 CSSValue* value() const { return m_value.get(); }
53 RefPtrWillBeMember<CSSValue> m_value; member in class:blink::StringKeyframe::PropertySpecificKeyframe
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableValueKeyframe.h37 AnimatableValue* value() const { return m_value.get(); }
38 virtual const PassRefPtrWillBeRawPtr<AnimatableValue> getAnimatableValue() const OVERRIDE FINAL { return m_value; }
51 RefPtrWillBeMember<AnimatableValue> m_value; member in class:blink::AnimatableValueKeyframe::PropertySpecificKeyframe
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSLineBoxContainValue.h47 bool equals(const CSSLineBoxContainValue& other) const { return m_value == other.m_value; }
48 LineBoxContain value() const { return m_value; }
53 LineBoxContain m_value; member in class:blink::CSSLineBoxContainValue
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDimension.h49 , m_value(0)
55 , m_value(value)
65 double value() const { return m_value; }
69 return m_type == other.m_type && m_value == other.m_value;
75 double m_value; member in class:blink::HTMLDimension
/external/chromium_org/third_party/WebKit/Source/core/html/imports/
H A DHTMLImportState.h48 : m_value(value)
53 bool isValid() const { return m_value != Invalid; }
54 bool operator==(const HTMLImportState& other) const { return m_value == other.m_value; }
56 bool operator<=(const HTMLImportState& other) const { return m_value <= other.m_value; }
59 Value peekValueForDebug() const { return m_value; }
66 Value m_value; member in class:blink::HTMLImportState
72 return m_value;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGBoolean.h49 PassRefPtr<SVGBoolean> clone() const { return create(m_value); }
58 bool value() const { return m_value; }
59 void setValue(bool value) { m_value = value; }
65 : m_value(value)
69 bool m_value; member in class:blink::SVGBoolean
H A DSVGNumber.h54 float value() const { return m_value; }
55 void setValue(float value) { m_value = value; }
72 float m_value; member in class:blink::SVGNumber
H A DSVGPoint.h58 const FloatPoint& value() const { return m_value; }
59 void setValue(const FloatPoint& value) { m_value = value; }
61 float x() const { return m_value.x(); }
62 float y() const { return m_value.y(); }
63 void setX(float f) { m_value.setX(f); }
64 void setY(float f) { m_value.setY(f); }
84 FloatPoint m_value; member in class:blink::SVGPoint
H A DSVGString.h56 PassRefPtr<SVGString> clone() const { return create(m_value); }
62 virtual String valueAsString() const OVERRIDE { return m_value; }
63 void setValueAsString(const String& value, ExceptionState&) { m_value = value; }
69 const String& value() const { return m_value; }
70 void setValue(const String& value) { m_value = value; }
82 , m_value(value)
86 String m_value; member in class:blink::SVGString
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DAnimationValue.h67 , m_value(value)
72 float value() const { return m_value; }
75 float m_value; member in class:blink::FINAL
85 m_value = *value;
89 const TransformOperations* value() const { return &m_value; }
92 TransformOperations m_value; member in class:blink::FINAL
102 m_value = *value;
106 const FilterOperations* value() const { return &m_value; }
109 FilterOperations m_value; member in class:blink::FINAL
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_Double_info.java33 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 ();
H A DCONSTANT_Float_info.java33 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 ();
H A DCONSTANT_Integer_info.java34 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 ();
H A DCONSTANT_Long_info.java35 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 ();
H A DCONSTANT_Utf8_info.java37 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 ();

Completed in 1395 milliseconds

123456