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

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/third_party/freetype/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;
185 T1_Font type1 = &t1face->type1; local
191 retval = sizeof ( type1->font_type )
    [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...]
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...]
t1load.c 140 blend->font_infos[0] = &face->type1.font_info;
141 blend->privates [0] = &face->type1.private_dict;
142 blend->bboxes [0] = &face->type1.font_bbox;
958 dummy_object = &face->type1.font_info;
970 dummy_object = &face->type1.font_extra;
976 dummy_object = &face->type1.private_dict;
988 dummy_object = &face->type1.font_bbox;
1020 dummy_object = &face->type1;
2127 T1_Font type1 = &face->type1; local
    [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()) {
  /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...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactDeltaComparator.java 50 final AccountType type1 = accountTypes.getAccountType(accountType1, dataSet1); local
56 if (!type1.areContactsWritable() && type2.areContactsWritable()) {
58 } else if (type1.areContactsWritable() && !type2.areContactsWritable()) {
64 boolean isGoogleAccount1 = type1 instanceof GoogleAccountType;
77 if (type1.accountType != null && type2.accountType == null) {
79 } else if (type1.accountType == null && type2.accountType != null) {
83 if (type1.accountType != null && type2.accountType != null) {
84 value = type1.accountType.compareTo(type2.accountType);
92 if (type1.dataSet != null && type2.dataSet == null) {
94 } else if (type1.dataSet == null && type2.dataSet != null)
    [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];
  /dalvik/dx/src/com/android/dx/cf/code/
Merger.java 157 Type type1 = ft1.getType(); local
160 if (type1 == type2) {
161 return type1;
162 } else if (type1.isReference() && type2.isReference()) {
163 if (type1 == Type.KNOWN_NULL) {
174 return type1;
175 } else if (type1.isArray() && type2.isArray()) {
177 mergeType(type1.getComponentType(),
195 } else if (type1.isIntlike() && type2.isIntlike()) {
Machine.java 87 * @param type1 {@code non-null;} type of the first argument
90 public void popArgs(Frame frame, Type type1, Type type2);
100 * @param type1 {@code non-null;} type of the first argument
104 public void popArgs(Frame frame, Type type1, Type type2, Type type3);
BaseMachine.java 167 public final void popArgs(Frame frame, Type type1, Type type2) {
173 if (! Merger.isPossiblyAssignableFrom(type1, args[0])) {
174 throw new SimException("expected type " + type1.toHuman() +
185 public final void popArgs(Frame frame, Type type1, Type type2,
192 if (! Merger.isPossiblyAssignableFrom(type1, args[0])) {
193 throw new SimException("expected type " + type1.toHuman() +
  /external/javassist/src/main/javassist/compiler/ast/
IntConst.java 54 int type1 = this.type; local
57 if (type1 == TokenId.LongConstant || type2 == TokenId.LongConstant)
59 else if (type1 == TokenId.CharConstant
95 newType = type1;
99 newType = type1;
103 newType = type1;
  /external/v8/test/cctest/
test-types.cc 114 bool Equal(TypeHandle type1, TypeHandle type2) {
116 type1->Equals(type2) &&
117 this->IsBitset(type1) == this->IsBitset(type2) &&
118 this->IsUnion(type1) == this->IsUnion(type2) &&
119 type1->NumClasses() == type2->NumClasses() &&
120 type1->NumConstants() == type2->NumConstants() &&
121 (!this->IsBitset(type1) ||
122 this->AsBitset(type1) == this->AsBitset(type2)) &&
123 (!this->IsUnion(type1) ||
124 this->Length(this->AsUnion(type1)) =
188 TypeHandle type1 = *it1; local
199 TypeHandle type1 = *it1; local
210 TypeHandle type1 = *it1; local
221 TypeHandle type1 = *it1; local
235 TypeHandle type1 = *it1; local
254 TypeHandle type1 = *it1; local
264 TypeHandle type1 = *it1; local
283 TypeHandle type1 = *it1; local
302 TypeHandle type1 = *it1; local
336 TypeHandle type1 = T.Class(map1); local
363 TypeHandle type1 = T.Constant(value1); local
460 TypeHandle type1 = T.Range(min1, max1); local
487 TypeHandle type1 = T.Random(); local
514 TypeHandle type1 = T.Random(); local
528 TypeHandle type1 = T.Random(); local
545 TypeHandle type1 = T.Random(); local
571 TypeHandle type1 = T.Random(); local
708 TypeHandle type1 = *it1; local
749 TypeHandle type1 = *it1; local
760 TypeHandle type1 = *it1; local
783 TypeHandle type1 = *it1; local
794 TypeHandle type1 = *it1; local
840 TypeHandle type1 = *it1; local
851 TypeHandle type1 = *it1; local
860 TypeHandle type1 = *i; local
904 TypeHandle type1 = T.Range(min1, max1); local
928 TypeHandle type1 = T.Context(outer1); local
939 TypeHandle type1 = T.Array1(element1); local
950 TypeHandle type1 = T.Function0(result1, receiver1); local
974 TypeHandle type1 = *it1; local
1103 TypeHandle type1 = *it1; local
1115 TypeHandle type1 = *it1; local
1125 TypeHandle type1 = *it1; local
1243 TypeHandle type1 = *it1; local
1252 TypeHandle type1 = *it1; local
1262 TypeHandle type1 = *it1; local
1272 TypeHandle type1 = *it1; local
1408 TypeHandle type1 = *it1; local
1440 TypeHandle type1 = *it1; local
1451 TypeHandle type1 = *it1; local
1505 TypeHandle type1 = *it1; local
1653 TypeHandle type1 = *it1; local
1706 TypeHandle type1 = *it1; local
1758 TypeHandle type1 = *it1; local
1915 TypeHandle type1 = *it1; local
1926 TypeHandle type1 = *it1; local
1944 TypeHandle type1 = *it; local
1954 TypeHandle type1 = *it1; local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
ResourceManagerTest.java 29 private void doTestReclaimResource(int type1, int type2) throws Exception {
33 activity.testReclaimResource(type1, type2);
ResourceManagerStubActivity.java 69 public void testReclaimResource(int type1, int type2) throws InterruptedException {
70 mType1 = type1;
72 if (type1 != ResourceManagerTestActivityBase.TYPE_MIX && type1 != type2) {
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
config.hpp 56 # define ASIO_MOVE_CAST2(type1, type2) static_cast<type1, type2&&>
75 # define ASIO_MOVE_CAST2(type1, type2) static_cast<const type1, type2&>
  /bionic/libc/bionic/
mntent.cpp 48 int fsname0, fsname1, dir0, dir1, type0, type1, opts0, opts1; local
50 &fsname0, &fsname1, &dir0, &dir1, &type0, &type1, &opts0, &opts1,
59 buf[type1] = '\0';
  /art/test/046-reflect/src/
Main.java 616 Type type1 = types1.get(0); local
620 if (type1 instanceof ParameterizedType) {
621 System.out.println("type1 is a ParameterizedType");
630 if (type1.equals(type2)) {
631 System.out.println("type1("+type1+") equals type2("+type2+")");
633 System.out.println("type1("+type1+") does not equal type2("+type2+")");
636 if (type1.equals(type3)) {
637 System.out.println("type1("+type1+") equals type3("+type3+")")
672 Type type1 = types1.get(0); local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SmallStructsTest.java 191 * struct two_element_struct_X { TYPE1 a; TYPE2 b };
199 for (String type1: sTwoElementStructTypes) {
202 String tag = type1 + "_" + type2;
213 Object initialValueA = getInitialValue(type1);
216 int.class, getUnwrappedClassForType(type1), boolean.class);
  /external/clang/test/SemaTemplate/
instantiate-exception-spec-cxx11.cpp 85 base(const typename T::type1 &);
90 struct type1 { struct in namespace:core_19754_example
101 typedef type1<types> type1; typedef in struct:core_19754_example::types
canonical-expr-type.cpp 42 typedef T __attribute__((ext_vector_type(N))) type1; typedef in struct:X2
46 void f0(type1); // expected-note{{previous}}
  /external/google-breakpad/src/third_party/lss/
linux_syscall_support.h     [all...]
  /external/freetype/src/psaux/
t1cmap.c 29 /***** TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS *****/
42 cmap->num_glyphs = (FT_UInt)face->type1.num_glyphs;
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names;
176 /***** TYPE1 CUSTOM ENCODING CMAP *****/
187 T1_Encoding encoding = &face->type1.encoding;
272 /***** TYPE1 SYNTHETIC UNICODE ENCODING CMAP *****/
281 return face->type1.glyph_names[idx];
298 (FT_UInt)face->type1.num_glyphs,
  /external/opencv3/modules/core/src/
precomp.hpp 116 typedef T1 type1; typedef in struct:cv::OpAdd
124 typedef T1 type1; typedef in struct:cv::OpSub
132 typedef T1 type1; typedef in struct:cv::OpRSub
140 typedef T type1; typedef in struct:cv::OpMin
148 typedef T type1; typedef in struct:cv::OpMax
  /external/pdfium/third_party/freetype/src/psaux/
t1cmap.c 29 /***** TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS *****/
42 cmap->num_glyphs = (FT_UInt)face->type1.num_glyphs;
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names;
176 /***** TYPE1 CUSTOM ENCODING CMAP *****/
187 T1_Encoding encoding = &face->type1.encoding;
272 /***** TYPE1 SYNTHETIC UNICODE ENCODING CMAP *****/
281 return face->type1.glyph_names[idx];
298 (FT_UInt)face->type1.num_glyphs,

Completed in 874 milliseconds

1 2 3 4 5 6 7 8 91011>>