/frameworks/base/libs/androidfw/tests/data/app/ |
R.h | 13 namespace style { namespace in namespace:app::R
|
/frameworks/base/libs/androidfw/tests/data/lib/ |
R.h | 13 namespace style { namespace in namespace:lib::R
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLRTElement.cpp | 2 // Use of this source code is governed by a BSD-style license that can be 22 RenderObject* HTMLRTElement::createRenderer(RenderStyle* style) 24 if (style->display() == BLOCK) 26 return RenderObject::createObject(this, style);
|
HTMLTablePartElement.cpp | 50 void HTMLTablePartElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) 53 addHTMLColorToStyle(style, CSSPropertyBackgroundColor, value); 59 style->setProperty(CSSProperty(CSSPropertyBackgroundImage, imageValue.release())); 63 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueTop); 65 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueMiddle); 67 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueBottom); 69 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueBaseline); 71 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, value); 74 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitCenter); 76 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueCenter) [all...] |
HTMLBRElement.cpp | 50 void HTMLBRElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) 57 addPropertyToPresentationAttributeStyle(style, CSSPropertyClear, CSSValueBoth); 59 addPropertyToPresentationAttributeStyle(style, CSSPropertyClear, value); 62 HTMLElement::collectStyleForPresentationAttribute(name, value, style); 65 RenderObject* HTMLBRElement::createRenderer(RenderStyle* style) 67 if (style->hasContent()) 68 return RenderObject::createObject(this, style);
|
HTMLTableCaptionElement.cpp | 43 void HTMLTableCaptionElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) 47 addPropertyToPresentationAttributeStyle(style, CSSPropertyCaptionSide, value); 49 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
|
HTMLUListElement.cpp | 48 void HTMLUListElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) 51 addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, value); 53 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
|
/external/chromium_org/third_party/libxslt/libxslt/ |
preproc.h | 28 xsltDocumentComp (xsltStylesheetPtr style, 33 xsltStylePreCompute (xsltStylesheetPtr style, 36 xsltFreeStylePreComps (xsltStylesheetPtr style);
|
attributes.h | 22 xsltParseStylesheetAttributeSet (xsltStylesheetPtr style, 25 xsltFreeAttributeSetsHashes (xsltStylesheetPtr style); 32 xsltResolveStylesheetAttributeSet(xsltStylesheetPtr style);
|
/external/chromium_org/tools/json_schema_compiler/highlighters/ |
hilite_me_highlighter.py | 2 # Use of this source code is governed by a BSD-style license that can be 11 def GetCSS(self, style): 14 def GetCodeElement(self, code, style): 20 ('style', style),
|
pygments_highlighter.py | 2 # Use of this source code is governed by a BSD-style license that can be 23 def GetCSS(self, style): 25 style=pygments.styles.get_style_by_name(style)) 28 def GetCodeElement(self, code, style): 30 style=pygments.styles.get_style_by_name(style))
|
/frameworks/base/graphics/java/android/graphics/ |
BlurMaskFilter.java | 58 * @param style The Blur to use 61 public BlurMaskFilter(float radius, Blur style) { 62 native_instance = nativeConstructor(radius, style.native_int); 65 private static native long nativeConstructor(float radius, int style);
|
/cts/tests/tests/theme/src/android/theme/cts/ |
DeviceDefaultTest.java | 33 assertActionBar(android.R.style.Theme_DeviceDefault); 37 assertNoActionBar(android.R.style.Theme_DeviceDefault_Dialog); 41 assertNoActionBar(android.R.style.Theme_DeviceDefault_Dialog_MinWidth); 45 assertNoActionBar(android.R.style.Theme_DeviceDefault_Dialog_NoActionBar); 49 assertNoActionBar(android.R.style.Theme_DeviceDefault_Dialog_NoActionBar_MinWidth); 53 assertActionBarWhenLarge(android.R.style.Theme_DeviceDefault_DialogWhenLarge); 57 assertNoActionBar(android.R.style.Theme_DeviceDefault_DialogWhenLarge_NoActionBar); 61 assertNoActionBar(android.R.style.Theme_DeviceDefault_InputMethod); 65 assertActionBar(android.R.style.Theme_DeviceDefault_Light); 69 assertActionBar(android.R.style.Theme_DeviceDefault_Light_DarkActionBar) [all...] |
/external/chromium_org/ui/views/widget/ |
widget_hwnd_utils.cc | 2 // Use of this source code is governed by a BSD-style license that can be 28 DWORD* style, 31 *style = WS_CLIPCHILDREN | WS_CLIPSIBLINGS; 35 // Set type-independent style attributes. 37 *style |= WS_CHILD; 39 *style |= WS_MAXIMIZE; 41 *style |= WS_MINIMIZE; 59 // 2- The window must have WS_EX_COMPOSITED in the extended style. 60 // 3- The window must have WS_POPUP in its style. 62 // style 151 DWORD style = 0; local [all...] |
/external/icu/icu4c/source/io/ |
locbund.cpp | 37 int32_t style; local 38 for (style = 0; style < ULOCALEBUNDLE_NUMBERFORMAT_COUNT; style++) { 39 unum_close(gPosixNumberFormat[style]); 40 gPosixNumberFormat[style] = NULL; 47 static inline UNumberFormat * copyInvariantFormatter(ULocaleBundle *result, UNumberFormatStyle style) { 50 if (result->fNumberFormat[style-1] == NULL) { 51 if (gPosixNumberFormat[style-1] == NULL) { 53 UNumberFormat *formatAlias = unum_open(style, NULL, 0, "en_US_POSIX", NULL, &status) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGTextElement.cpp | 43 RenderStyle* style = renderer() ? renderer()->style() : 0; local 46 if (style && style->hasTransform()) { 50 style->applyTransform(t, IntSize(0, 0), RenderStyle::ExcludeTransformOrigin);
|
/external/chromium_org/third_party/icu/source/io/ |
locbund.c | 37 int32_t style; local 38 for (style = 0; style < ULOCALEBUNDLE_NUMBERFORMAT_COUNT; style++) { 39 unum_close(gPosixNumberFormat[style]); 40 gPosixNumberFormat[style] = NULL; 48 static U_INLINE UNumberFormat * copyInvariantFormatter(ULocaleBundle *result, UNumberFormatStyle style) { 49 if (result->fNumberFormat[style-1] == NULL) { 53 UMTX_CHECK(NULL, gPosixNumberFormat[style-1] == NULL, needsInit); 55 UNumberFormat *formatAlias = unum_open(style, NULL, 0, "en_US_POSIX", NULL, &status) [all...] |
/external/chromium_org/v8/tools/ |
draw_instruction_graph.sh | 99 set style line 2 lc rgb '#800000' 100 set style line 3 lc rgb '#d00000' 101 set style line 4 lc rgb '#ff6000' 102 set style line 5 lc rgb '#ffc000' 103 set style line 6 lc rgb '#ffff00' 105 set style line 7 lc rgb '#ff00ff' 106 set style line 8 lc rgb '#ffc0ff' 108 set style line 9 lc rgb '#004040' 109 set style line 10 lc rgb '#008080' 110 set style line 11 lc rgb '#40c0c0 [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
RemoveCSSPropertyCommand.cpp | 52 const StylePropertySet* style = m_element->inlineStyle(); local 53 if (!style) 56 m_oldValue = style->getPropertyValue(m_property); 57 m_important = style->propertyIsImportant(m_property); 61 m_element->style()->setPropertyInternal(m_property, String(), false, IGNORE_EXCEPTION); 66 m_element->style()->setPropertyInternal(m_property, m_oldValue, m_important, IGNORE_EXCEPTION);
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
WebDocumentTest.cpp | 2 // Use of this source code is governed by a BSD-style license that can be 14 #include "core/rendering/style/RenderStyle.h" 39 // Check insertStyleSheet did not cause a synchronous style recalc. 46 RenderStyle* style = bodyElement->renderStyle(); local 47 ASSERT(style); 50 ASSERT_EQ(Color(0, 0, 0), style->visitedDependentColor(WebCore::CSSPropertyColor)); 55 style = bodyElement->renderStyle(); 56 ASSERT(style); 59 ASSERT_EQ(Color(0, 128, 0), style->visitedDependentColor(WebCore::CSSPropertyColor));
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSComputedStyleDeclaration.cpp | 62 #include "core/rendering/style/ContentData.h" 63 #include "core/rendering/style/CounterContent.h" 64 #include "core/rendering/style/RenderStyle.h" 65 #include "core/rendering/style/ShadowList.h" 66 #include "core/rendering/style/ShapeValue.h" 451 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> valueForNinePieceImageQuad(const BorderImageLengthBox& box, const RenderStyle& style) 462 top = cssValuePool().createValue(box.top().length(), style); 472 right = cssValuePool().createValue(box.right().length(), style); 481 bottom = cssValuePool().createValue(box.bottom().length(), style); 489 left = cssValuePool().createValue(box.left().length(), style); 1192 RefPtr<RenderStyle> style = m_node->computedStyle(m_pseudoElementSpecifier); local 1574 RefPtr<RenderStyle> style; local 2910 RenderStyle* style = m_node->computedStyle(m_pseudoElementSpecifier); local [all...] |
/cts/tests/tests/text/src/android/text/style/cts/ |
TabStopSpan_StandardTest.java | 17 package android.text.style.cts; 20 import android.text.style.TabStopSpan; 21 import android.text.style.TabStopSpan.Standard;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
PseudoElement.cpp | 33 #include "core/rendering/style/ContentData.h" 95 RenderStyle* style = renderer->style(); 96 if (style->styleType() != BEFORE && style->styleType() != AFTER) 98 ASSERT(style->contentData()); 100 for (const ContentData* content = style->contentData(); content; content = content->next()) { 101 RenderObject* child = content->createRenderer(document(), style); 102 if (renderer->isChildAllowed(child, style)) { 111 bool PseudoElement::rendererIsNeeded(const RenderStyle& style) [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
TextAppearanceFactory.java | 20 import android.text.style.TextAppearanceSpan; 34 new TextAppearanceSpan(mContext, R.style.SuggestionText1_Query) 40 new TextAppearanceSpan(mContext, R.style.SuggestionText1_Suggested)
|
/frameworks/base/libs/androidfw/tests/data/system/ |
R.h | 14 namespace style { namespace in namespace:android::R
|