Symbol: Face
headers/os/interface/Font.h
205
uint16 Face() const;
src/add-ons/translators/rtf/convert.cpp
247
if (font.Face() == B_REGULAR_FACE && on)
src/add-ons/translators/rtf/convert.cpp
249
else if ((font.Face() & ~face) == 0 && !on)
src/add-ons/translators/rtf/convert.cpp
252
font.SetFace(font.Face() | face);
src/add-ons/translators/rtf/convert.cpp
254
font.SetFace(font.Face() & ~face);
src/add-ons/translators/rtf/convert.cpp
507
fCurrentRun->font.SetFamilyAndFace(family, fCurrentRun->font.Face());
src/add-ons/translators/rtf/convert.cpp
777
uint16 fontFace = styles->runs[i].font.Face();
src/apps/haiku3d/Mesh.h
34
virtual Face& GetFace(uint32 index) const = 0;
src/apps/haiku3d/MeshInstance.cpp
149
const Face& face = fMeshReference->GetFace(i);
src/apps/haiku3d/MeshInstance.cpp
82
const Face& face = fMeshReference->GetFace(i);
src/apps/haiku3d/mesh/StaticMesh.cpp
109
fFaces = new Face[fFaceCount];
src/apps/haiku3d/mesh/StaticMesh.cpp
145
fFaces = new Face[fFaceCount];
src/apps/haiku3d/mesh/StaticMesh.cpp
157
Face&
src/apps/haiku3d/mesh/StaticMesh.cpp
53
fFaces = new Face[fFaceCount];
src/apps/haiku3d/mesh/StaticMesh.h
20
virtual Face& GetFace(uint32 index) const;
src/apps/haiku3d/mesh/StaticMesh.h
29
Face* fFaces;
src/apps/haikudepot/textview/CharacterStyle.cpp
119
return (Font().Face() & B_BOLD_FACE) != 0;
src/apps/haikudepot/textview/CharacterStyle.cpp
126
uint16 face = Font().Face();
src/apps/haikudepot/textview/CharacterStyle.cpp
149
return (Font().Face() & B_ITALIC_FACE) != 0;
src/apps/haikudepot/textview/CharacterStyle.cpp
418
uint16 face = Font().Face();
src/apps/haikudepot/textview/CharacterStyle.cpp
96
uint16 face = Font().Face();
src/apps/stylededit/StyledEditWindow.cpp
1918
if (!(font.Face() & B_REGULAR_FACE))
src/apps/stylededit/StyledEditWindow.cpp
1919
face = font.Face();
src/apps/stylededit/StyledEditWindow.cpp
369
fItalicItem->SetMarked((font.Face() & B_ITALIC_FACE) != 0);
src/apps/stylededit/StyledEditWindow.cpp
370
fBoldItem->SetMarked((font.Face() & B_BOLD_FACE) != 0);
src/apps/stylededit/StyledEditWindow.cpp
371
fUnderlineItem->SetMarked((font.Face() & B_UNDERSCORE_FACE) != 0);
src/apps/stylededit/StyledEditWindow.cpp
372
fStrikeoutItem->SetMarked((font.Face() & B_STRIKEOUT_FACE) != 0);
src/apps/stylededit/StyledEditWindow.cpp
395
fItalicItem->SetMarked((font.Face() & B_ITALIC_FACE) != 0);
src/apps/stylededit/StyledEditWindow.cpp
396
fBoldItem->SetMarked((font.Face() & B_BOLD_FACE) != 0);
src/apps/stylededit/StyledEditWindow.cpp
397
fUnderlineItem->SetMarked((font.Face() & B_UNDERSCORE_FACE) != 0);
src/apps/stylededit/StyledEditWindow.cpp
398
fStrikeoutItem->SetMarked((font.Face() & B_STRIKEOUT_FACE) != 0);
src/apps/stylededit/StyledEditWindow.cpp
772
fBoldItem->SetMarked((font.Face() & B_BOLD_FACE) != 0);
src/apps/stylededit/StyledEditWindow.cpp
773
fItalicItem->SetMarked((font.Face() & B_ITALIC_FACE) != 0);
src/apps/stylededit/StyledEditWindow.cpp
774
fUnderlineItem->SetMarked((font.Face() & B_UNDERSCORE_FACE) != 0);
src/apps/stylededit/StyledEditWindow.cpp
775
fStrikeoutItem->SetMarked((font.Face() & B_STRIKEOUT_FACE) != 0);
src/apps/terminal/TermView.cpp
782
uint16 face = fBoldFont.Face();
src/kits/interface/TextView.cpp
2982
runArray->runs[i].font.Face());
src/kits/interface/View.cpp
217
link.Attach<uint16>(font.Face());
src/kits/interface/View.cpp
2881
fState->font.SetFace(font->Face());
src/kits/interface/textview_support/StyleBuffer.cpp
171
toFont->SetFace(fromFont->Face());
src/servers/app/DrawState.cpp
286
info.fontFace = fFont.Face();
src/servers/app/DrawState.cpp
745
fFont.SetFace(font.Face());
src/servers/app/DrawState.cpp
834
printf("\t Face: %d\n", fFont.Face());
src/servers/app/ServerApp.cpp
1622
fLink.Attach<uint16>(font.Face());
src/servers/app/ServerApp.cpp
1732
fLink.Attach<uint16>(font.Face());
src/servers/app/ServerApp.cpp
1900
fLink.Attach<uint16>(font->Face());
src/servers/app/ServerApp.cpp
1963
fLink.Attach<uint16>(style->Face());
src/servers/app/ServerFont.cpp
143
fFace(style.Face()),
src/servers/app/ServerFont.h
59
uint16 Face() const
src/servers/app/ServerPicture.cpp
1228
WriteSetFontFace(font.Face());
src/servers/app/drawing/Painter/AGGTextRenderer.cpp
172
if ((fRenderer.fFont.Face() & B_UNDERSCORE_FACE) != 0)
src/servers/app/drawing/Painter/AGGTextRenderer.cpp
175
if ((fRenderer.fFont.Face() & B_STRIKEOUT_FACE) != 0) {
src/servers/app/drawing/interface/remote/RemoteMessage.cpp
125
Add(font.Face());
src/servers/app/font/FontCacheEntry.cpp
404
font.Face(), int(renderingType), font.Size(), hinting, averageWeight);
src/servers/app/font/FontFamily.cpp
236
if (style->Face() == face)
src/servers/app/font/FontFamily.cpp
25
if (style->Face() & B_REGULAR_FACE)
src/servers/app/font/FontFamily.cpp
28
if (style->Face() & B_BOLD_FACE)
src/servers/app/font/FontFamily.cpp
30
if (style->Face() & B_ITALIC_FACE)
src/servers/app/font/FontStyle.cpp
199
face |= Face();
src/servers/app/font/FontStyle.h
117
uint16 Face() const
src/tests/kits/interface/bfont/DumpFontList.cpp
44
uint16 face = font.Face();
src/tests/servers/app/text_rendering/renderer.cpp
64
font.SetFace(font.Face() | B_STRIKEOUT_FACE);