Home
last modified time | relevance | path

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

12345

/external/freetype/src/type1/
Dt1driver.c66 FT_STRCPYN( buffer, face->type1.glyph_names[glyph_index], buffer_max ); in t1_get_glyph_name()
79 for ( i = 0; i < face->type1.num_glyphs; i++ ) in t1_get_name_index()
81 FT_String* gname = face->type1.glyph_names[i]; in t1_get_name_index()
107 return (const char*) face->type1.font_name; in t1_get_ps_name()
149 *afont_info = ((T1_Face)face)->type1.font_info; in t1_ps_get_font_info()
159 *afont_extra = ((T1_Face)face)->type1.font_extra; in t1_ps_get_font_extra()
178 *afont_private = ((T1_Face)face)->type1.private_dict; in t1_ps_get_font_private()
195 T1_Font type1 = &t1face->type1; in t1_ps_get_font_value() local
201 retval = sizeof ( type1->font_type ); in t1_ps_get_font_value()
203 *((FT_Byte *)value) = type1->font_type; in t1_ps_get_font_value()
[all …]
Dt1objs.c107 &face->type1.private_dict, &globals ); in T1_Size_Init()
203 T1_Font type1; in T1_Face_Done() local
210 type1 = &face->type1; in T1_Face_Done()
230 PS_FontInfo info = &type1->font_info; in T1_Face_Done()
241 FT_FREE( type1->charstrings_len ); in T1_Face_Done()
242 FT_FREE( type1->charstrings ); in T1_Face_Done()
243 FT_FREE( type1->glyph_names ); in T1_Face_Done()
245 FT_FREE( type1->subrs ); in T1_Face_Done()
246 FT_FREE( type1->subrs_len ); in T1_Face_Done()
248 ft_hash_num_free( type1->subrs_hash, memory ); in T1_Face_Done()
[all …]
Dt1gload.c49 T1_Font type1 = &face->type1; in T1_Parse_Glyph_And_Get_Char_String() local
65 decoder->font_matrix = type1->font_matrix; in T1_Parse_Glyph_And_Get_Char_String()
66 decoder->font_offset = type1->font_offset; in T1_Parse_Glyph_And_Get_Char_String()
81 char_string->pointer = type1->charstrings[glyph_index]; in T1_Parse_Glyph_And_Get_Char_String()
82 char_string->length = (FT_Int)type1->charstrings_len[glyph_index]; in T1_Parse_Glyph_And_Get_Char_String()
110 &face->type1.private_dict, &subfont ); in T1_Parse_Glyph_And_Get_Char_String()
218 T1_Font type1 = &face->type1; in T1_Compute_Max_Advance() local
231 (FT_Byte**)type1->glyph_names, in T1_Compute_Max_Advance()
242 decoder.num_subrs = type1->num_subrs; in T1_Compute_Max_Advance()
243 decoder.subrs = type1->subrs; in T1_Compute_Max_Advance()
[all …]
Dt1load.c141 blend->font_infos[0] = &face->type1.font_info; in t1_allocate_blend()
142 blend->privates [0] = &face->type1.private_dict; in t1_allocate_blend()
143 blend->bboxes [0] = &face->type1.font_bbox; in t1_allocate_blend()
1084 dummy_object = &face->type1.font_info; in t1_load_keyword()
1096 dummy_object = &face->type1.font_extra; in t1_load_keyword()
1102 dummy_object = &face->type1.private_dict; in t1_load_keyword()
1114 dummy_object = &face->type1.font_bbox; in t1_load_keyword()
1146 dummy_object = &face->type1; in t1_load_keyword()
1244 FT_Matrix* matrix = &face->type1.font_matrix; in t1_parse_font_matrix()
1245 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 ;
29 _sources = type1 ;
35 # end of src/type1 Jamfile
Drules.mk18 T1_DIR := $(SRC_DIR)/type1
51 T1_DRV_OBJ_S := $(OBJ_DIR)/type1.$O
55 T1_DRV_SRC_S := $(T1_DIR)/type1.c
/external/freetype/src/type42/
Dt42objs.c36 T1_Font type1 = &face->type1; in T42_Open_Face() local
68 if ( type1->font_type != 42 ) in T42_Open_Face()
71 type1->font_type )); in T42_Open_Face()
78 type1->num_glyphs = loader.num_glyphs; in T42_Open_Face()
87 type1->charstrings_block = loader.charstrings.block; in T42_Open_Face()
88 type1->charstrings = loader.charstrings.elements; in T42_Open_Face()
89 type1->charstrings_len = loader.charstrings.lengths; in T42_Open_Face()
93 type1->glyph_names_block = loader.glyph_names.block; in T42_Open_Face()
94 type1->glyph_names = (FT_String**)loader.glyph_names.elements; in T42_Open_Face()
99 if ( type1->encoding_type == T1_ENCODING_TYPE_ARRAY ) in T42_Open_Face()
[all …]
Dt42drivr.c65 FT_STRCPYN( buffer, face->type1.glyph_names[glyph_index], buffer_max ); in t42_get_glyph_name()
78 for ( i = 0; i < face->type1.num_glyphs; i++ ) in t42_get_name_index()
80 FT_String* gname = face->type1.glyph_names[i]; in t42_get_name_index()
84 return (FT_UInt)ft_strtol( (const char *)face->type1.charstrings[i], in t42_get_name_index()
108 return (const char*)face->type1.font_name; in t42_get_ps_font_name()
128 *afont_info = ((T42_Face)face)->type1.font_info; in t42_ps_get_font_info()
138 *afont_extra = ((T42_Face)face)->type1.font_extra; in t42_ps_get_font_extra()
157 *afont_private = ((T42_Face)face)->type1.private_dict; in t42_ps_get_font_private()
/external/deqp/modules/gles2/scripts/
Dgen-invalid-implicit-conversions.py74 def __init__(self, operation, type0, type1): argument
75 self.name = arithOperations[operation] + '_' + type0 + '_' + type1
78 self.type1 = type1
81 …params0 = { "NAME": self.name + '_' + self.type0, "TYPE0": self.type0, "TYPE1": self.type1, "OPERA…
82 …params1 = { "NAME": self.name + '_' + self.type1, "TYPE0": self.type0, "TYPE1": self.type1, "OPERA…
85 def createCase(operation, type0, type1): argument
88 for t1 in type1:
/external/deqp/modules/gles3/scripts/
Dgen-invalid-implicit-conversions.py78 def __init__(self, operation, type0, type1): argument
79 self.name = arithOperations[operation] + '_' + type0 + '_' + type1
82 self.type1 = type1
86 …params0 = { "NAME": self.name + '_' + self.type0, "TYPE0": self.type0, "TYPE1": self.type1, "OPERA…
87 …params1 = { "NAME": self.name + '_' + self.type1, "TYPE0": self.type0, "TYPE1": self.type1, "OPERA…
90 def createCase(operation, type0, type1): argument
93 for t1 in type1:
/external/google-breakpad/src/third_party/lss/
Dlinux_syscall_support.h1676 #define _syscall1(type,name,type1,arg1) \ argument
1677 type LSS_NAME(name)(type1 arg1) { \
1683 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
1684 type LSS_NAME(name)(type1 arg1,type2 arg2) { \
1690 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
1691 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \
1698 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument
1699 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
1706 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ argument
1708 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/v8/src/compiler/
Dtypes.cc633 Type* Type::Intersect(Type* type1, Type* type2, Zone* zone) { in Intersect() argument
635 if (type1->IsBitset() && type2->IsBitset()) { in Intersect()
636 return BitsetType::New(type1->AsBitset() & type2->AsBitset()); in Intersect()
640 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut. in Intersect()
641 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut. in Intersect()
644 if (type1->Is(type2)) return type1; in Intersect()
645 if (type2->Is(type1)) return type2; in Intersect()
651 if (type1->Is(type2)) { in Intersect()
653 } else if (type2->Is(type1)) { in Intersect()
654 type1 = Any(); in Intersect()
[all …]
/external/v8/src/ast/
Dast-types.cc733 AstType* AstType::Intersect(AstType* type1, AstType* type2, Zone* zone) { in Intersect() argument
735 if (type1->IsBitset() && type2->IsBitset()) { in Intersect()
736 return AstBitsetType::New(type1->AsBitset() & type2->AsBitset()); in Intersect()
740 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut. in Intersect()
741 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut. in Intersect()
744 if (type1->Is(type2)) return type1; in Intersect()
745 if (type2->Is(type1)) return type2; in Intersect()
754 type1->Representation() & type2->Representation(); in Intersect()
760 if (type1->SemanticIs(type2)) { in Intersect()
762 } else if (type2->SemanticIs(type1)) { in Intersect()
[all …]
/external/clang/test/SemaCXX/
Dconstexpr-many-arguments.cpp4 struct type1 struct
6 constexpr type1(int a0) : my_data{a0} {} in type1() argument
12 typedef type1 T; argument
20 type1 my_data[23];
/external/syslinux/com32/chain/
Dmangle.c347 int type1, type2; in manglesf_bss() local
353 type1 = bpb_detect(fil->data, "bss/file"); in manglesf_bss()
356 if (!type1 || !type2) { in manglesf_bss()
360 if (type1 != type2) { in manglesf_bss()
370 if (type1 <= bpbV30) { in manglesf_bss()
372 } else if (type1 <= bpbV32) { in manglesf_bss()
374 } else if (type1 <= bpbV34) { in manglesf_bss()
376 } else if (type1 <= bpbV40) { in manglesf_bss()
378 } else if (type1 <= bpbVNT) { in manglesf_bss()
380 } else if (type1 <= bpbV70) { in manglesf_bss()
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dconfig.hpp56 # define ASIO_MOVE_CAST2(type1, type2) static_cast<type1, type2&&> argument
75 # define ASIO_MOVE_CAST2(type1, type2) static_cast<const type1, type2&> argument
/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 …]
DCodeGen.java968 int type1 = exprType; in atBinExpr() local
976 && (type1 == CLASS || exprType == CLASS)) in atBinExpr()
977 atStringConcatExpr(expr, type1, dim1, cname1); in atBinExpr()
979 atArithBinExpr(expr, token, k, type1); in atBinExpr()
998 int index, int type1) throws CompileError in atArithBinExpr() argument
1007 exprType = type1; in atArithBinExpr()
1011 convertOprandTypes(type1, type2, expr); in atArithBinExpr()
1028 private void atStringConcatExpr(Expr expr, int type1, int dim1, in atStringConcatExpr() argument
1040 if (is2word(type1, dim1)) { in atStringConcatExpr()
1048 convToString(type1, dim1); in atStringConcatExpr()
[all …]
/external/llvm/test/Transforms/AlignmentFromAssumptions/
Dstart-unk.ll6 %type1 = type { %type2 }
78 %ptrint.i.i185 = ptrtoint %type1* undef to i64
82 %ret.0..sroa_cast.i.i188 = bitcast %type1* undef to i32*
90 %1 = bitcast i8* %add.ptr132 to %type1*
112 %ShndxTable.0309 = phi %type1* [ %1, %for.body137.lr.ph ], [ %incdec.ptr, %test1b.exit ]
113 %ret.0..sroa_cast.i.i106 = bitcast %type1* %ShndxTable.0309 to i32*
117 %incdec.ptr = getelementptr inbounds %type1, %type1* %ShndxTable.0309, i64 1
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
DLambdaResolutionTest.java76 ResolvedType type1 = javaParserFacade.getType(e1); in lambdaMap() local
78 assertEquals("java.util.stream.Stream<java.lang.String>", type1.describe()); in lambdaMap()
91 ResolvedType type1 = javaParserFacade.getType(expr); in lambdaReduce() local
92 assertEquals("java.util.Optional<java.lang.Integer>", type1.describe()); in lambdaReduce()
104 ResolvedType type1 = javaParserFacade.getType(expr); in lambdaBifunc() local
105 assertEquals("double", type1.describe()); in lambdaBifunc()
/external/clang/test/SemaTemplate/
Dinstantiate-exception-spec-cxx11.cpp85 base(const typename T::type1 &);
90 struct type1 { struct
101 typedef type1<types> type1; typedef
/external/freetype/src/psaux/
Dt1cmap.c42 cmap->num_glyphs = (FT_UInt)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()
195 T1_Encoding encoding = &face->type1.encoding; in t1_cmap_custom_init()
293 return face->type1.glyph_names[idx]; in psaux_get_glyph_name()
310 (FT_UInt)face->type1.num_glyphs, in t1_cmap_unicode_init()
/external/llvm/test/CodeGen/AArch64/
Dshrink-wrap.ll6 %type1 = type { i32, i32, i32 }
20 @g13 = external unnamed_addr global %type1*, align 8
56 %tmp1 = load %type1*, %type1** @g13, align 8
57 %v4 = getelementptr inbounds %type1, %type1* %tmp1, i64 %idxprom.1.i, i32 0
177 %hold_hash.i.7 = getelementptr inbounds %type1, %type1* %tmp1, i64 %idxprom.1.i, i32 1
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
DCommonSuperclassTest.java102 String type1, String type2) { in superclassTest() argument
104 TypeProto type1Proto = classPath.getClass(type1); in superclassTest()
111 public void superclassTest(String commonSuperclass, String type1, String type2) { in superclassTest() argument
112 superclassTest(oldClassPath, commonSuperclass, type1, type2); in superclassTest()
113 superclassTest(newClassPath, commonSuperclass, type1, type2); in superclassTest()

12345