OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Loca
(Results
1 - 6
of
6
) sorted by null
/external/sfntly/cpp/src/sfntly/table/truetype/
loca_table.h
26
// A
Loca
table - '
loca
'.
51
// Get the format version that will be used when the
loca
table is
53
// @return the
loca
table format version
57
// Gets the List of locas for
loca
table builder. These may be manipulated
59
//
loca
table produced as long as no subsequent call is made to the
61
// If there is no current data for the
loca
table builder or the
loca
list
86
// been changed. It does not by itself reset the data or clear any set
loca
93
// Revert the
loca
table builder to the state contained in the last raw dat
[
all
...]
loca_table.cc
33
return
Loca
(glyph_id);
43
return
Loca
(glyph_id + 1) -
Loca
(glyph_id);
50
int32_t LocaTable::
Loca
(int32_t index) {
84
return container()->
Loca
(index_++);
155
int32_t LocaTable::Builder::
Loca
(int32_t index) {
/external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format1.cc
43
int32_t
loca
= CheckGlyphRange(glyph_id);
local
44
if (
loca
== -1) {
47
return
Loca
(
loca
);
51
int32_t
loca
= CheckGlyphRange(glyph_id);
local
52
if (
loca
== -1) {
55
return
Loca
(
loca
+ 1) -
Loca
(
loca
);
81
int32_t
loca
= CheckGlyphRange(glyph_id);
local
90
int32_t
loca
= CheckGlyphRange(glyph_id);
local
[
all
...]
index_sub_table_format3.cc
33
int32_t
loca
= CheckGlyphRange(glyph_id);
local
34
if (
loca
!= -1) {
35
return
Loca
(
loca
);
41
int32_t
loca
= CheckGlyphRange(glyph_id);
local
42
if (
loca
!= -1) {
43
return
Loca
(glyph_id + 1) -
Loca
(glyph_id);
64
int32_t IndexSubTableFormat3::
Loca
(int32_t
loca
) {
82
int32_t
loca
= CheckGlyphRange(glyph_id);
local
90
int32_t
loca
= CheckGlyphRange(glyph_id);
local
[
all
...]
index_sub_table_format1.h
107
int32_t
Loca
(int32_t loca_index);
index_sub_table_format3.h
104
int32_t
Loca
(int32_t loca_index);
Completed in 81 milliseconds