HomeSort by relevance Sort by last modified time
    Searched full:type1 (Results 1 - 25 of 308) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/slang/tests/F_one_definition_rule7/
def1.rs 5 typedef int Type1;
7 Type1 member1;
def2.rs 5 typedef float Type1;
7 Type1 member1;
  /frameworks/compile/slang/tests/F_one_definition_rule8/
def1.rs 4 typedef int Type1;
6 Type1 member1;
def2.rs 4 typedef float Type1;
6 Type1 member1;
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
t1driver.c 62 FT_STRCPYN( buffer, face->type1.glyph_names[glyph_index], buffer_max );
75 for ( i = 0; i < face->type1.num_glyphs; i++ )
77 FT_String* gname = face->type1.glyph_names[i];
103 return (const char*) face->type1.font_name;
139 *afont_info = ((T1_Face)face)->type1.font_info;
149 *afont_extra = ((T1_Face)face)->type1.font_extra;
168 *afont_private = ((T1_Face)face)->type1.private_dict;
183 T1_Font type1 = &t1face->type1; local
189 retval = sizeof ( type1->font_type )
    [all...]
Jamfile 1 # FreeType 2 src/type1 Jamfile
12 SubDir FT2_TOP $(FT2_SRC_DIR) type1 ;
23 _sources = type1 ;
29 # end of src/type1 Jamfile
rules.mk 2 # FreeType 2 Type1 driver configuration rules
16 # Type1 driver directory
18 T1_DIR := $(SRC_DIR)/type1
26 # Type1 driver sources (i.e., C files)
35 # Type1 driver headers
42 # Type1 driver object(s)
48 T1_DRV_OBJ_S := $(OBJ_DIR)/type1.$O
50 # Type1 driver source file for single build
52 T1_DRV_SRC_S := $(T1_DIR)/type1.c
55 # Type1 driver - single objec
    [all...]
module.mk 2 # FreeType 2 Type1 module definition
20 $(ECHO_DRIVER)type1 $(ECHO_DRIVER_DESC)Postscript font files with extension *.pfa or *.pfb$(ECHO_DRIVER_DONE)
t1objs.c 109 &face->type1.private_dict, &globals );
205 T1_Font type1; local
212 type1 = &face->type1;
232 PS_FontInfo info = &type1->font_info;
243 FT_FREE( type1->charstrings_len );
244 FT_FREE( type1->charstrings );
245 FT_FREE( type1->glyph_names );
247 FT_FREE( type1->subrs );
248 FT_FREE( type1->subrs_len )
310 T1_Font type1 = &face->type1; local
    [all...]
t1gload.c 63 T1_Font type1 = &face->type1; local
72 decoder->font_matrix = type1->font_matrix;
73 decoder->font_offset = type1->font_offset;
88 char_string->pointer = type1->charstrings[glyph_index];
89 char_string->length = (FT_Int)type1->charstrings_len[glyph_index];
159 T1_Font type1 = &face->type1; local
172 (FT_Byte**)type1->glyph_names,
183 decoder.num_subrs = type1->num_subrs
219 T1_Font type1 = &face->type1; local
279 T1_Font type1 = &face->type1; local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/
define_empty_macros.h 9 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1)
10 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2)
11 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3)
12 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
  /frameworks/base/cmds/interrupter/
