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);
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/icu/icu4c/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);
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...]
  /cts/hostsidetests/appsecurity/src/com/android/cts/appsecurity/
SplitTests.java 139 new InstallMultiple().inheritFrom(PKG).addApk(APK_xxhdpi).run();
227 new InstallMultiple().inheritFrom(PKG).addApk(APK_DIFF_CERT_v7).runExpectingFailure();
236 new InstallMultiple().inheritFrom(PKG).addApk(APK_DIFF_VERSION_v7).runExpectingFailure();
247 new InstallMultiple().inheritFrom(PKG).addApk(APK_DIFF_REVISION_v7).run();
254 new InstallMultiple().inheritFrom(PKG).addApk(APK_DIFF_REVISION).run();
260 new InstallMultiple().inheritFrom(PKG).addApk(APK_v7).runExpectingFailure();
306 InstallMultiple inheritFrom(String packageName) {
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.h 53 void inheritFrom(const FontDescription&);
FontBuilder.cpp 106 void FontBuilder::inheritFrom(const FontDescription& fontDescription)
StyleResolver.cpp 583 state.style()->inheritFrom(state.parentStyle(), isAtShadowBoundary(element) ? RenderStyle::AtShadowBoundary : RenderStyle::NotAtShadowBoundary);
766 state.style()->inheritFrom(state.parentStyle());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControlMultiLine.cpp 81 textBlockStyle->inheritFrom(startStyle);
RenderLayerReflectionInfo.cpp 92 newStyle->inheritFrom(box().style());
RenderListItem.cpp 65 newStyle->inheritFrom(style());
RenderTextControlSingleLine.cpp 338 textBlockStyle->inheritFrom(startStyle);
RenderObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
TextControlInnerElements.cpp 85 style->inheritFrom(shadowHost()->renderStyle());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyle.cpp 98 void SVGRenderStyle::inheritFrom(const SVGRenderStyle* svgInheritParent)
RenderStyle.cpp 89 newStyle->inheritFrom(parentStyle);
200 void RenderStyle::inheritFrom(const RenderStyle* inheritParent, IsAtShadowBoundary isAtShadowBoundary)
212 m_svgStyle.access()->inheritFrom(inheritParent->m_svgStyle.get());
    [all...]
SVGRenderStyle.h 44 void inheritFrom(const SVGRenderStyle*);
RenderStyle.h 354 void inheritFrom(const RenderStyle* inheritParent, IsAtShadowBoundary = NotAtShadowBoundary);
    [all...]

Completed in 2623 milliseconds