HomeSort by relevance Sort by last modified time
    Searched refs:FontData (Results 1 - 25 of 31) sorted by null

1 2

  /external/sfntly/cpp/src/sfntly/data/
font_data.cc 27 int32_t FontData::Size() const {
31 void FontData::Bound(int32_t offset, int32_t length) {
56 int32_t FontData::Length() const {
60 FontData::FontData(ByteArray* ba) {
64 FontData::FontData(FontData* data, int32_t offset, int32_t length) {
69 FontData::FontData(FontData* data, int32_t offset)
    [all...]
font_data.h 49 class FontData : virtual public RefCount {
51 // Gets the maximum size of the FontData. This is the maximum number of bytes
57 // Sets limits on the size of the FontData. The FontData is then only
63 // Makes a slice of this FontData. The returned slice will share the data with
64 // the original <code>FontData</code>.
67 // @return a slice of the original FontData
68 virtual CALLER_ATTACH FontData* Slice(int32_t offset, int32_t length) = 0;
71 // share the data with the original <code>FontData</code>.
73 // @return a slice of the original FontData
    [all...]
readable_font_data.h 48 class ReadableFontData : public FontData,
80 // @throws IndexOutOfBoundsException if index is outside the FontData's range
86 // @throws IndexOutOfBoundsException if index is outside the FontData's range
104 // @throws IndexOutOfBoundsException if index is outside the FontData's range
110 // @throws IndexOutOfBoundsException if index is outside the FontData's range
116 // @throws IndexOutOfBoundsException if index is outside the FontData's range
122 // @throws IndexOutOfBoundsException if index is outside the FontData's range
128 // @throws IndexOutOfBoundsException if index is outside the FontData's range
134 // @throws IndexOutOfBoundsException if index is outside the FontData's range
140 // @throws IndexOutOfBoundsException if index is outside the FontData's rang
    [all...]
writable_font_data.h 59 // the FontData's range
69 // the FontData's range
88 // Writes padding to the FontData. The padding byte written is 0x00.
94 // Writes padding to the FontData.
105 // @throws IndexOutOfBoundsException if index is outside the FontData's range
112 // @throws IndexOutOfBoundsException if index is outside the FontData's range
119 // @throws IndexOutOfBoundsException if index is outside the FontData's range
126 // @throws IndexOutOfBoundsException if index is outside the FontData's range
133 // @throws IndexOutOfBoundsException if index is outside the FontData's range
140 // @throws IndexOutOfBoundsException if index is outside the FontData's rang
    [all...]
readable_font_data.cc 30 : FontData(array),
314 CALLER_ATTACH FontData* ReadableFontData::Slice(int32_t offset,
329 CALLER_ATTACH FontData* ReadableFontData::Slice(int32_t offset) {
342 : FontData(data, offset),
350 : FontData(data, offset, length),
writable_font_data.cc 169 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset,
184 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset) {
  /external/pdfium/core/fpdfapi/page/
cpdf_page.h 32 struct FontData {
34 bool operator<(const FontData& other) const;
70 std::map<FontData, CFX_ByteString> m_FontsMap;
cpdf_page.cpp 185 bool FontData::operator<(const FontData& other) const {
  /external/libvncserver/utils/
bdf2c.pl 54 print "unsigned char " . $fontname . "FontData[$counter]={\n" . $out;
60 $fontname . "FontData, " . $fontname . "FontMetaData};\n";
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 18 import org.eclipse.swt.graphics.FontData;
372 FontData[] boldData = getModifiedFontData(baseFont, SWT.BOLD);
380 FontData[] boldData = getModifiedFontData(baseFont, SWT.BOLD | SWT.ITALIC);
388 FontData[] boldData = getModifiedFontData(baseFont, SWT.ITALIC);
393 * @return the array of {@link FontData} with the specified style.
395 private static FontData[] getModifiedFontData(Font baseFont, int style) {
396 FontData[] baseData = baseFont.getFontData();
397 FontData[] styleData = new FontData[baseData.length];
399 FontData base = baseData[i]
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GestureToolTip.java 22 import org.eclipse.swt.graphics.FontData;
105 FontData[] fd = systemFont.getFontData();
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/
PreferenceInitializer.java 32 import org.eclipse.swt.graphics.FontData;
115 new FontData("Courier", 10, SWT.NORMAL).toString()); //$NON-NLS-1$
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ConfigTab.java 27 import org.eclipse.swt.graphics.FontData;
552 FontData fdItalic = new FontData(fontDataName);
555 FontData fdBold = new FontData(fontDataName);
558 FontData fdBoldItalic = new FontData(fontDataName);
ComponentsView.java 41 import org.eclipse.swt.graphics.FontData;
272 FontData[] fontData = (font==null ? JFaceResources.getDefaultFont() : font).getFontData();
273 FontData boldFontData = new FontData(fontData[0].getName(), fontData[0].getHeight(), SWT.BOLD);
BuildsView.java 39 import org.eclipse.swt.graphics.FontData;
347 FontData[] defaultFont = JFaceResources.getDefaultFont().getFontData();
348 FontData italicFontData = new FontData(defaultFont[0].getName(), defaultFont[0].getHeight(), SWT.ITALIC);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
OldLogCatView.java 44 import org.eclipse.swt.graphics.FontData;
275 FontData data = new FontData(fontStr);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
DurationMinimap.java 32 import org.eclipse.swt.graphics.FontData;
203 new FontData[] { new FontData("Arial", 8, SWT.NORMAL) }); //$NON-NLS-1$
  /external/sfntly/cpp/src/test/
font_data_test.cc 330 TEST(FontData, ReadableFontDataSearching) {
334 TEST(FontData, All) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 30 import org.eclipse.swt.graphics.FontData;
396 FontData[] fds = font.getFontData();
  /external/pdfium/core/fpdfapi/edit/
cpdf_pagecontentgenerator.cpp 251 FontData fontD;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrintGraph.java 25 import org.eclipse.swt.graphics.FontData;
190 FontData fdItalic = new FontData(fontDataName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ConfigureAssetSetPage.java 66 import org.eclipse.swt.graphics.FontData;
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 3990 milliseconds

1 2