Searched defs:hints (Results 1 - 25 of 114) sorted by relevance

12345

/external/chromium_org/third_party/freetype/src/autofit/
H A Dafdummy.c26 af_dummy_hints_init( AF_GlyphHints hints, argument
29 af_glyph_hints_rescale( hints,
36 af_dummy_hints_apply( AF_GlyphHints hints, argument
39 FT_UNUSED( hints );
H A Dafindic.c73 af_indic_hints_init( AF_GlyphHints hints, argument
77 return af_cjk_hints_init( hints, metrics );
82 af_indic_hints_apply( AF_GlyphHints hints, argument
87 return af_cjk_hints_apply( hints, outline, metrics );
H A Dafloader.h46 AF_GlyphHintsRec hints; member in struct:AF_LoaderRec_
H A Dafloader.c37 af_glyph_hints_init( &loader->hints, memory );
39 _af_debug_hints = &loader->hints;
84 af_glyph_hints_done( &loader->hints );
112 AF_GlyphHints hints = &loader->hints; local
171 loader->pp1.x = hints->x_delta;
172 loader->pp1.y = hints->y_delta;
174 hints->x_scale ) + hints->x_delta;
175 loader->pp2.y = hints
[all...]
H A Dafwarp.c163 AF_GlyphHints hints,
185 org_scale = hints->y_scale;
186 org_delta = hints->y_delta;
190 org_scale = hints->x_scale;
191 org_delta = hints->x_delta;
199 axis = &hints->axis[dim];
202 points = hints->points;
203 num_points = hints->num_points;
357 hints->xmin_delta = FT_MulFix( X1, best_scale - org_scale )
359 hints
162 af_warper_compute( AF_Warper warper, AF_GlyphHints hints, AF_Dimension dim, FT_Fixed *a_scale, FT_Pos *a_delta ) argument
[all...]
/external/freetype/src/autofit/
H A Dafdummy.c26 af_dummy_hints_init( AF_GlyphHints hints, argument
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;
41 af_dummy_hints_apply( AF_GlyphHints hints, argument
47 error = af_glyph_hints_reload( hints, outline );
49 af_glyph_hints_save( hints, outline );
H A Dafindic.c73 af_indic_hints_init( AF_GlyphHints hints, argument
77 return af_cjk_hints_init( hints, metrics );
82 af_indic_hints_apply( AF_GlyphHints hints, argument
87 return af_cjk_hints_apply( hints, outline, metrics );
H A Dafloader.h46 AF_GlyphHintsRec hints; member in struct:AF_LoaderRec_
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Dgetaddrinfo.c9 const struct addrinfo *hints,
11 return ki_getaddrinfo(node, service, hints, res);
8 getaddrinfo(const char *node, const char *service, const struct addrinfo *hints, struct addrinfo **res) argument
/external/android-clat/
H A Ddns64.c39 const struct addrinfo hints = { local
49 status = android_getaddrinfofornet(ipv4_name, NULL, &hints, net_id, MARK_UNSET, &result);
/external/oprofile/libpp/
H A Dprofile_container.h90 : hints(cf_none), threshold(0.0), match_image(false) {}
92 /// hints filled in
93 column_flags hints; member in struct:profile_container::symbol_choice
176 * Optimization hints for what information we are going to need,
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DDecodeThread.java40 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);
H A DDecodeHandler.java42 DecodeHandler(CaptureActivity activity, Hashtable<DecodeHintType,Object> hints) { argument
44 multiFormatReader.setHints(hints);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_host_resolver_interface.cc22 PP_HostResolver_Hint hints; member in class:__anon8947::FakeHostResolverResource
52 const PP_HostResolver_Hint* hints,
57 resolver->hints = *hints;
81 if (res->hints.family == PP_NETADDRESS_FAMILY_IPV6 ||
82 res->hints.family == PP_NETADDRESS_FAMILY_UNSPECIFIED)
85 if (res->hints.family == PP_NETADDRESS_FAMILY_IPV4 ||
86 res->hints.family == PP_NETADDRESS_FAMILY_UNSPECIFIED)
101 switch (res->hints.family) {
49 Resolve(PP_Resource resource, const char* hostname, uint16_t, const PP_HostResolver_Hint* hints, PP_CompletionCallback callback) argument
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dhost_resolver_test.cc90 struct addrinfo hints; local
93 memset(&hints, 0, sizeof(hints));
94 hints.ai_family = AF_INET;
95 hints.ai_socktype = SOCK_STREAM;
98 ASSERT_EQ(0, ki_getaddrinfo("1.2.3.4", NULL, &hints, &ai));
113 struct addrinfo hints; local
115 memset(&hints, 0, sizeof(hints));
116 hints
148 struct addrinfo hints; local
194 struct addrinfo hints; local
246 struct addrinfo hints; local
268 struct addrinfo hints; local
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Ddisk_format_base.h58 int32 hints[4]; // Last used position for each entry type. member in struct:disk_cache::BlockFileHeader
/external/chromium_org/net/dns/
H A Dhost_resolver_proc.cc131 struct addrinfo hints = {0}; local
135 hints.ai_family = AF_INET;
138 hints.ai_family = AF_INET6;
141 hints.ai_family = AF_UNSPEC;
145 hints.ai_family = AF_UNSPEC;
153 // Flags used in "hints" argument to getaddrinfo()
171 hints.ai_flags = 0;
173 hints.ai_flags = AI_ADDRCONFIG;
180 hints.ai_flags &= ~AI_ADDRCONFIG;
183 hints
[all...]
/external/chromium_org/net/tools/flip_server/
H A Dcreate_listener.cc112 struct addrinfo hints; local
113 memset(&hints, 0, sizeof(hints));
116 hints.ai_flags = AI_NUMERICHOST; // iff you know the name is numeric.
118 hints.ai_flags |= AI_PASSIVE;
120 hints.ai_family = PF_INET;
121 hints.ai_socktype = SOCK_STREAM;
124 if ((err = getaddrinfo(node, service, &hints, &results))) {
242 struct addrinfo hints; local
243 memset(&hints,
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptHost.cpp73 void InjectedScriptHost::inspectImpl(PassRefPtr<JSONValue> object, PassRefPtr<JSONValue> hints) argument
77 inspectorAgent->inspect(remoteObject, hints->asObject());
H A DInspectorInspectorAgent.cpp160 void InspectorInspectorAgent::inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints) argument
163 m_frontend->inspect(objectToInspect, hints);
169 m_pendingInspectData.second = hints;
/external/chromium_org/chrome/test/chromedriver/net/
H A Dwebsocket.cc34 struct addrinfo hints; local
35 memset(&hints, 0, sizeof(hints));
36 hints.ai_family = AF_UNSPEC;
37 hints.ai_socktype = SOCK_STREAM;
40 if (getaddrinfo(host.c_str(), NULL, &hints, &result))
/external/chromium_org/media/audio/alsa/
H A Daudio_manager_alsa.cc122 // Constants specified by the ALSA API for device hints.
126 // Loop through the sound cards to get ALSA device hints.
128 void** hints = NULL; local
129 int error = wrapper_->DeviceNameHint(card, kPcmInterfaceName, &hints);
131 GetAlsaDevicesInfo(type, hints, device_names);
133 // Destroy the hints now that we're done with it.
134 wrapper_->DeviceNameFreeHint(hints);
136 DLOG(WARNING) << "GetAlsaAudioDevices: unable to get device hints: "
144 void** hints,
152 for (void** hint_iter = hints; *hint_ite
142 GetAlsaDevicesInfo( AudioManagerAlsa::StreamType type, void** hints, media::AudioDeviceNames* device_names) argument
242 void** hints = NULL; local
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dhost_resolver.cc25 void HintsToPPHints(const addrinfo* hints, PP_HostResolver_Hint* pp_hints) { argument
28 if (hints->ai_family == AF_INET)
30 else if (hints->ai_family == AF_INET6)
33 if (hints->ai_flags & AI_CANONNAME)
37 void CreateAddrInfo(const addrinfo* hints, argument
45 if (hints && hints->ai_socktype)
46 ai->ai_socktype = hints->ai_socktype;
50 if (hints && hints
108 struct addrinfo hints; local
262 const struct addrinfo* hints = hints_in ? hints_in : &default_hints; local
[all...]
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dpshints.h5 /* Interface to Postscript-specific (Type 1 and Type 2) hints */
7 /* T1/T2 hints in the `type1', `cid', and `cff' font drivers. */
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.
139 (*T1_Hints_OpenFunc)( T1_Hints hints );
344 T1_Hints hints; member in struct:T1_Hints_FuncsRec_
658 T2_Hints hints; member in struct:T2_Hints_FuncsRec_
[all...]
/external/chromium_org/third_party/freetype/src/pshinter/
H A Dpshrec.h5 /* 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 */
87 /* hints table descriptor */
92 PS_Hint hints; member in struct:PS_Hint_TableRec_
118 /* dimension-specific hints descriptor */
121 PS_Hint_TableRec hints; member in struct:PS_DimensionRec_
128 /* glyph hints descriptor */
129 /* dimension 0 => X coordinates + vertical hints/stems */
130 /* dimension 1 => Y coordinates + horizontal hints/stem
150 ps_hints_done( PS_Hints hints ); variable
[all...]

Completed in 752 milliseconds

12345