interrupter.h 29 #define CALL_FUNCTION_1(sym, ret, type1) \
30 ret (*real_##sym)(type1) = NULL; \
31 ret sym(type1 arg1) { \
36 #define CALL_FUNCTION_2(sym, ret, type1, type2) \
37 ret (*real_##sym)(type1, type2) = NULL; \
38 ret sym(type1 arg1, type2 arg2) { \
43 #define CALL_FUNCTION_3(sym, ret, type1, type2, type3) \
44 ret (*real_##sym)(type1, type2, type3) = NULL; \
45 ret sym(type1 arg1, type2 arg2, type3 arg3) { \
50 #define CALL_FUNCTION_4(sym, ret, type1, type2, type3, type4)
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
pepper_interface_mock.h 24 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
25 MOCK_METHOD2(MethodName, ReturnType(Type0, Type1));
26 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \
27 MOCK_METHOD3(MethodName, ReturnType(Type0, Type1, Type2));
28 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \
29 MOCK_METHOD4(MethodName, ReturnType(Type0, Type1, Type2, Type3));
30 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
32 MOCK_METHOD5(MethodName, ReturnType(Type0, Type1, Type2, Type3, Type4));
  /external/chromium_org/chrome/common/extensions/docs/server2/test_data/test_json/
ref_test_data_source.json 4 { "name": "type1" },
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
real_pepper_interface.cc 28 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
29 virtual ReturnType MethodName(Type0, Type1);
30 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \
31 virtual ReturnType MethodName(Type0, Type1, Type2);
32 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \
33 virtual ReturnType MethodName(Type0, Type1, Type2, Type3);
34 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
36 virtual ReturnType MethodName(Type0, Type1, Type2, Type3, Type4);
55 #define METHOD2(BaseClass, ReturnType, MethodName, Type0, Type1) \
56 ReturnType Real##BaseClass::MethodName(Type0 arg0, Type1 arg1) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/cf/code/
Merger.java 39 Type type1 = ft1.getType(); local
42 if (type1 == type2) {
43 return type1;
44 } else if (type1.isReference() && type2.isReference()) {
45 if (type1 == Type.KNOWN_NULL) {
56 return type1;
57 } else if (type1.isArray() && type2.isArray()) {
59 mergeType(type1.getComponentType(),
77 } else if (type1.isIntlike() && type2.isIntlike()) {
  /packages/apps/Contacts/tests/src/com/android/contacts/editor/
ContactEditorUtilsTest.java 42 private static final MockAccountType TYPE1 = new MockAccountType("type1", null, true);
50 "a", TYPE1.accountType, TYPE1.dataSet);
52 "b", TYPE1.accountType, TYPE1.dataSet);
91 setAccountTypes(TYPE1);
94 MoreAsserts.assertEquals(Sets.newHashSet(TYPE1.accountType), Sets.newHashSet(types));
97 setAccountTypes(TYPE1, TYPE2EX);
100 MoreAsserts.assertEquals(Sets.newHashSet(TYPE1.accountType, TYPE2EX.accountType)
    [all...]
  /external/clang/test/SemaCXX/
constexpr-many-arguments.cpp 4 struct type1 struct
6 constexpr type1(int a0) : my_data{a0} {} function in struct:type1
12 typedef type1 T;
20 type1 my_data[23];
  /external/pdfium/core/src/fxge/fx_freetype/src/
fxft_type1.c 7 #include "../fxft2.5.01/src/type1/fxft_type1.c"
  /external/chromium_org/content/public/test/
test_notification_tracker.cc 51 bool TestNotificationTracker::Check2AndReset(int type1,
57 bool success = events_[0].type == type1 && events_[1].type == type2;
62 bool TestNotificationTracker::Check3AndReset(int type1,
69 bool success = events_[0].type == type1 &&
  /external/chromium_org/third_party/freetype/src/psaux/
t1cmap.h 32 /***** TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS *****/
63 /***** TYPE1 CUSTOM ENCODING CMAP *****/
87 /***** TYPE1 SYNTHETIC UNICODE ENCODING CMAP *****/
  /external/freetype/src/psaux/
t1cmap.h 32 /***** TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS *****/
63 /***** TYPE1 CUSTOM ENCODING CMAP *****/
87 /***** TYPE1 SYNTHETIC UNICODE ENCODING CMAP *****/
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
t1cmap.h 32 /***** TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS *****/
63 /***** TYPE1 CUSTOM ENCODING CMAP *****/
87 /***** TYPE1 SYNTHETIC UNICODE ENCODING CMAP *****/
  /external/chromium_org/v8/test/cctest/
test-types.cc 365 bool Equal(TypeHandle type1, TypeHandle type2) {
367 type1->Is(type2) && type2->Is(type1) &&
368 Rep::IsBitset(type1) == Rep::IsBitset(type2) &&
369 Rep::IsClass(type1) == Rep::IsClass(type2) &&
370 Rep::IsConstant(type1) == Rep::IsConstant(type2) &&
371 Rep::IsContext(type1) == Rep::IsContext(type2) &&
372 Rep::IsArray(type1) == Rep::IsArray(type2) &&
373 Rep::IsFunction(type1) == Rep::IsFunction(type2) &&
374 Rep::IsUnion(type1) == Rep::IsUnion(type2) &
439 TypeHandle type1 = *it1; local
450 TypeHandle type1 = *it1; local
461 TypeHandle type1 = *it1; local
472 TypeHandle type1 = *it1; local
486 TypeHandle type1 = *it1; local
518 TypeHandle type1 = T.Class(map1); local
545 TypeHandle type1 = T.Constant(value1); local
609 TypeHandle type1 = T.Random(); local
623 TypeHandle type1 = T.Random(); local
640 TypeHandle type1 = T.Random(); local
666 TypeHandle type1 = T.Random(); local
824 TypeHandle type1 = *it1; local
835 TypeHandle type1 = *it1; local
987 TypeHandle type1 = *it1; local
999 TypeHandle type1 = *it1; local
1009 TypeHandle type1 = *it1; local
1147 TypeHandle type1 = *it1; local
1156 TypeHandle type1 = *it1; local
1166 TypeHandle type1 = *it1; local
1176 TypeHandle type1 = *it1; local
1314 TypeHandle type1 = *it1; local
1326 TypeHandle type1 = *it1; local
1341 TypeHandle type1 = *it1; local
1352 TypeHandle type1 = *it1; local
1365 TypeHandle type1 = *it1; local
1379 TypeHandle type1 = *it1; local
1392 TypeHandle type1 = *it1; local
1542 TypeHandle type1 = *it1; local
1555 TypeHandle type1 = *it1; local
1570 TypeHandle type1 = *it1; local
1581 TypeHandle type1 = *it1; local
1594 TypeHandle type1 = *it1; local
1608 TypeHandle type1 = *it1; local
1622 TypeHandle type1 = *it1; local
1735 TypeHandle type1 = *it1; local
1755 TypeHandle type1 = *it1; local
1774 TypeHandle type1 = *it; local
1784 TypeHandle type1 = *it1; local
    [all...]
  /external/eigen/Eigen/src/Core/util/
StaticAssert.h 151 #define EIGEN_STATIC_ASSERT_SAME_VECTOR_SIZE(TYPE0,TYPE1) \
154 || int(TYPE1::SizeAtCompileTime)==Eigen::Dynamic \
155 || int(TYPE0::SizeAtCompileTime)==int(TYPE1::SizeAtCompileTime)),\
158 #define EIGEN_PREDICATE_SAME_MATRIX_SIZE(TYPE0,TYPE1) \
160 (int(TYPE0::SizeAtCompileTime)==0 && int(TYPE1::SizeAtCompileTime)==0) \
163 || int(TYPE1::RowsAtCompileTime)==Eigen::Dynamic \
164 || int(TYPE0::RowsAtCompileTime)==int(TYPE1::RowsAtCompileTime)) \
166 || int(TYPE1::ColsAtCompileTime)==Eigen::Dynamic \
167 || int(TYPE0::ColsAtCompileTime)==int(TYPE1::ColsAtCompileTime))\
181 #define EIGEN_STATIC_ASSERT_SAME_MATRIX_SIZE(TYPE0,TYPE1) \
    [all...]

Completed in 871 milliseconds

1 2 3 4 5 6 7 8 91011>>