Searched refs:m_value (Results 1 - 25 of 209) sorted by relevance

123456789

/external/lldb/test/lang/cpp/breakpoints/
H A Dnested.cpp10 Baz (int value):m_value(value) {}
13 printf ("%s returning: %d.\n", __FUNCTION__, m_value);
14 return m_value;
17 int m_value; member in class:Foo::Bar::Baz
23 Baz2 (int value):m_value(value) {}
26 printf ("%s returning: %d.\n", __FUNCTION__, m_value);
27 return m_value;
30 int m_value; member in class:Foo::Bar::Baz2
45 Baz (int value):m_value(value) {}
48 printf ("%s returning: %d.\n", __FUNCTION__, m_value);
52 int m_value; member in class:Baz
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DEnumClass.h93 ALWAYS_INLINE EnumClass(Value value) : m_value(value) { }
95 ALWAYS_INLINE Value value() const { return m_value; }
97 ALWAYS_INLINE bool operator==(const EnumClass other) { return m_value == other.m_value; }
98 ALWAYS_INLINE bool operator!=(const EnumClass other) { return m_value != other.m_value; }
99 ALWAYS_INLINE bool operator<(const EnumClass other) { return m_value < other.m_value; }
100 ALWAYS_INLINE bool operator<=(const EnumClass other) { return m_value <= other.m_value; }
[all...]
/external/emma/ant/ant14/com/vladium/emma/ant/
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
H A DPropertyElement.java34 return m_value;
44 m_value = value;
54 private String m_name, m_value; field in class:PropertyElement
/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/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 DSharedPersistent.h52 return m_value.newLocal(isolate);
55 bool isEmpty() { return m_value.isEmpty(); }
59 return m_value == other.m_value;
63 explicit SharedPersistent(v8::Handle<T> value, v8::Isolate* isolate) : m_value(isolate, value) { }
64 ScopedPersistent<T> m_value; member in class:blink::SharedPersistent
/external/libhevc/decoder/
H A Dihevcd_trace.h68 #define BITS_PARSE(m_str, m_value, m_ps_bitstrm, m_numbits) \
70 m_value = ihevcd_bits_get(m_ps_bitstrm, m_numbits); \
71 fprintf( g_trace.fp, "%-40s u(%d) : %d\n", m_str, m_numbits, m_value ); \
79 #define UEV_PARSE(m_str, m_value, m_ps_bitstrm) \
81 m_value = ihevcd_uev(m_ps_bitstrm); \
82 fprintf( g_trace.fp, "%-40s ue(v) : %d\n", m_str, m_value ); \
88 #define SEV_PARSE(m_str, m_value, m_ps_bitstrm) \
90 m_value = ihevcd_sev(m_ps_bitstrm); \
91 fprintf( g_trace.fp, "%-40s se(v) : %d\n", m_str, m_value ); \
109 #define AEV_TRACE(m_str, m_value, m_rang
[all...]
/external/lldb/include/lldb/Host/
H A DPredicate.h56 m_value(),
72 m_value(initial_value),
91 /// Copies the current \a m_value in a thread safe manor and returns
101 T value = m_value;
108 /// Set the contained \a m_value to \a new_value in a thread safe
127 const T old_value = m_value;
128 m_value = value;
134 /// Set some bits in \a m_value.
136 /// Logically set the bits \a bits in the contained \a m_value in a
140 /// The bits to set in \a m_value
470 T m_value; ///< The templatized value T that we are protecting access to member in class:lldb_private::Predicate
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebFilterKeyframe.cpp34 , m_value(value)
40 m_value.reset(0);
H A DWebTransformKeyframe.cpp34 , m_value(value)
40 m_value.reset(0);
50 return *m_value.get();
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadButton.cpp16 : m_value(0.)
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStylePendingImage.h46 virtual WrappedImagePtr data() const OVERRIDE { return m_value; }
48 virtual PassRefPtrWillBeRawPtr<CSSValue> cssValue() const OVERRIDE { return m_value; }
49 CSSImageValue* cssImageValue() const { return m_value->isImageValue() ? toCSSImageValue(m_value) : 0; }
50 CSSImageGeneratorValue* cssImageGeneratorValue() const { return m_value->isImageGeneratorValue() ? toCSSImageGeneratorValue(m_value) : 0; }
51 CSSCursorImageValue* cssCursorImageValue() const { return m_value->isCursorImageValue() ? toCSSCursorImageValue(m_value) : 0; }
52 CSSImageSetValue* cssImageSetValue() const { return m_value->isImageSetValue() ? toCSSImageSetValue(m_value)
76 CSSValue* m_value; // Not retained; it owns us. member in class:blink::FINAL
[all...]
H A DLineClampValue.h36 , 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:blink::LineClampValue
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontFeatureSettings.cpp33 , m_value(value)
39 return m_tag == other.m_tag && m_value == other.m_value;
/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/core/css/
H A DCSSPrimitiveValueMappings.h60 m_value.num = static_cast<double>(i);
73 m_value.num = static_cast<double>(i);
99 m_value.num = static_cast<double>(i);
112 m_value.num = static_cast<double>(i.value());
118 return LineClampValue(clampTo<int>(m_value.num), LineClampLineCount);
121 return LineClampValue(clampTo<int>(m_value.num), LineClampPercentage);
133 m_value.valueID = CSSValueAbove;
136 m_value.valueID = CSSValueBelow;
139 m_value.valueID = CSSValueLeft;
142 m_value
[all...]
H A DCSSLineBoxContainValue.cpp36 , m_value(value)
44 if (m_value & LineBoxContainBlock)
46 if (m_value & LineBoxContainInline) {
51 if (m_value & LineBoxContainFont) {
56 if (m_value & LineBoxContainGlyphs) {
61 if (m_value & LineBoxContainReplaced) {
66 if (m_value & LineBoxContainInlineBox) {
/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/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableUnknown.h53 PassRefPtrWillBeRawPtr<CSSValue> toCSSValue() const { return m_value; }
54 CSSValueID toCSSValueID() const { return toCSSPrimitiveValue(m_value.get())->getValueID(); }
58 visitor->trace(m_value);
72 : m_value(value)
74 ASSERT(m_value);
79 const RefPtrWillBeMember<CSSValue> m_value; member in class:blink::FINAL
87 return m_value == unknown->m_value || m_value->equals(*unknown->m_value);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGInteger.cpp40 : m_value(value)
46 return create(m_value);
51 return String::number(m_value);
57 m_value = 0;
62 m_value = stripLeadingAndTrailingHTMLSpaces(string).toIntStrict(&valid);
66 m_value = 0;
72 setValue(m_value + toSVGInteger(other)->value());
83 float animatedFloat = m_value;
85 m_value = static_cast<int>(roundf(animatedFloat));
90 return abs(m_value
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioParam.cpp48 float timelineValue = m_timeline.valueForContextTime(context(), narrowPrecisionToFloat(m_value), hasValue);
51 m_value = timelineValue;
54 return narrowPrecisionToFloat(m_value);
62 m_value = value;
76 m_value = m_timeline.valueForContextTime(context(), narrowPrecisionToFloat(m_value), useTimelineValue);
78 if (m_smoothedValue == m_value) {
84 m_smoothedValue = m_value;
87 m_smoothedValue += (m_value - m_smoothedValue) * DefaultSmoothingConstant;
90 if (fabs(m_smoothedValue - m_value) < SnapThreshol
[all...]
/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/lldb/source/Interpreter/
H A DOptionGroupBoolean.cpp27 m_value (default_value, default_value)
53 m_value.SetCurrentValue (!m_value.GetDefaultValue());
54 m_value.SetOptionWasSet ();
58 error = m_value.SetValueFromCString (option_arg);
66 m_value.Clear();

Completed in 2114 milliseconds

123456789