OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fontDict
(Results
1 - 4
of
4
) sorted by null
/external/pdfium/fpdfsdk/
fpdfedittext.cpp
64
CPDF_Dictionary*
fontDict
= pDoc->NewIndirect<CPDF_Dictionary>();
65
fontDict
->SetNewFor<CPDF_Name>("Type", "Font");
66
fontDict
->SetNewFor<CPDF_Name>("Subtype", "Type1");
70
fontDict
->SetNewFor<CPDF_Name>("BaseFont", name);
74
fontDict
->SetNewFor<CPDF_Number>("FirstChar", currentChar);
87
fontDict
->SetNewFor<CPDF_Number>("LastChar", currentChar);
88
fontDict
->SetNewFor<CPDF_Reference>("Widths", pDoc, widthsArray->GetObjNum());
129
fontDict
->SetNewFor<CPDF_Reference>("FontDescriptor", pDoc,
131
return pDoc->LoadFont(
fontDict
);
/external/pdfium/core/fpdfapi/edit/
cpdf_pagecontentgenerator_unittest.cpp
172
CPDF_Dictionary*
fontDict
= TestGetResource(
174
ASSERT_TRUE(
fontDict
);
175
EXPECT_EQ("Font",
fontDict
->GetStringFor("Type"));
176
EXPECT_EQ("Type1",
fontDict
->GetStringFor("Subtype"));
177
EXPECT_EQ("Times-Roman",
fontDict
->GetStringFor("BaseFont"));
cpdf_pagecontentgenerator.cpp
258
auto
fontDict
= pdfium::MakeUnique<CPDF_Dictionary>();
259
fontDict
->SetNewFor<CPDF_Name>("Type", "Font");
260
fontDict
->SetNewFor<CPDF_Name>("Subtype", "Type1");
261
fontDict
->SetNewFor<CPDF_Name>("BaseFont", fontD.baseFont);
262
CPDF_Object* pDict = m_pDocument->AddIndirectObject(std::move(
fontDict
));
/external/fonttools/Lib/fontTools/
cffLib.py
257
for
fontDict
in self.items:
258
children.extend(
fontDict
.getChildren(strings))
428
xmlWriter.begintag("
FontDict
", index=i)
431
xmlWriter.endtag("
FontDict
")
440
if name != "
FontDict
":
442
fontDict
=
FontDict
()
447
fontDict
.fromXML(name, attrs, content)
448
self.append(
fontDict
)
[
all
...]
Completed in 609 milliseconds