HomeSort by relevance Sort by last modified time
    Searched full:value (Results 801 - 825 of 15709) sorted by null

<<31323334353637383940>>

  /external/skia/include/xml/
SkXMLWriter.h 32 void addS32Attribute(const char name[], int32_t value);
33 void addAttribute(const char name[], const char value[]);
34 void addAttributeLen(const char name[], const char value[], size_t length);
35 void addHexAttribute(const char name[], uint32_t value, int minDigits = 0);
36 void addScalarAttribute(const char name[], SkScalar value);
46 virtual void onAddAttributeLen(const char name[], const char value[], size_t length) = 0;
74 virtual void onAddAttributeLen(const char name[], const char value[], size_t length);
86 virtual void onAddAttributeLen(const char name[], const char value[], size_t length);
  /external/skia/src/core/
SkPackBits.cpp 30 static inline void small_memset(void* dst, uint8_t value, int n) {
34 case 15: *d++ = value;
35 case 14: *d++ = value;
36 case 13: *d++ = value;
37 case 12: *d++ = value;
38 case 11: *d++ = value;
39 case 10: *d++ = value;
40 case 9: *d++ = value;
41 case 8: *d++ = value;
42 case 7: *d++ = value;
204 unsigned value = *src; local
246 unsigned value = *src; local
    [all...]
  /external/stlport/stlport/stl/
boost_type_traits.h 42 * both the boost value and STLport values has to be taken into account
49 enum { _Is = ::boost::is_reference<_Tp>::value };
54 enum { is_pointer = ::boost::is_pointer<_Tp>::value };
59 enum { is_integral = ::boost::is_integral<_Tp>::value };
64 enum { is_float = ::boost::is_float<_Tp>::value };
70 enum { trivial_constructor = ::boost::has_trivial_constructor<_Tp>::value };
73 enum { trivial_copy = ::boost::has_trivial_copy<_Tp>::value };
76 enum { trivial_assign = ::boost::has_trivial_assign<_Tp>::value };
79 enum { trivial_destructor = ::boost::has_trivial_destructor<_Tp>::value };
82 enum { pod = ::boost::is_pod<_Tp>::value };
    [all...]
  /external/webkit/JavaScriptCore/qt/tests/qscriptengine/
tst_qscriptengine.cpp 42 /* Evaluating a script that throw an unhandled exception should return an invalid value. */
47 QVERIFY2(engine.evaluate("ping").isValid(), "Script throwing an unhandled exception should return an exception value");
63 QScriptValue value = engine.nullValue(); local
64 QVERIFY(value.isValid());
65 QVERIFY(value.isNull());
71 QScriptValue value = engine.undefinedValue(); local
72 QVERIFY(value.isValid());
73 QVERIFY(value.isUndefined());
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.6.1-3.js 79 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
88 // tests for boolean primitive, boolean object, Object object, a "MyObject" whose value is
89 // a boolean primitive and a boolean object, and "MyValuelessObject", where the value is
165 function MyProtolessObject( value ) {
166 this.valueOf = new Function( "return this.value" );
168 this.value = value;
170 function MyValuelessObject(value) {
171 this.__proto__ = new MyPrototypeObject(value);
173 function MyPrototypeObject(value) {
    [all...]
  /external/webkit/JavaScriptCore/wtf/
ByteArray.h 37 void set(unsigned index, double value)
41 if (!(value > 0)) // Clamp NaN to 0
42 value = 0;
43 else if (value > 255)
44 value = 255;
45 m_data[index] = static_cast<unsigned char>(value + 0.5);
48 void set(unsigned index, unsigned char value)
52 m_data[index] = value;
  /external/webkit/WebCore/css/
RGBColor.cpp 39 unsigned value = (m_rgbColor >> 16) & 0xFF; local
40 return CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
45 unsigned value = (m_rgbColor >> 8) & 0xFF; local
46 return CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
51 unsigned value = m_rgbColor & 0xFF; local
52 return CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
57 float value = static_cast<float>((m_rgbColor >> 24) & 0xFF) / 0xFF; local
58 return WebCore::CSSPrimitiveValue::create(value, WebCore::CSSPrimitiveValue::CSS_NUMBER);
  /external/webkit/WebCore/html/
HTMLOListElement.cpp 55 if (attr->value() == "a")
57 else if (attr->value() == "A")
59 else if (attr->value() == "i")
61 else if (attr->value() == "I")
63 else if (attr->value() == "1")
67 int start = attr->value().toInt(&canParse);
101 void HTMLOListElement::setType(const String& value)
103 setAttribute(typeAttr, value);
  /external/webkit/WebCore/html/canvas/
WebGLIntArray.h 52 void set(unsigned index, double value)
56 if (isnan(value)) // Clamp NaN to 0
57 value = 0;
58 if (value < std::numeric_limits<int>::min())
59 value = std::numeric_limits<int>::min();
60 else if (value > std::numeric_limits<int>::max())
61 value = std::numeric_limits<int>::max();
63 storage[index] = static_cast<int>(value);
WebGLShortArray.h 51 void set(unsigned index, double value)
55 if (isnan(value)) // Clamp NaN to 0
56 value = 0;
57 if (value < std::numeric_limits<short>::min())
58 value = std::numeric_limits<short>::min();
59 else if (value > std::numeric_limits<short>::max())
60 value = std::numeric_limits<short>::max();
62 storage[index] = static_cast<short>(value);
  /external/webkit/WebCore/manual-tests/
applet-finish-parsing-children.html 8 <param name=text value="FAIL">
10 <param name=text value="PASS">
focusringcolor-change-on-theme-change.html 1 <input value="Click on me! Focus ring color around this input element should change." style="width:100%">
4 <li>Change the system focus ring color.<br>On OS X you can do this by going to System Preferences-&gt;Appearance and selecting another value in the Appearance popup menu.</li>
input-empty-on-focus.html 2 <div><input onfocus="this.value = ''" value="drop image here go boom"></div>
  /external/webkit/WebCore/svg/
SVGAnimatedPropertySynchronizer.h 55 static const bool value = true; member in struct:WebCore::IsDerivedFromSVGElement
61 static const bool value = false; member in struct:WebCore::IsDerivedFromSVGElement
72 static void synchronize(SVGElement* ownerElement, const QualifiedName& attrName, const AtomicString& value)
76 if (old && value.isNull())
78 else if (!old && !value.isNull())
79 namedAttrMap->addAttribute(ownerElement->createAttribute(attrName, value));
80 else if (old && !value.isNull())
81 old->setValue(value);
SVGFEColorMatrixElement.cpp 46 const String& value = attr->value(); local
48 if (value == "matrix")
50 else if (value == "saturate")
52 else if (value == "hueRotate")
54 else if (value == "luminanceToAlpha")
58 setIn1BaseValue(value);
60 valuesBaseValue()->parse(value);
  /external/webkit/WebCore/xml/
XPathExpressionNode.h 63 virtual Value evaluate() const = 0;
76 void setIsContextNodeSensitive(bool value) { m_isContextNodeSensitive = value; }
77 void setIsContextPositionSensitive(bool value) { m_isContextPositionSensitive = value; }
78 void setIsContextSizeSensitive(bool value) { m_isContextSizeSensitive = value; }
80 virtual Value::Type resultType() const = 0;
  /external/webkit/WebKit/gtk/
JSCore-1.0.gir 11 <return-value transfer-ownership="none">
13 </return-value>
  /frameworks/base/core/java/android/content/res/
TypedArray.java 82 * Retrieve the styled string value for the attribute at <var>index</var>.
110 * Retrieve the string value for the attribute at <var>index</var>.
139 * Retrieve the string value for the attribute at <var>index</var>, but
140 * only if that string comes from an immediate value in an XML file. That
150 * an immediate string value.
168 * Retrieve the string value for the attribute at <var>index</var> that is
203 * Retrieve the boolean value for the attribute at <var>index</var>.
206 * @param defValue Value to return if the attribute is not defined.
208 * @return Attribute boolean value, or defValue if not defined.
233 * Retrieve the integer value for the attribute at <var>index</var>
317 final TypedValue value = mValue; local
340 final TypedValue value = mValue; local
590 final TypedValue value = mValue; local
617 final TypedValue value = mValue; local
672 final TypedValue value = mValue; local
    [all...]
  /frameworks/base/core/java/android/util/
SparseBooleanArray.java 57 * Gets the boolean mapped from the specified key, or the specified value
84 * Adds a mapping from the specified key to the specified value,
88 public void put(int key, boolean value) {
92 mValues[i] = value;
117 mValues[i] = value;
123 * Returns the number of key-value mappings that this SparseBooleanArray
132 * the key from the <code>index</code>th key-value mapping that this
141 * the value from the <code>index</code>th key-value mapping that this
160 * specified value
    [all...]
SparseIntArray.java 56 * Gets the int mapped from the specified key, or the specified value
90 * Adds a mapping from the specified key to the specified value,
94 public void put(int key, int value) {
98 mValues[i] = value;
123 mValues[i] = value;
129 * Returns the number of key-value mappings that this SparseIntArray
138 * the key from the <code>index</code>th key-value mapping that this
147 * the value from the <code>index</code>th key-value mapping that this
166 * specified value
    [all...]
  /frameworks/base/core/res/res/xml/
power_profile.xml 37 <value>0.2</value>
38 <value>0.1</value>
43 <value>400000</value> <!-- 400 MHz CPU speed -->
49 <value>0.2</value>
  /packages/apps/Camera/src/com/android/camera/gallery/
LruCache.java 49 public Entry(K key, V value, ReferenceQueue<V> queue) {
50 super(value, queue);
64 public synchronized V put(K key, V value) {
66 mLruMap.put(key, value);
68 key, new Entry<K, V>(key, value, mQueue));
74 V value = mLruMap.get(key); local
75 if (value != null) return value;
  /packages/apps/Gallery/src/com/android/camera/gallery/
LruCache.java 45 public Entry(K key, V value, ReferenceQueue<V> queue) {
46 super(value, queue);
60 public synchronized V put(K key, V value) {
62 mLruMap.put(key, value);
64 key, new Entry<K, V>(key, value, mQueue));
70 V value = mLruMap.get(key); local
71 if (value != null) return value;
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementTimeManipulation.java 25 * Defines the playback speed of element time. The value is specified as
37 * The percentage value of the simple acceleration of time for the
39 * Default value is <code>0</code> (no acceleration).
41 * 100. If it does, the deceleration value will be reduced to make the
51 * The percentage value of the simple decelerate of time for the
53 * Default value is <code>0</code> (no deceleration).
55 * 100. If it does, the deceleration value will be reduced to make the
66 * functionality. Default value is <code>false</code> .
  /sdk/layoutlib_utils/src/com/android/layoutlib/utils/
ValueResourceParser.java 24 * SAX handler to parser value resource files.
43 void addResourceValue(String resType, ResourceValue value);
134 String value = mCurrentValue.getValue(); local
135 if (value == null) {
138 mCurrentValue.setValue(value + new String(ch, start, length));
143 public static String trimXmlWhitespaces(String value) {
144 if (value == null) {
151 while ((index = value.indexOf('\n')) != -1) {
155 if (Character.isWhitespace(value.charAt(left))) {
163 int count = value.length()
    [all...]

Completed in 2019 milliseconds

<<31323334353637383940>>