HomeSort by relevance Sort by last modified time
    Searched refs:hints (Results 1 - 25 of 579) 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...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/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 240 af_get_segment_index( AF_GlyphHints hints,
244 AF_AxisHints axis = &hints->axis[dimension];
245 AF_Point point = hints->points + point_idx;
285 af_get_edge_index( AF_GlyphHints hints,
289 AF_AxisHints axis = &hints->axis[dimension];
302 af_glyph_hints_dump_points( AF_GlyphHints hints,
305 AF_Point points = hints->points;
306 AF_Point limit = points + hints->num_points;
312 if ( hints->num_points )
321 int segment_idx_0 = af_get_segment_index( hints, point_idx, 0 )
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/net/
NetJavaServerSocketImpl.java 40 public NetJavaServerSocketImpl (Protocol protocol, int port, ServerSocketHints hints) {
41 this(protocol, null, port, hints);
44 public NetJavaServerSocketImpl (Protocol protocol, String hostname, int port, ServerSocketHints hints) {
51 if (hints != null) {
52 server.setPerformancePreferences(hints.performancePrefConnectionTime, hints.performancePrefLatency,
53 hints.performancePrefBandwidth);
54 server.setReuseAddress(hints.reuseAddress);
55 server.setSoTimeout(hints.acceptTimeout);
56 server.setReceiveBufferSize(hints.receiveBufferSize)
    [all...]
NetJavaSocketImpl.java 37 public NetJavaSocketImpl (Protocol protocol, String host, int port, SocketHints hints) {
41 applyHints(hints); // better to call BEFORE socket is connected!
45 if (hints != null) {
46 socket.connect(address, hints.connectTimeout);
55 public NetJavaSocketImpl (java.net.Socket socket, SocketHints hints) {
57 applyHints(hints);
60 private void applyHints (SocketHints hints) {
61 if (hints != null) {
63 socket.setPerformancePreferences(hints.performancePrefConnectionTime, hints.performancePrefLatency
    [all...]
  /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...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/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...]
  /external/pdfium/third_party/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.c 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/curl/tests/server/
resolve.c 132 struct addrinfo hints; local
134 memset(&hints, 0, sizeof(hints));
135 hints.ai_family = PF_INET6;
136 hints.ai_socktype = SOCK_STREAM;
137 hints.ai_flags = AI_CANONNAME;
140 rc = (getaddrinfo)(host, "80", &hints, &ai);
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRCodeReader.h 29 int32_t hints,
33 int32_t hints,
37 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t hints, int32_t& e);
  /external/v8/src/compiler/
type-hints.cc 5 #include "src/compiler/type-hints.h"
30 std::ostream& operator<<(std::ostream& os, BinaryOperationHints hints) {
31 return os << hints.left() << "*" << hints.right() << "->" << hints.result();
59 std::ostream& operator<<(std::ostream& os, CompareOperationHints hints) {
60 return os << hints.left() << "*" << hints.right() << " (" << hints.combined()
93 std::ostream& operator<<(std::ostream& os, ToBooleanHints hints) {
    [all...]
type-hint-analyzer.h 8 #include "src/compiler/type-hints.h"
16 // The result of analyzing type hints.
25 BinaryOperationHints* hints) const;
27 CompareOperationHints* hints) const;
28 bool GetToBooleanHints(TypeFeedbackId id, ToBooleanHints* hints) const;
  /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);
  /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/pdfium/xfa/src/fxbarcode/oned/
BC_OneDReader.h 19 int32_t hints,
23 int32_t hints,
29 CFX_ByteString DeDecode(CBC_BinaryBitmap* image, int32_t hints, int32_t& e);
BC_OnedUPCAReader.h 23 int32_t hints,
28 int32_t hints,
31 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t hints, int32_t& e);
BC_OnedUPCAReader.cpp 43 int32_t hints,
46 m_ean13Reader->DecodeRow(rowNumber, row, hints, e);
55 int32_t hints,
58 m_ean13Reader->DecodeRow(rowNumber, row, startGuardRange, hints, e);
72 int32_t hints,
74 CFX_ByteString bytestring = m_ean13Reader->Decode(image, hints, e);
  /external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/
HeadlessNet.java 51 public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) {
52 return new NetJavaServerSocketImpl(protocol, hostname, port, hints);
56 public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) {
57 return new NetJavaServerSocketImpl(protocol, port, hints);
61 public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) {
62 return new NetJavaSocketImpl(protocol, host, port, hints);
  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwNet.java 50 public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) {
51 return new NetJavaServerSocketImpl(protocol, hostname, port, hints);
54 public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) {
55 return new NetJavaServerSocketImpl(protocol, port, hints);
58 public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) {
59 return new NetJavaSocketImpl(protocol, host, port, hints);
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglNet.java 50 public ServerSocket newServerSocket (Protocol protocol, String ipAddress, int port, ServerSocketHints hints) {
51 return new NetJavaServerSocketImpl(protocol, ipAddress, port, hints);
55 public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) {
56 return new NetJavaServerSocketImpl(protocol, port, hints);
60 public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) {
61 return new NetJavaSocketImpl(protocol, host, port, hints);
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3Net.java 51 public ServerSocket newServerSocket (Protocol protocol, String ipAddress, int port, ServerSocketHints hints) {
52 return new NetJavaServerSocketImpl(protocol, ipAddress, port, hints);
56 public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) {
57 return new NetJavaServerSocketImpl(protocol, port, hints);
61 public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) {
62 return new NetJavaSocketImpl(protocol, host, port, hints);
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
IOSNet.java 50 public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) {
51 return new NetJavaServerSocketImpl(protocol, hostname, port, hints);
55 public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) {
56 return new NetJavaServerSocketImpl(protocol, port, hints);
60 public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) {
61 return new NetJavaSocketImpl(protocol, host, port, hints);
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSNet.java 52 public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) {
53 return new NetJavaServerSocketImpl(protocol, hostname, port, hints);
57 public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) {
58 return new NetJavaServerSocketImpl(protocol, port, hints);
62 public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) {
63 return new NetJavaSocketImpl(protocol, host, port, hints);

Completed in 1141 milliseconds

1 2 3 4 5 6 7 8 91011>>