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 52 void inheritFrom(const FontDescription&);
StyleResolver.cpp 510 documentStyle->inheritFrom(iframeStyle);
618 state.style()->inheritFrom(state.parentStyle(), isAtShadowBoundary(element) ? RenderStyle::AtShadowBoundary : RenderStyle::NotAtShadowBoundary);
    [all...]
FontBuilder.cpp 107 void FontBuilder::inheritFrom(const FontDescription& fontDescription)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGBlock.cpp 53 newStyle->inheritFrom(useStyle.get());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControlMultiLine.cpp 83 textBlockStyle->inheritFrom(startStyle);
RenderTextControlSingleLine.cpp 360 textBlockStyle->inheritFrom(startStyle);
383 innerBlockStyle->inheritFrom(startStyle);
RenderListItem.cpp 60 newStyle->inheritFrom(style());
RenderFlowThread.cpp 69 newStyle->inheritFrom(parentStyle);
    [all...]
RenderObject.cpp     [all...]
RenderLayer.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyle.cpp 107 void SVGRenderStyle::inheritFrom(const SVGRenderStyle* svgInheritParent)
RenderStyle.cpp 89 newStyle->inheritFrom(parentStyle);
152 void RenderStyle::inheritFrom(const RenderStyle* inheritParent, IsAtShadowBoundary isAtShadowBoundary)
164 m_svgStyle.access()->inheritFrom(inheritParent->m_svgStyle.get());
    [all...]
SVGRenderStyle.h 48 void inheritFrom(const SVGRenderStyle*);
RenderStyle.h 334 void inheritFrom(const RenderStyle* inheritParent, IsAtShadowBoundary = NotAtShadowBoundary);
    [all...]

Completed in 541 milliseconds