HomeSort by relevance Sort by last modified time
    Searched refs:inheritFrom (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/icu/source/test/intltest/
fldset.h 72 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
79 const FieldsSet& inheritFrom,
81 return parseFrom(str, &inheritFrom, status);
86 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
93 const FieldsSet* inheritFrom,
105 * @param inheritFrom the set inheriting from - may be null.
111 virtual int32_t handleParseName(const FieldsSet* inheritFrom,
119 * @param inheritFrom the set inheriting from - may be null.
125 virtual void handleParseValue(const FieldsSet* inheritFrom,
132 * Base implementation is to parse a decimal integer value, or inherit from inheritFrom if the string is 0-length
    [all...]
fldset.cpp 94 FieldsSet* inheritFrom, UErrorCode& status) {
113 int32_t field = handleParseName(inheritFrom, kv[0], kv[1], status);
126 handleParseValue(inheritFrom, field, kv[1], status);
190 int32_t FieldsSet::handleParseName(const FieldsSet* /* inheritFrom */, const UnicodeString& name, const UnicodeString& /* substr*/ , UErrorCode& status) {
203 void FieldsSet::parseValueDefault(const FieldsSet* inheritFrom, int32_t field, const UnicodeString& substr, UErrorCode& status) {
207 if((inheritFrom == NULL) || !inheritFrom->isSet((UCalendarDateFields)field)) {
213 value = inheritFrom->get((UCalendarDateFields)field);
220 void FieldsSet::parseValueEnum(UDebugEnumType type, const FieldsSet* inheritFrom, int32_t field, const UnicodeString& substr, UErrorCode& status) {
226 parseValueDefault(inheritFrom,field,substr,status)
    [all...]
  /external/icu4c/test/intltest/
fldset.h 72 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
79 const FieldsSet& inheritFrom,
81 return parseFrom(str, &inheritFrom, status);
86 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
93 const FieldsSet* inheritFrom,
105 * @param inheritFrom the set inheriting from - may be null.
111 virtual int32_t handleParseName(const FieldsSet* inheritFrom,
119 * @param inheritFrom the set inheriting from - may be null.
125 virtual void handleParseValue(const FieldsSet* inheritFrom,
132 * Base implementation is to parse a decimal integer value, or inherit from inheritFrom if the string is 0-length
    [all...]
fldset.cpp 94 FieldsSet* inheritFrom, UErrorCode& status) {
113 int32_t field = handleParseName(inheritFrom, kv[0], kv[1], status);
128 handleParseValue(inheritFrom, field, kv[1], status);
194 int32_t FieldsSet::handleParseName(const FieldsSet* /* inheritFrom */, const UnicodeString& name, const UnicodeString& /* substr*/ , UErrorCode& status) {
207 void FieldsSet::parseValueDefault(const FieldsSet* inheritFrom, int32_t field, const UnicodeString& substr, UErrorCode& status) {
211 if((inheritFrom == NULL) || !inheritFrom->isSet((UCalendarDateFields)field)) {
217 value = inheritFrom->get((UCalendarDateFields)field);
224 void FieldsSet::parseValueEnum(UDebugEnumType type, const FieldsSet* inheritFrom, int32_t field, const UnicodeString& substr, UErrorCode& status) {
230 parseValueDefault(inheritFrom,field,substr,status)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.h 51 void inheritFrom(const FontDescription&);
StyleResolver.cpp 598 documentStyle->inheritFrom(iframeStyle);
671 state.style()->inheritFrom(state.parentStyle(), isAtShadowBoundary(element) ? RenderStyle::AtShadowBoundary : RenderStyle::NotAtShadowBoundary);
    [all...]
FontBuilder.cpp 101 void FontBuilder::inheritFrom(const FontDescription& fontDescription)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControlMultiLine.cpp 83 textBlockStyle->inheritFrom(startStyle);
RenderLayerReflectionInfo.cpp 87 newStyle->inheritFrom(renderer()->style());
RenderListItem.cpp 65 newStyle->inheritFrom(style());
RenderTextControlSingleLine.cpp 359 textBlockStyle->inheritFrom(startStyle);
RenderFlowThread.cpp 70 newStyle->inheritFrom(parentStyle);
    [all...]
RenderObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyle.cpp 106 void SVGRenderStyle::inheritFrom(const SVGRenderStyle* svgInheritParent)
RenderStyle.cpp 87 newStyle->inheritFrom(parentStyle);
198 void RenderStyle::inheritFrom(const RenderStyle* inheritParent, IsAtShadowBoundary isAtShadowBoundary)
210 m_svgStyle.access()->inheritFrom(inheritParent->m_svgStyle.get());
    [all...]
SVGRenderStyle.h 48 void inheritFrom(const SVGRenderStyle*);
RenderStyle.h 353 void inheritFrom(const RenderStyle* inheritParent, IsAtShadowBoundary = NotAtShadowBoundary);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
TextControlInnerElements.cpp 88 style->inheritFrom(shadowHost()->renderStyle());

Completed in 245 milliseconds