HomeSort by relevance Sort by last modified time
    Searched full:hints (Results 76 - 100 of 862) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11video.c 331 XWMHints *hints; local
387 hints = NULL;
390 hints = XGetWMHints(SDL_Display, WMwindow);
402 /* Set the input hints so we get keyboard input */
403 if(!hints) {
404 hints = XAllocWMHints();
405 hints->input = True;
406 hints->flags = InputHint;
408 XSetWMHints(SDL_Display, WMwindow, hints);
409 XFree(hints);
797 XSizeHints *hints; local
    [all...]
  /external/chromium_org/third_party/freetype/src/autofit/
afhints.h 29 * The definition of outline glyph hints. These are shared by all
415 af_glyph_hints_init( AF_GlyphHints hints,
419 af_glyph_hints_rescale( AF_GlyphHints hints,
423 af_glyph_hints_reload( AF_GlyphHints hints,
427 af_glyph_hints_save( AF_GlyphHints hints,
431 af_glyph_hints_align_edge_points( AF_GlyphHints hints,
435 af_glyph_hints_align_strong_points( AF_GlyphHints hints,
439 af_glyph_hints_align_weak_points( AF_GlyphHints hints,
444 af_glyph_hints_scale_dim( AF_GlyphHints hints,
451 af_glyph_hints_done( AF_GlyphHints hints ); variable
    [all...]
afwarp.c 163 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->xmax_delta = FT_MulFix( X2, best_scale - org_scale
    [all...]
  /external/freetype/src/autofit/
afhints.h 29 * The definition of outline glyph hints. These are shared by all
415 af_glyph_hints_init( AF_GlyphHints hints,
419 af_glyph_hints_rescale( AF_GlyphHints hints,
423 af_glyph_hints_reload( AF_GlyphHints hints,
427 af_glyph_hints_save( AF_GlyphHints hints,
431 af_glyph_hints_align_edge_points( AF_GlyphHints hints,
435 af_glyph_hints_align_strong_points( AF_GlyphHints hints,
439 af_glyph_hints_align_weak_points( AF_GlyphHints hints,
444 af_glyph_hints_scale_dim( AF_GlyphHints hints,
451 af_glyph_hints_done( AF_GlyphHints hints ); variable
    [all...]
afwarp.c 163 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->xmax_delta = FT_MulFix( X2, best_scale - org_scale
    [all...]
  /external/opencv/otherlibs/highgui/
cvcap_socket.cpp 124 struct addrinfo hints; local
125 memset(&hints, 0, sizeof hints);
126 hints.ai_family = AF_UNSPEC; // use IPv4 or IPv6, whichever
127 hints.ai_socktype = SOCK_STREAM;
128 hints.ai_flags = AI_NUMERICHOST;
130 int error = getaddrinfo(_address, _port, &hints, &pAddrInfo);
  /external/chromium_org/components/autofill/core/browser/
field_types.h 141 // The list of all HTML autocomplete field type hints supported by Chrome.
142 // See [ http://is.gd/whatwg_autocomplete ] for the full list of specced hints.
187 // Variants of type hints specified in the HTML specification that are
198 // The list of all HTML autocomplete field mode hints supported by Chrome.
199 // See [ http://is.gd/whatwg_autocomplete ] for the full list of specced hints.
  /external/clang/include/clang/Frontend/
DiagnosticRenderer.h 40 /// Hints, and code snippets. In the presence of macros this involves
92 ArrayRef<FixItHint> Hints,
119 ArrayRef<CharSourceRange> Ranges, ArrayRef<FixItHint> Hints,
124 ArrayRef<FixItHint> Hints,
140 /// \param FixItHints The FixIt hints active for this diagnostic.
TextDiagnostic.h 28 /// Hints, and code snippets. In the presence of macros this involves
94 ArrayRef<FixItHint> Hints,
96 emitSnippetAndCaret(Loc, Level, Ranges, Hints, SM);
115 ArrayRef<FixItHint> Hints,
120 void emitParseableFixits(ArrayRef<FixItHint> Hints, const SourceManager &SM);
  /external/chromium_org/third_party/freetype/src/pshinter/
pshalgo.c 48 /***** BASIC HINTS RECORDINGS *****/
53 /* return true if two stem hints overlap */
63 /* destroy hints table */
73 FT_FREE( table->hints );
80 /* deactivate all hints in a table */
85 PSH_Hint hint = table->hints;
101 PSH_Hint hint = table->hints + idx;
110 /* ignore active hints */
140 FT_TRACE0(( "psh_hint_table_record: too many sorted hints! BUG!\n" ));
171 /* create hints table *
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c 48 /***** BASIC HINTS RECORDINGS *****/
53 /* return true if two stem hints overlap */
63 /* destroy hints table */
73 FT_FREE( table->hints );
80 /* deactivate all hints in a table */
85 PSH_Hint hint = table->hints;
101 PSH_Hint hint = table->hints + idx;
110 /* ignore active hints */
140 FT_TRACE0(( "psh_hint_table_record: too many sorted hints! BUG!\n" ));
171 /* create hints table *
    [all...]
  /external/chromium_org/chrome/test/chromedriver/net/
websocket.cc 34 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/openssh/
dns.c 147 struct addrinfo hints, *ai; local
158 memset(&hints, 0, sizeof(hints));
159 hints.ai_socktype = SOCK_DGRAM;
160 hints.ai_flags = AI_NUMERICHOST;
162 if (getaddrinfo(hostname, NULL, &hints, &ai) == 0) {
  /external/chromium_org/media/audio/alsa/
alsa_wrapper.h 24 virtual int DeviceNameHint(int card, const char* iface, void*** hints);
26 virtual int DeviceNameFreeHint(void** hints);
  /external/e2fsprogs/tests/
test_script.in 11 export USE_VALGRIND="valgrind -q --sim-hints=lax-ioctls"
15 export USE_VALGRIND="valgrind --sim-hints=lax-ioctls --leak-check=full --show-reachable=yes --log-file=/tmp/valgrind-%p.log"
  /external/mockito/src/org/mockito/runners/
VerboseMockitoJUnitRunner.java 28 * adds extra Mocktio hints to the exception message.
31 * The implemntation is pretty hacky - it uses brute force of reflection to modify the exception message and add extra mockito hints.
  /frameworks/ex/common/java/com/android/common/speech/
Recognition.java 30 * which is an ArrayList of CharSequences which are hints that can be shown to
35 * If this is paired with EXTRA_HINT_CONTEXT, should return a set of hints that are
  /system/netd/
DnsProxyListener.h 43 // Note: All of host, service, and hints may be NULL
47 struct addrinfo* hints,
  /external/chromium_org/third_party/freetype/src/cff/
cf2hints.c 5 /* Adobe's code for handling CFF hints (body). */
141 * Hints with negative widths were produced by an early version of a
142 * non-Adobe font tool. The Type 2 spec allows edge (ghost) hints
150 * Note: Such fonts cannot use ghost hints, but should otherwise work.
151 * Note: Some poor hints in our faux fonts can produce negative
184 /* Now that ghost hints have been detected, adjust this edge for */
312 /* there are no hints; use uniform scale and zero offset */
359 * In the first pass, edges are adjusted relative to adjacent hints.
528 /* second pass tries to move non-optimal hints up, in case there is */
566 /* set default values, then check for edge hints */
    [all...]
  /external/freetype/src/cff/
cf2hints.c 5 /* Adobe's code for handling CFF hints (body). */
141 * Hints with negative widths were produced by an early version of a
142 * non-Adobe font tool. The Type 2 spec allows edge (ghost) hints
150 * Note: Such fonts cannot use ghost hints, but should otherwise work.
151 * Note: Some poor hints in our faux fonts can produce negative
184 /* Now that ghost hints have been detected, adjust this edge for */
312 /* there are no hints; use uniform scale and zero offset */
359 * In the first pass, edges are adjusted relative to adjacent hints.
528 /* second pass tries to move non-optimal hints up, in case there is */
566 /* set default values, then check for edge hints */
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
proxy_settings_dialog.cc 14 // Hints for size of proxy settings dialog.
  /external/chromium_org/chrome/browser/net/
client_hints_unittest.cc 53 // Hints should be last known good values.
  /external/chromium_org/chrome/browser/ui/cocoa/
hover_close_button.mm 101 hints:nil];
110 hints:nil];
127 hints:nil];
134 hints:nil];
  /external/chromium_org/chrome/browser/ui/cocoa/location_bar/
image_decoration.mm 52 hints:nil];
  /external/chromium_org/ppapi/c/dev/
ppp_text_input_dev.h 30 * plugin has to implement to provide hints for text input system (IME).

Completed in 1110 milliseconds

1 2 34 5 6 7 8 91011>>