Home
last modified time | relevance | path

Searched refs:type1 (Results 1 – 25 of 94) sorted by relevance

1234

/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
Dt1driver.c62 FT_STRCPYN( buffer, face->type1.glyph_names[glyph_index], buffer_max ); in t1_get_glyph_name()
75 for ( i = 0; i < face->type1.num_glyphs; i++ ) in t1_get_name_index()
77 FT_String* gname = face->type1.glyph_names[i]; in t1_get_name_index()
103 return (const char*) face->type1.font_name; in t1_get_ps_name()
139 *afont_info = ((T1_Face)face)->type1.font_info; in t1_ps_get_font_info()
149 *afont_extra = ((T1_Face)face)->type1.font_extra; in t1_ps_get_font_extra()
168 *afont_private = ((T1_Face)face)->type1.private_dict; in t1_ps_get_font_private()
183 T1_Font type1 = &t1face->type1; in t1_ps_get_font_value() local
189 retval = sizeof ( type1->font_type ); in t1_ps_get_font_value()
191 *((FT_Byte *)value) = type1->font_type; in t1_ps_get_font_value()
[all …]
Dt1objs.c109 &face->type1.private_dict, &globals ); in T1_Size_Init()
205 T1_Font type1; in T1_Face_Done() local
212 type1 = &face->type1; in T1_Face_Done()
232 PS_FontInfo info = &type1->font_info; in T1_Face_Done()
243 FT_FREE( type1->charstrings_len ); in T1_Face_Done()
244 FT_FREE( type1->charstrings ); in T1_Face_Done()
245 FT_FREE( type1->glyph_names ); in T1_Face_Done()
247 FT_FREE( type1->subrs ); in T1_Face_Done()
248 FT_FREE( type1->subrs_len ); in T1_Face_Done()
250 FT_FREE( type1->subrs_block ); in T1_Face_Done()
[all …]
Dt1gload.c63 T1_Font type1 = &face->type1; in T1_Parse_Glyph_And_Get_Char_String() local
72 decoder->font_matrix = type1->font_matrix; in T1_Parse_Glyph_And_Get_Char_String()
73 decoder->font_offset = type1->font_offset; in T1_Parse_Glyph_And_Get_Char_String()
88 char_string->pointer = type1->charstrings[glyph_index]; in T1_Parse_Glyph_And_Get_Char_String()
89 char_string->length = (FT_Int)type1->charstrings_len[glyph_index]; in T1_Parse_Glyph_And_Get_Char_String()
159 T1_Font type1 = &face->type1; in T1_Compute_Max_Advance() local
172 (FT_Byte**)type1->glyph_names, in T1_Compute_Max_Advance()
183 decoder.num_subrs = type1->num_subrs; in T1_Compute_Max_Advance()
184 decoder.subrs = type1->subrs; in T1_Compute_Max_Advance()
185 decoder.subrs_len = type1->subrs_len; in T1_Compute_Max_Advance()
[all …]
Dt1load.c140 blend->font_infos[0] = &face->type1.font_info; in t1_allocate_blend()
141 blend->privates [0] = &face->type1.private_dict; in t1_allocate_blend()
142 blend->bboxes [0] = &face->type1.font_bbox; in t1_allocate_blend()
942 dummy_object = &face->type1.font_info; in t1_load_keyword()
954 dummy_object = &face->type1.font_extra; in t1_load_keyword()
960 dummy_object = &face->type1.private_dict; in t1_load_keyword()
972 dummy_object = &face->type1.font_bbox; in t1_load_keyword()
1004 dummy_object = &face->type1; in t1_load_keyword()
1100 FT_Matrix* matrix = &face->type1.font_matrix; in t1_parse_font_matrix()
1101 FT_Vector* offset = &face->type1.font_offset; in t1_parse_font_matrix()
[all …]
DJamfile1 # FreeType 2 src/type1 Jamfile
12 SubDir FT2_TOP $(FT2_SRC_DIR) type1 ;
23 _sources = type1 ;
29 # end of src/type1 Jamfile
Drules.mk18 T1_DIR := $(SRC_DIR)/type1
48 T1_DRV_OBJ_S := $(OBJ_DIR)/type1.$O
52 T1_DRV_SRC_S := $(T1_DIR)/type1.c
/external/dexmaker/src/dx/java/com/android/dx/cf/code/
DMerger.java39 Type type1 = ft1.getType(); in mergeType() local
42 if (type1 == type2) { in mergeType()
43 return type1; in mergeType()
44 } else if (type1.isReference() && type2.isReference()) { in mergeType()
45 if (type1 == Type.KNOWN_NULL) { in mergeType()
56 return type1; in mergeType()
57 } else if (type1.isArray() && type2.isArray()) { in mergeType()
59 mergeType(type1.getComponentType(), in mergeType()
77 } else if (type1.isIntlike() && type2.isIntlike()) { in mergeType()
/external/chromium_org/v8/test/cctest/
Dtest-types.cc354 bool Equal(TypeHandle type1, TypeHandle type2) { in Equal()
356 type1->Equals(type2) && in Equal()
357 this->IsBitset(type1) == this->IsBitset(type2) && in Equal()
358 this->IsUnion(type1) == this->IsUnion(type2) && in Equal()
359 type1->NumClasses() == type2->NumClasses() && in Equal()
360 type1->NumConstants() == type2->NumConstants() && in Equal()
361 (!this->IsBitset(type1) || in Equal()
362 this->AsBitset(type1) == this->AsBitset(type2)) && in Equal()
363 (!this->IsUnion(type1) || in Equal()
364 this->Length(this->AsUnion(type1)) == in Equal()
[all …]
/external/linux-tools-perf/perf-3.12.0/arch/parisc/include/asm/
Dunistd.h112 #define _syscall1(type,name,type1,arg1) \ argument
113 type name(type1 arg1) \
118 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
119 type name(type1 arg1, type2 arg2) \
124 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
125 type name(type1 arg1, type2 arg2, type3 arg3) \
130 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument
131 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4) \
137 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \ argument
138 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) \
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
Dlinux_syscall_support.h816 #define _syscall1(type,name,type1,arg1) \ argument
817 type LSS_NAME(name)(type1 arg1) { \
823 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
824 type LSS_NAME(name)(type1 arg1,type2 arg2) { \
830 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
831 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \
838 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument
839 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
846 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ argument
848 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
[all …]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
Dlinux_syscall_support.h828 #define _syscall1(type,name,type1,arg1) \ argument
829 type LSS_NAME(name)(type1 arg1) { \
835 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
836 type LSS_NAME(name)(type1 arg1,type2 arg2) { \
842 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
843 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \
850 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument
851 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
858 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ argument
860 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DIntConst.java54 int type1 = this.type; in compute0() local
57 if (type1 == TokenId.LongConstant || type2 == TokenId.LongConstant) in compute0()
59 else if (type1 == TokenId.CharConstant in compute0()
95 newType = type1; in compute0()
99 newType = type1; in compute0()
103 newType = type1; in compute0()
/external/openssl/crypto/objects/
Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
1023 static int nm##_cmp(type1 const *, type2 const *); \
1024 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1026 #define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \ argument
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
1061 type1 const *a = a_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
[all …]
/external/openssl/include/openssl/
Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
1023 static int nm##_cmp(type1 const *, type2 const *); \
1024 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1026 #define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \ argument
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
1061 type1 const *a = a_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
[all …]
/external/chromium_org/content/public/test/
Dtest_notification_tracker.cc51 bool TestNotificationTracker::Check2AndReset(int type1, in Check2AndReset() argument
57 bool success = events_[0].type == type1 && events_[1].type == type2; in Check2AndReset()
62 bool TestNotificationTracker::Check3AndReset(int type1, in Check3AndReset() argument
69 bool success = events_[0].type == type1 && in Check3AndReset()
/external/clang/test/SemaCXX/
Dconstexpr-many-arguments.cpp4 struct type1 struct
6 constexpr type1(int a0) : my_data{a0} {} in type1() function
12 typedef type1 T; argument
20 type1 my_data[23];
/external/chromium_org/v8/src/
Dtypes.cc610 TypeHandle type1, TypeHandle type2, Region* region) { in Intersect() argument
611 bitset bits = type1->BitsetGlb() & type2->BitsetGlb(); in Intersect()
615 if (type1->IsBitset() && type2->IsBitset()) { in Intersect()
620 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut. in Intersect()
621 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut. in Intersect()
624 if (type1->Is(type2)) return type1; in Intersect()
625 if (type2->Is(type1)) return type2; in Intersect()
628 int size1 = type1->IsUnion() ? type1->AsUnion()->Length() : 1; in Intersect()
642 RangeType* range1 = type1->GetRange(); in Intersect()
652 size = IntersectAux(type1, type2, result, size, region); in Intersect()
[all …]
/external/clang/test/SemaTemplate/
Dinstantiate-exception-spec-cxx11.cpp78 base(const typename T::type1 &);
83 struct type1 { struct
94 typedef type1<types> type1; typedef
/external/javassist/src/main/javassist/compiler/
DTypeChecker.java284 int type1 = exprType; in atCondExpr() local
290 if (CodeGen.rightIsStrong(type1, exprType)) in atCondExpr()
292 else if (CodeGen.rightIsStrong(exprType, type1)) { in atCondExpr()
293 expr.setElse(new CastExpr(type1, 0, expr.elseExpr())); in atCondExpr()
294 exprType = type1; in atCondExpr()
327 int type1 = exprType; in atBinExpr() local
330 computeBinExprType(expr, token, type1); in atBinExpr()
367 int type1 = exprType; in atPlusExpr() local
375 if ((type1 == CLASS && dim1 == 0 && jvmJavaLangString.equals(cname)) in atPlusExpr()
387 computeBinExprType(expr, '+', type1); in atPlusExpr()
[all …]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
DPyrexTypes.py3675 def widest_numeric_type(type1, type2): argument
3678 if type1 == type2:
3679 widest_type = type1
3680 elif type1.is_complex or type2.is_complex:
3687 real_type(type1),
3689 elif type1.is_enum and type2.is_enum:
3691 elif type1.rank < type2.rank:
3693 elif type1.rank > type2.rank:
3694 widest_type = type1
3695 elif type1.signed < type2.signed:
[all …]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
Dt1cmap.c42 cmap->num_glyphs = face->type1.num_glyphs; in t1_cmap_std_init()
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names; in t1_cmap_std_init()
178 T1_Encoding encoding = &face->type1.encoding; in t1_cmap_custom_init()
270 return face->type1.glyph_names[idx]; in psaux_get_glyph_name()
284 face->type1.num_glyphs, in t1_cmap_unicode_init()
/external/freetype/src/psaux/
Dt1cmap.c42 cmap->num_glyphs = face->type1.num_glyphs; in t1_cmap_std_init()
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names; in t1_cmap_std_init()
178 T1_Encoding encoding = &face->type1.encoding; in t1_cmap_custom_init()
270 return face->type1.glyph_names[idx]; in psaux_get_glyph_name()
284 face->type1.num_glyphs, in t1_cmap_unicode_init()
/external/chromium_org/third_party/freetype/src/psaux/
Dt1cmap.c42 cmap->num_glyphs = face->type1.num_glyphs; in t1_cmap_std_init()
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names; in t1_cmap_std_init()
178 T1_Encoding encoding = &face->type1.encoding; in t1_cmap_custom_init()
270 return face->type1.glyph_names[idx]; in psaux_get_glyph_name()
284 face->type1.num_glyphs, in t1_cmap_unicode_init()
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
DStdTypeList.java183 public static StdTypeList make(Type type0, Type type1) { in make() argument
186 result.set(1, type1); in make()
198 public static StdTypeList make(Type type0, Type type1, Type type2) { in make() argument
201 result.set(1, type1); in make()
215 public static StdTypeList make(Type type0, Type type1, Type type2, in make() argument
219 result.set(1, type1); in make()
/external/chromium_org/ipc/
Dipc_message_macros.h228 #define IPC_MESSAGE_CONTROL1(msg_class, type1) \ argument
229 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 1, 0, (type1), ())
231 #define IPC_MESSAGE_CONTROL2(msg_class, type1, type2) \ argument
232 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 2, 0, (type1, type2), ())
234 #define IPC_MESSAGE_CONTROL3(msg_class, type1, type2, type3) \ argument
235 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 3, 0, (type1, type2, type3), ())
237 #define IPC_MESSAGE_CONTROL4(msg_class, type1, type2, type3, type4) \ argument
238 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 4, 0, (type1, type2, type3, type4), ())
240 #define IPC_MESSAGE_CONTROL5(msg_class, type1, type2, type3, type4, type5) \ argument
241 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 5, 0, (type1, type2, type3, type4, type5), ())
[all …]

1234