Searched defs:attributes (Results 276 - 300 of 430) sorted by last modified time

<<1112131415161718

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextMetricsBuilder.cpp187 SVGTextLayoutAttributes* attributes = text->layoutAttributes(); local
188 Vector<SVGTextMetrics>* textMetricsValues = &attributes->textMetricsValues();
191 attributes->clear();
222 attributes->characterDataMap().set(textPosition + 1, it->value);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGLinearGradientElement.cpp106 static void setGradientAttributes(SVGGradientElement* element, LinearGradientAttributes& attributes, bool isLinear = true) argument
108 if (!attributes.hasSpreadMethod() && element->spreadMethod()->isSpecified())
109 attributes.setSpreadMethod(element->spreadMethod()->currentValue()->enumValue());
111 if (!attributes.hasGradientUnits() && element->gradientUnits()->isSpecified())
112 attributes.setGradientUnits(element->gradientUnits()->currentValue()->enumValue());
114 if (!attributes.hasGradientTransform() && element->gradientTransform()->isSpecified()) {
117 attributes.setGradientTransform(transform);
120 if (!attributes.hasStops()) {
123 attributes.setStops(stops);
129 if (!attributes
143 collectGradientAttributes(LinearGradientAttributes& attributes) argument
[all...]
H A DSVGPatternElement.cpp142 static void setPatternAttributes(const SVGPatternElement* element, PatternAttributes& attributes) argument
144 if (!attributes.hasX() && element->x()->isSpecified())
145 attributes.setX(element->x()->currentValue());
147 if (!attributes.hasY() && element->y()->isSpecified())
148 attributes.setY(element->y()->currentValue());
150 if (!attributes.hasWidth() && element->width()->isSpecified())
151 attributes.setWidth(element->width()->currentValue());
153 if (!attributes.hasHeight() && element->height()->isSpecified())
154 attributes.setHeight(element->height()->currentValue());
156 if (!attributes
[all...]
H A DSVGRadialGradientElement.cpp120 static void setGradientAttributes(SVGGradientElement* element, RadialGradientAttributes& attributes, bool isRadial = true) argument
122 if (!attributes.hasSpreadMethod() && element->spreadMethod()->isSpecified())
123 attributes.setSpreadMethod(element->spreadMethod()->currentValue()->enumValue());
125 if (!attributes.hasGradientUnits() && element->gradientUnits()->isSpecified())
126 attributes.setGradientUnits(element->gradientUnits()->currentValue()->enumValue());
128 if (!attributes.hasGradientTransform() && element->gradientTransform()->isSpecified()) {
131 attributes.setGradientTransform(transform);
134 if (!attributes.hasStops()) {
137 attributes.setStops(stops);
143 if (!attributes
163 collectGradientAttributes(RadialGradientAttributes& attributes) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathNodeSet.cpp237 AttributeCollection attributes = element->attributes(); local
238 AttributeCollection::iterator end = attributes.end();
239 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
H A DXPathStep.cpp373 // Avoid lazily creating attribute nodes for attributes that we do not
386 AttributeCollection attributes = contextElement->attributes(); local
387 AttributeCollection::iterator end = attributes.end();
388 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLDocumentParser.cpp123 int namespaceCount, const xmlChar** namespaces, int attributeCount, int defaultedCount, const xmlChar** attributes)
139 m_attributes[i * 5 + j] = xmlStrdup(attributes[i * 5 + j]);
140 int length = attributes[i * 5 + 4] - attributes[i * 5 + 3];
141 m_attributes[i * 5 + 3] = xmlStrndup(attributes[i * 5 + 3], length);
823 AttributeCollection attributes = element->attributes(); local
824 AttributeCollection::iterator end = attributes.end();
825 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
938 xmlSAX2Attributes* attributes local
122 PendingStartElementNSCallback(const AtomicString& localName, const AtomicString& prefix, const AtomicString& uri, int namespaceCount, const xmlChar** namespaces, int attributeCount, int defaultedCount, const xmlChar** attributes) argument
1608 HashMap<String, String> attributes; member in struct:blink::AttributeParseState
1624 xmlSAX2Attributes* attributes = reinterpret_cast<xmlSAX2Attributes*>(libxmlAttributes); local
[all...]
H A DXMLErrors.cpp155 Vector<Attribute> attributes; local
156 attributes.append(Attribute(styleAttr, "white-space: normal"));
158 paragraph->parserSetAttributes(attributes);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCookieParser.js340 attributes: function()
H A DDOMModel.js61 if (payload.attributes)
62 this._setAttributesPayload(payload.attributes);
359 attributes: function()
1153 * @param {!Array.<string>} attributes
1155 function callback(nodeId, error, attributes)
1163 if (node._setAttributesPayload(attributes))
/external/chromium_org/testing/gtest/src/
H A Dgtest-filepath.cc212 const DWORD attributes = GetFileAttributes(unicode); local
214 return attributes != kInvalidFileAttributes;
236 const DWORD attributes = GetFileAttributes(unicode); local
238 if ((attributes != kInvalidFileAttributes) &&
239 (attributes & FILE_ATTRIBUTE_DIRECTORY)) {
H A Dgtest.cc2034 // The list of reserved attributes used in the <testsuites> element of XML
2047 // The list of reserved attributes used in the <testsuite> element of XML
2058 // The list of reserved attributes used in the <testcase> element of XML output.
3360 // delimited XML attributes based on the property key="value" pairs.
3362 // to delimit this attribute from prior attributes.
3681 // delimited XML attributes based on the property key="value" pairs.
3684 Message attributes; local
3687 attributes << " " << property.key() << "="
3690 return attributes.GetString();
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js1550 var attributes = {
1561 Hash.extend(attributes, bools);
1562 Hash.extend(attributes, camels.associate(camels.map(String.toLowerCase)));
1631 var key = attributes[attribute];
1638 setProperties: function(attributes){
1639 for (var attribute in attributes) this.setProperty(attribute, attributes[attribute]);
1644 var key = attributes[attribute];
1655 var key = attributes[attribute];
2581 var m, parsed = {classes: [], pseudos: [], attributes
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8DOMConfiguration.cpp37 void V8DOMConfiguration::installAttributes(v8::Handle<v8::ObjectTemplate> instanceTemplate, v8::Handle<v8::ObjectTemplate> prototype, const AttributeConfiguration* attributes, size_t attributeCount, v8::Isolate* isolate) argument
40 installAttribute(instanceTemplate, prototype, attributes[i], isolate);
120 void V8DOMConfiguration::installMethods(v8::Handle<v8::ObjectTemplate> prototype, v8::Handle<v8::Signature> signature, v8::PropertyAttribute attributes, const MethodConfiguration* callbacks, size_t callbackCount, v8::Isolate* isolate) argument
123 installMethod(prototype, signature, attributes, callbacks[i], isolate);
134 const AttributeConfiguration* attributes, size_t attributeCount,
153 installAttributes(instanceTemplate, functionDescriptor->PrototypeTemplate(), attributes, attributeCount, isolate);
133 installDOMClassTemplate(v8::Handle<v8::FunctionTemplate> functionDescriptor, const char* interfaceName, v8::Handle<v8::FunctionTemplate> parentClass, size_t fieldCount, const AttributeConfiguration* attributes, size_t attributeCount, const AccessorConfiguration* accessors, size_t accessorCount, const MethodConfiguration* callbacks, size_t callbackCount, v8::Isolate* isolate) argument
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8HTMLCanvasElementCustom.cpp57 RefPtrWillBeRawPtr<CanvasContextAttributes> attributes = nullptr; local
84 attributes = webGLAttributes;
93 attributes = canvas2DAttributes;
95 CanvasRenderingContext* result = impl->getContext(contextId, attributes.get());
/external/chromium_org/ui/accessibility/extensions/highcontrast/
H A Dhighcontrast.js104 // Work around bug that causes filter to be lost when the HTML element's attributes change.
106 var config = { attributes: true, childList: false, characterData: false };
/external/chromium_org/ui/gfx/
H A Drender_text_mac.cc119 base::ScopedCFTypeRef<CFDictionaryRef> attributes(
130 CFAttributedStringCreate(NULL, cf_text, attributes));
204 // Clear the attributes storage.
309 CFDictionaryRef attributes = CTRunGetAttributes(ct_run); local
311 base::mac::GetValueFromDictionary<CTFontRef>(attributes,
326 attributes, kCTForegroundColorAttributeName);
332 attributes, kCTUnderlineStyleAttributeName);
H A Drender_text_unittest.cc210 // Apply ranged BOLD/ITALIC styles and check the resulting Pango attributes.
230 PangoAttrList* attributes = pango_layout_get_attributes(rt_linux->layout_); local
231 PangoAttrIterator* iter = pango_attr_list_get_iterator(attributes);
1545 // GetLineOffset(0) attributes are checked by the test above.
/external/chromium_org/ui/gl/
H A Dgl_surface_glx.cc172 XWindowAttributes attributes; local
173 if (!XGetWindowAttributes(display_, window_, &attributes)) {
180 visual_info_template.visualid = XVisualIDFromVisual(attributes.visual);
428 XWindowAttributes attributes; local
429 if (!XGetWindowAttributes(g_display, parent_window_, &attributes)) {
434 size_ = gfx::Size(attributes.width, attributes.height);
543 XWindowAttributes attributes; local
547 &attributes)) {
553 int visual_id = XVisualIDFromVisual(attributes
[all...]
H A Dgl_surface_x11.cc143 XWindowAttributes attributes;
144 if (!XGetWindowAttributes(xdisplay_, window_, &attributes)) {
164 attributes.depth);
191 XWindowAttributes attributes; local
192 if (!XGetWindowAttributes(xdisplay_, window_, &attributes)) {
199 attributes.visual,
200 attributes.depth,
233 XWindowAttributes attributes; local
234 if (!XGetWindowAttributes(xdisplay_, window_, &attributes)) {
241 attributes
[all...]
/external/chromium_org/ui/views/accessibility/
H A Dnative_view_accessibility_win.cc930 STDMETHODIMP NativeViewAccessibilityWin::get_attributes(BSTR* attributes) { argument
934 if (!attributes)
950 *attributes = SysAllocString(attributes_str.c_str());
951 DCHECK(*attributes);
/external/chromium_org/ui/views/test/
H A Dx11_property_change_waiter.cc27 XWindowAttributes attributes; local
28 XGetWindowAttributes(display, x_window_, &attributes);
29 old_event_mask_ = attributes.your_event_mask;
/external/chromium_org/webkit/common/gpu/
H A Dcontext_provider_in_process.cc53 blink::WebGraphicsContext3D::Attributes attributes; local
54 attributes.depth = false;
55 attributes.stencil = true;
56 attributes.antialias = false;
57 attributes.shareResources = true;
58 attributes.noAutomaticFlushes = true;
62 attributes, lose_context_when_out_of_memory),
H A Dwebgraphicscontext3d_impl.cc985 const blink::WebGraphicsContext3D::Attributes& attributes,
987 output_attribs->alpha_size = attributes.alpha ? 8 : 0;
988 output_attribs->depth_size = attributes.depth ? 24 : 0;
989 output_attribs->stencil_size = attributes.stencil ? 8 : 0;
990 output_attribs->samples = attributes.antialias ? 4 : 0;
991 output_attribs->sample_buffers = attributes.antialias ? 1 : 0;
993 attributes.failIfMajorPerformanceCaveat;
984 ConvertAttributes( const blink::WebGraphicsContext3D::Attributes& attributes, ::gpu::gles2::ContextCreationAttribHelper* output_attribs) argument
H A Dwebgraphicscontext3d_in_process_command_buffer_impl.cc36 const blink::WebGraphicsContext3D::Attributes& attributes,
43 attributes,
52 const blink::WebGraphicsContext3D::Attributes& attributes,
57 attributes,
66 const blink::WebGraphicsContext3D::Attributes& attributes) {
71 attributes,
80 const blink::WebGraphicsContext3D::Attributes& attributes,
84 : share_resources_(attributes.shareResources),
85 webgl_context_(attributes.webGL),
89 ConvertAttributes(attributes,
35 CreateViewContext( const blink::WebGraphicsContext3D::Attributes& attributes, bool lose_context_when_out_of_memory, gfx::AcceleratedWidget window) argument
51 CreateOffscreenContext( const blink::WebGraphicsContext3D::Attributes& attributes, bool lose_context_when_out_of_memory) argument
64 WrapContext( scoped_ptr< ::gpu::GLInProcessContext> context, const blink::WebGraphicsContext3D::Attributes& attributes) argument
78 WebGraphicsContext3DInProcessCommandBufferImpl( scoped_ptr< ::gpu::GLInProcessContext> context, const blink::WebGraphicsContext3D::Attributes& attributes, bool lose_context_when_out_of_memory, bool is_offscreen, gfx::AcceleratedWidget window) argument
[all...]

Completed in 4707 milliseconds

<<1112131415161718