Searched defs:value (Results 276 - 300 of 7203) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTablePartElement.cpp49 void HTMLTablePartElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
52 addHTMLColorToStyle(style, CSSPropertyBackgroundColor, value);
54 String url = stripLeadingAndTrailingHTMLSpaces(value);
58 if (equalIgnoringCase(value, "top"))
60 else if (equalIgnoringCase(value, "middle"))
62 else if (equalIgnoringCase(value, "bottom"))
64 else if (equalIgnoringCase(value, "baseline"))
67 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, value);
69 if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "cente
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DCalculationValue.cpp58 PassRefPtr<CalculationValue> CalculationValue::create(PassOwnPtr<CalcExpressionNode> value, CalculationPermittedValueRange range) argument
60 return adoptRef(new CalculationValue(value, range));
/external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
H A DMediaConstraints.h40 MediaConstraint(String name, String value) argument
42 , m_value(value)
57 virtual bool getMandatoryConstraintValue(const String& name, String& value) const = 0;
58 virtual bool getOptionalConstraintValue(const String& name, String& value) const = 0;
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShapeOutsideInfo.cpp38 ShapeValue* value = box->style()->shapeOutside(); local
39 return box->isFloatingWithShapeOutside() && value->type() == ShapeValue::Shape && value->shape();
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStylePendingShader.h44 static PassRefPtr<StylePendingShader> create(CSSShaderValue* value) { return adoptRef(new StylePendingShader(value)); } argument
49 StylePendingShader(CSSShaderValue* value) argument
50 : m_value(value)
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimateColorElement.cpp41 static bool attributeValueIsCurrentColor(const String& value) argument
44 return value == currentColor;
H A DSVGComponentTransferFunctionElement.h56 static ComponentTransferType fromString(const String& value) argument
58 if (value == "identity")
60 if (value == "table")
62 if (value == "discrete")
64 if (value == "linear")
66 if (value == "gamma")
H A DSVGFEBlendElement.h55 static BlendModeType fromString(const String& value) argument
57 if (value == "normal")
59 if (value == "multiply")
61 if (value == "screen")
63 if (value == "darken")
65 if (value == "lighten")
H A DSVGFEColorMatrixElement.h54 static ColorMatrixType fromString(const String& value) argument
56 if (value == "matrix")
58 if (value == "saturate")
60 if (value == "hueRotate")
62 if (value == "luminanceToAlpha")
H A DSVGFECompositeElement.h58 static CompositeOperationType fromString(const String& value) argument
60 if (value == "over")
62 if (value == "in")
64 if (value == "out")
66 if (value == "atop")
68 if (value == "xor")
70 if (value == "arithmetic")
H A DSVGFEConvolveMatrixElement.h54 static EdgeModeType fromString(const String& value) argument
56 if (value == "duplicate")
58 if (value == "wrap")
60 if (value == "none")
H A DSVGFEDisplacementMapElement.h53 static ChannelSelectorType fromString(const String& value) argument
55 if (value == "R")
57 if (value == "G")
59 if (value == "B")
61 if (value == "A")
H A DSVGFEMorphologyElement.h49 static MorphologyOperatorType fromString(const String& value) argument
51 if (value == "erode")
53 if (value == "dilate")
H A DSVGFitToViewBox.h43 static bool parseAttribute(SVGElementTarget* target, const QualifiedName& name, const AtomicString& value) argument
49 bool valueIsValid = !value.isNull() && parseViewBox(target->document(), value, viewBox);
56 preserveAspectRatio.parse(value);
H A DSVGViewElement.cpp71 void SVGViewElement::parseAttribute(const QualifiedName& name, const AtomicString& value) argument
74 SVGElement::parseAttribute(name, value);
79 viewTarget().reset(value);
83 if (SVGExternalResourcesRequired::parseAttribute(name, value))
85 if (SVGFitToViewBox::parseAttribute(this, name, value))
87 if (SVGZoomAndPan::parseAttribute(this, name, value))
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGMatrixTearOff.h33 static PassRefPtr<SVGMatrixTearOff> create(SVGPropertyTearOff<SVGTransform>* parent, SVGMatrix& value) argument
36 RefPtr<SVGMatrixTearOff> result = adoptRef(new SVGMatrixTearOff(parent, value));
48 SVGMatrixTearOff(SVGPropertyTearOff<SVGTransform>* parent, SVGMatrix& value) argument
49 : SVGPropertyTearOff<SVGMatrix>(0, UndefinedRole, value)
/external/chromium_org/third_party/WebKit/Source/core/tests/
H A DLinkRelAttribute.cpp40 static inline void testLinkRelAttribute(String value, bool isStyleSheet, IconType iconType, bool isAlternate, bool isDNSPrefetch, bool isLinkSubresource, bool isLinkPrerender, bool isImport = false) argument
42 LinkRelAttribute linkRelAttribute(value);
43 ASSERT_EQ(isStyleSheet, linkRelAttribute.isStyleSheet()) << value.utf8().data();
44 ASSERT_EQ(iconType, linkRelAttribute.iconType()) << value.utf8().data();
45 ASSERT_EQ(isAlternate, linkRelAttribute.isAlternate()) << value.utf8().data();
46 ASSERT_EQ(isDNSPrefetch, linkRelAttribute.isDNSPrefetch()) << value.utf8().data();
47 ASSERT_EQ(isLinkSubresource, linkRelAttribute.isLinkSubresource()) << value.utf8().data();
48 ASSERT_EQ(isLinkPrerender, linkRelAttribute.isLinkPrerender()) << value.utf8().data();
49 ASSERT_EQ(isImport, linkRelAttribute.isImport()) << value.utf8().data();
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebIDBDatabaseError.cpp41 void WebIDBDatabaseError::assign(const WebIDBDatabaseError& value) argument
43 m_private = value.m_private;
H A DWebSpeechGrammar.cpp44 WebSpeechGrammar::WebSpeechGrammar(const PassRefPtr<WebCore::SpeechGrammar>& value) argument
45 : m_private(value)
49 WebSpeechGrammar& WebSpeechGrammar::operator=(const WTF::PassRefPtr<WebCore::SpeechGrammar>& value) argument
51 m_private = value;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DIntegralTypedArrayBase.h42 void set(unsigned index, double value) argument
46 if (std::isnan(value)) // Clamp NaN to 0
47 value = 0;
50 TypedArrayBase<T>::data()[index] = static_cast<T>(static_cast<int64_t>(value));
/external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
H A Dnumeric_lex.h32 // value of the given type. These functions assume that the string is
33 // of the correct form. They can only fail if the parsed value is too big,
37 bool numeric_lex_int(const std::string& str, IntType* value) argument
44 stream >> (*value);
49 bool numeric_lex_float(const std::string& str, FloatType* value) argument
56 stream >> (*value);
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/
H A DHandleAllocator.cpp26 void HandleAllocator::setBaseHandle(GLuint value) argument
29 mBaseValue = value;
30 mNextValue = value;
48 // Don't drop below base value
56 // Only free handles that we own - don't drop below the base value
/external/chromium_org/third_party/bintrees/bintrees/
H A Dctrees.h19 PyObject *value; member in struct:tree_node
40 int ct_bintree_insert(node_t **root, PyObject *key, PyObject *value);
44 int avl_insert(node_t **root, PyObject *key, PyObject *value);
48 int rb_insert(node_t **root, PyObject *key, PyObject *value);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dhttpcommon_unittest.cc108 std::string value; local
109 EXPECT_TRUE(url.get_attribute("query", &value));
110 EXPECT_STREQ("x", value.c_str());
111 value.clear();
112 EXPECT_TRUE(url.get_attribute("attr", &value));
113 EXPECT_STREQ("y", value.c_str());
114 value.clear();
115 EXPECT_FALSE(url.get_attribute("Query", &value));
116 EXPECT_TRUE(value.empty());
/external/chromium_org/third_party/libusb/src/msvc/
H A Dmissing.c34 static char value[MAX_PATH]; local
62 usbi_dbg("Failed to read registry key value for getenv with error %d", rc);
66 usbi_dbg("Registry value was of type %d instead of REG_SZ", dwType);
73 value, MAX_PATH,
75 usbi_dbg("Failed to convert environment variable value to narrow string");
78 value[MAX_PATH - 1] = 0; // Be sure it's NUL terminated
79 return value;

Completed in 495 milliseconds

<<11121314151617181920>>