OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UnicodeRange
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/svg/
SVGParserUtilities.h
28
typedef pair<unsigned, unsigned>
UnicodeRange
;
29
typedef Vector<
UnicodeRange
> UnicodeRanges;
/external/webkit/Source/WebCore/css/
CSSFontFace.h
50
struct
UnicodeRange
;
52
void addRange(UChar32 from, UChar32 to) { m_ranges.append(
UnicodeRange
(from, to)); }
53
const Vector<
UnicodeRange
>& ranges() const { return m_ranges; }
70
struct
UnicodeRange
{
71
UnicodeRange
(UChar32 from, UChar32 to)
98
Vector<
UnicodeRange
> m_ranges;
Completed in 520 milliseconds