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

1 2 3 4 5 6 7 8 91011>>

  /external/freetype/src/autofit/
afdummy.c 26 af_dummy_hints_init( AF_GlyphHints hints,
29 af_glyph_hints_rescale( hints, metrics );
31 hints->x_scale = metrics->scaler.x_scale;
32 hints->y_scale = metrics->scaler.y_scale;
33 hints->x_delta = metrics->scaler.x_delta;
34 hints->y_delta = metrics->scaler.y_delta;
42 AF_GlyphHints hints,
50 error = af_glyph_hints_reload( hints, outline );
52 af_glyph_hints_save( hints, outline );
afhints.c 242 af_get_segment_index( AF_GlyphHints hints,
246 AF_AxisHints axis = &hints->axis[dimension];
247 AF_Point point = hints->points + point_idx;
287 af_get_edge_index( AF_GlyphHints hints,
291 AF_AxisHints axis = &hints->axis[dimension];
304 af_glyph_hints_dump_points( AF_GlyphHints hints,
307 AF_Point points = hints->points;
308 AF_Point limit = points + hints->num_points;
309 AF_Point* contour = hints->contours;
310 AF_Point* climit = contour + hints->num_contours
    [all...]
afindic.c 73 af_indic_hints_init( AF_GlyphHints hints,
77 return af_cjk_hints_init( hints, metrics );
83 AF_GlyphHints hints,
88 return af_cjk_hints_apply( glyph_index, hints, outline, metrics );
  /external/freetype/include/freetype/internal/
pshints.h 5 /* Interface to Postscript-specific (Type 1 and Type 2) hints */
7 /* T1/T2 hints in the `type1', `cid', and `cff' font drivers. */
71 /***** PUBLIC TYPE 1 HINTS RECORDER *****/
82 * This is a handle to an opaque structure used to record glyph hints
86 * @T1_Hints_FuncsRec structure. Recording glyph hints is normally
97 * returns an error code if the hints were invalid or something
100 * The hints accumulated in the object can later be used by the
127 * hints recording session.
130 * hints ::
131 * A handle to the Type 1 hints recorder
344 T1_Hints hints; member in struct:T1_Hints_FuncsRec_
658 T2_Hints hints; member in struct:T2_Hints_FuncsRec_
    [all...]
  /system/core/libcutils/
socket_network_client_windows.cpp 39 struct addrinfo hints; local
40 memset(&hints, 0, sizeof(hints));
41 hints.ai_socktype = type;
46 if (getaddrinfo(host, port_str, &hints, &address) != 0 || address == NULL) {
  /external/ltp/testcases/network/lib6/
getaddrinfo_01.c 68 struct addrinfo *aires, hints, *pai; local
84 memset(&hints, 0, sizeof(hints));
85 hints.ai_family = AF_INET;
86 TEST(getaddrinfo(hostname, 0, &hints, &aires));
124 memset(&hints, 0, sizeof(hints));
125 hints.ai_family = AF_INET;
126 hints.ai_flags = AI_CANONNAME;
127 TEST(getaddrinfo(shortname, 0, &hints, &aires))
526 struct addrinfo *aires, hints, *pai; local
    [all...]
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
AutofillFieldMetadata.java 24 * autofill hints.
39 String[] hints = AutofillHints.filterForSupportedHints(view.getAutofillHints()); local
40 if (hints != null) {
41 AutofillHints.convertToStoredHintNames(hints);
42 setHints(hints);
50 public void setHints(String[] hints) {
51 mAutofillHints = hints;
52 mSaveType = AutofillHints.getSaveTypeForHints(hints);
  /external/curl/tests/server/
resolve.c 125 struct addrinfo hints; local
127 memset(&hints, 0, sizeof(hints));
128 hints.ai_family = use_ipv6 ? PF_INET6 : PF_INET;
129 hints.ai_socktype = SOCK_STREAM;
130 hints.ai_flags = AI_CANONNAME;
133 rc = (getaddrinfo)(host, "80", &hints, &ai);
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
DecodeThread.java 40 private final Hashtable<DecodeHintType,Object> hints; field in class:DecodeThread
51 hints = new Hashtable<DecodeHintType,Object>();
54 hints.put(DecodeHintType.POSSIBLE_FORMATS, formats);
57 hints.put(DecodeHintType.CHARACTER_SET, characterSet);
59 hints.put(DecodeHintType.NEED_RESULT_POINT_CALLBACK, resultPointCallback);
74 handler = new DecodeHandler(activity, hints);
  /frameworks/base/services/net/java/android/net/dns/
ResolvUtil.java 52 final StructAddrinfo hints = new StructAddrinfo(); local
53 hints.ai_flags = aiFlags;
54 // Other hints identical to the default Inet6AddressImpl implementation
55 hints.ai_family = OsConstants.AF_UNSPEC;
56 hints.ai_socktype = OsConstants.SOCK_STREAM;
61 return Libcore.os.android_getaddrinfo(name, hints, (int) networkForResolv.netId);
  /frameworks/support/slices/core/src/main/java/androidx/slice/core/
SliceQuery.java 41 public static boolean hasAnyHints(SliceItem item, String... hints) {
42 if (hints == null) return false;
44 for (String hint : hints) {
54 public static boolean hasHints(SliceItem item, String... hints) {
55 if (hints == null) return true;
57 for (String hint : hints) {
67 public static boolean hasHints(Slice item, String... hints) {
68 if (hints == null) return true;
70 for (String hint : hints) {
111 public static List<SliceItem> findAll(Slice s, String format, String hints, String nonHints)
    [all...]
  /external/autotest/frontend/
db_router.py 63 def db_for_read(self, model, **hints):
67 @param hints: Optional arguments to determine which database for read.
79 def db_for_write(self, model, **hints):
83 @param hints: Optional arguments to determine which database for write.
95 def allow_relation(self, obj1, obj2, **hints):
101 @param hints: Optional arguments to determine if relation is allowed.
  /external/swiftshader/src/Common/
Socket.cpp 40 addrinfo hints = {}; local
41 hints.ai_family = AF_INET;
42 hints.ai_socktype = SOCK_STREAM;
43 hints.ai_protocol = IPPROTO_TCP;
44 hints.ai_flags = AI_PASSIVE;
47 getaddrinfo(address, port, &hints, &info);
  /external/tensorflow/tensorflow/contrib/linalg/python/ops/
linear_operator_addition.py 151 def _infer_hints_allowing_override(op1, op2, hints):
152 """Infer hints from op1 and op2. hints argument is an override.
157 hints: _Hints object holding "is_X" boolean hints to use for returned
160 hint is provided, ignore op1 and op2 hints. This allows an override
161 of previous hints, but does not allow forbidden hints (e.g. you still
167 hints = hints or _Hints(
    [all...]
  /frameworks/support/slices/core/src/main/java/androidx/slice/
Slice.java 78 private static final String HINTS = "hints";
117 Slice(ArrayList<SliceItem> items, @SliceHint String[] hints, Uri uri,
119 mHints = hints;
130 mHints = in.getStringArray(HINTS);
150 b.putStringArray(HINTS, mHints);
188 * @return All hints associated with this Slice.
243 * Add hints to the Slice being constructed
245 public Builder addHints(@SliceHint String... hints) {
246 mHints.addAll(Arrays.asList(hints));
282 @SliceHint String[] hints = s != null local
295 @SliceHint String[] hints = s != null local
    [all...]
  /libcore/luni/src/main/native/
Portability.h 29 const struct addrinfo* hints, unsigned /*netid*/, unsigned /*mark*/, struct addrinfo** res) {
30 return getaddrinfo(hostname, servname, hints, res);
  /external/freetype/src/pshinter/
pshrec.c 5 /* FreeType PostScript hints recorder (body). */
48 /* destroy hints table */
53 FT_FREE( table->hints );
74 if ( !FT_RENEW_ARRAY( table->hints, old_max, new_max ) )
101 hint = table->hints + count - 1;
549 ps_hint_table_done( &dimension->hints, memory );
557 dimension->hints.num_hints = 0;
677 /* now, lookup stem in the current hints table */
681 FT_UInt max = dim->hints.num_hints;
682 PS_Hint hint = dim->hints.hints
    [all...]
pshmod.c 43 module->t1_funcs.hints = NULL;
44 module->t2_funcs.hints = NULL;
50 /* initialize module, create hints recorder and the interface */
63 module->t1_funcs.hints = (T1_Hints)ph;
66 module->t2_funcs.hints = (T2_Hints)ph;
72 /* returns global hints interface */
80 /* return Type 1 hints interface */
88 /* return Type 2 hints interface */
pshrec.h 5 /* Postscript (Type1/Type2) hints recorder (specification). */
22 /* font drivers to record the hints of a given character/glyph. */
24 /* The hints are recorded in a unified format, and are later processed */
46 /***** GLYPH HINTS RECORDER INTERNALS *****/
83 /* hints table descriptor */
88 PS_Hint hints; member in struct:PS_Hint_TableRec_
114 /* dimension-specific hints descriptor */
117 PS_Hint_TableRec hints; member in struct:PS_DimensionRec_
124 /* glyph hints descriptor */
125 /* dimension 0 => X coordinates + vertical hints/stems *
146 ps_hints_done( PS_Hints hints ); variable
    [all...]
  /frameworks/native/include/android/
multinetwork.h 91 * - |hints| may be NULL (in which case man page documented defaults apply)
100 const struct addrinfo *hints, struct addrinfo **res);
  /external/curl/lib/
hostip6.c 165 struct addrinfo hints; local
197 memset(&hints, 0, sizeof(hints));
198 hints.ai_family = pf;
199 hints.ai_socktype = conn->socktype;
209 hints.ai_flags = AI_NUMERICHOST;
218 error = Curl_getaddrinfo_ex(hostname, sbufptr, &hints, &res);
  /frameworks/base/tests/Internal/src/android/app/
WallpaperColorsTest.java 57 int hints = WallpaperColors.fromBitmap(image).getColorHints(); local
58 boolean supportsDarkText = (hints & WallpaperColors.HINT_SUPPORTS_DARK_TEXT) != 0;
59 boolean supportsDarkTheme = (hints & WallpaperColors.HINT_SUPPORTS_DARK_THEME) != 0;
60 boolean fromBitmap = (hints & WallpaperColors.HINT_FROM_BITMAP) != 0;
67 hints = WallpaperColors.fromBitmap(image).getColorHints();
68 supportsDarkText = (hints & WallpaperColors.HINT_SUPPORTS_DARK_TEXT) != 0;
69 supportsDarkTheme = (hints & WallpaperColors.HINT_SUPPORTS_DARK_THEME) != 0;
  /external/valgrind/none/tests/
ioctl_moans.stderr.exp 1 Warning: noted but unhandled ioctl 0x.2345670 with no size/direction hints.
4 Warning: noted but unhandled ioctl 0x.2345671 with no size/direction hints.
7 Warning: noted but unhandled ioctl 0x.2345672 with no size/direction hints.
10 Warning: noted but unhandled ioctl 0x.2345673 with no size/direction hints.
13 Warning: noted but unhandled ioctl 0x.2345674 with no size/direction hints.
16 Warning: noted but unhandled ioctl 0x.2345675 with no size/direction hints.
19 Warning: noted but unhandled ioctl 0x.2345676 with no size/direction hints.
22 Warning: noted but unhandled ioctl 0x.2345677 with no size/direction hints.
25 Warning: noted but unhandled ioctl 0x.2345678 with no size/direction hints.
28 Warning: noted but unhandled ioctl 0x.2345679 with no size/direction hints
    [all...]
  /external/ltp/testcases/network/stress/ns-tools/
ns-common.c 440 struct addrinfo hints; /* hints for getaddrinfo() */ local
444 memset(&hints, '\0', sizeof(struct addrinfo));
445 hints.ai_family = family;
446 hints.ai_socktype = SOCK_DGRAM;
447 hints.ai_protocol = IPPROTO_UDP;
448 hints.ai_flags |= AI_NUMERICHOST;
450 err = getaddrinfo(maddr, portnum, &hints, &res);
515 struct addrinfo hints; /* hints for getaddrinfo() * local
    [all...]
  /external/pdfium/core/fpdfapi/parser/
cpdf_read_validator_unittest.cpp 99 MockDownloadHints hints; local
100 validator->SetDownloadHints(&hints);
110 EXPECT_EQ(MakeRange(4608, 5120), hints.GetLastRequstedRange());
112 file_avail.SetAvailableRange(hints.GetLastRequstedRange());
113 hints.Reset();
119 EXPECT_EQ(MakeRange(0, 0), hints.GetLastRequstedRange());
129 EXPECT_EQ(validator->GetSize(), hints.GetLastRequstedRange().second);
172 MockDownloadHints hints; local
174 validator->SetDownloadHints(&hints);
210 MockDownloadHints hints; local
254 MockDownloadHints hints; local
    [all...]

Completed in 469 milliseconds

1 2 3 4 5 6 7 8 91011>>