Home
last modified time | relevance | path

Searched refs:typeLen (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/views/
DSkEvent.cpp12 void SkEvent::initialize(const char* type, size_t typeLen, in initialize() argument
15 setType(type, typeLen); in initialize()
82 bool SkEvent::isType(const char type[], size_t typeLen) const in isType()
84 if (typeLen == 0) in isType()
85 typeLen = strlen(type); in isType()
89 return len == typeLen && strncmp(chars, type, typeLen) == 0; in isType()
91 return strncmp(fType, type, typeLen) == 0 && fType[typeLen] == 0; in isType()
94 void SkEvent::setType(const char type[], size_t typeLen) in setType() argument
96 if (typeLen == 0) in setType()
97 typeLen = strlen(type); in setType()
[all …]
/external/skia/include/views/
DSkEvent.h287 void initialize(const char* type, size_t typeLen, SkEventSinkID);
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
DULocale.java3336 int typeLen = type.length(); in ldmlTypeToBCP47() local
3337 if (typeLen >= 3 && typeLen <= 8 && LanguageTag.isExtensionSubtag(type)) { in ldmlTypeToBCP47()