HomeSort by relevance Sort by last modified time
    Searched refs:hints (Results 151 - 175 of 505) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/pdfium/third_party/freetype/src/psaux/
t1decode.c 423 /* begin hints recording session, if any */
425 hinter->open( hinter->hints );
792 case 3: /* change hints */
799 hinter->reset( hinter->hints,
805 /* counter control hints, clear stack */
    [all...]
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OnedCodaBarWriter.cpp 145 int32_t hints,
152 CBC_OneDimWriter::Encode(contents, format, outWidth, outHeight, hints, e);
BC_OnedCode128Writer.cpp 114 int32_t hints,
121 CBC_OneDimWriter::Encode(contents, format, outWidth, outHeight, hints, e);
  /external/wpa_supplicant_8/src/wps/
wps_upnp.c 317 struct addrinfo hints; local
354 os_memset(&hints, 0, sizeof(struct addrinfo));
355 hints.ai_family = AF_INET; /* IPv4 */
356 hints.ai_socktype = SOCK_STREAM;
361 hints.ai_flags = AI_NUMERICHOST;
364 hints.ai_flags = 0;
366 hints.ai_protocol = 0; /* Any protocol? */
368 &hints, &result);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarView.java 307 public void setNavigationIconHints(int hints) {
308 setNavigationIconHints(hints, false);
323 public void setNavigationIconHints(int hints, boolean force) {
324 if (!force && hints == mNavigationIconHints) return;
325 final boolean backAlt = (hints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0;
331 "Navigation icon hints = " + hints, local
335 mNavigationIconHints = hints;
354 final boolean showImeButton = ((hints & StatusBarManager.NAVIGATION_HINT_IME_SHOWN) != 0);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameType.java 45 * {@link #image2D(int, int)} constructors). To optimize access, provide access hints when making
253 * Returns the access hints bit-mask of the FrameType.
254 * @return The access hints bit-mask of the FrameType.
360 private static String keyValueForType(int elemId, int dims, int hints, Class<?> clazz) {
361 return elemId + ":" + dims + ":" + hints + ":" + (clazz != null ? clazz.getName() : "0");
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wspiapi.h 38 typedef int (WINAPI *WSPIAPI_PGETADDRINFO)(const char *nodename,const char *servname,const struct addrinfo *hints,struct addrinfo **res);
64 int WINAPI WspiapiGetAddrInfo(const char *nodename,const char *servname,const struct addrinfo *hints,struct addrinfo **res);
  /system/netd/server/
NetdConstants.cpp 211 addrinfo hints = { local
214 int ret = getaddrinfo(addressString.c_str(), NULL, &hints, &res);
TetherController.cpp 240 addrinfo *res, hints = { .ai_flags = AI_NUMERICHOST }; local
241 int ret = getaddrinfo(servers[i], NULL, &hints, &res);
  /system/weaved/buffet/
socket_stream.cc 68 addrinfo hints = {0, AF_UNSPEC, SOCK_STREAM}; local
70 if (getaddrinfo(host.c_str(), service.c_str(), &hints, &result)) {
  /external/freetype/src/pshinter/
pshalgo.c 46 /***** BASIC HINTS RECORDINGS *****/
51 /* return true if two stem hints overlap */
61 /* destroy hints table */
71 FT_FREE( table->hints );
78 /* deactivate all hints in a table */
83 PSH_Hint hint = table->hints;
99 PSH_Hint hint = table->hints + idx;
108 /* ignore active hints */
138 FT_TRACE0(( "psh_hint_table_record: too many sorted hints! BUG!\n" ));
169 /* create hints table *
    [all...]
  /external/pdfium/third_party/freetype/src/pshinter/
pshalgo.c 46 /***** BASIC HINTS RECORDINGS *****/
51 /* return true if two stem hints overlap */
61 /* destroy hints table */
71 FT_FREE( table->hints );
78 /* deactivate all hints in a table */
83 PSH_Hint hint = table->hints;
99 PSH_Hint hint = table->hints + idx;
108 /* ignore active hints */
138 FT_TRACE0(( "psh_hint_table_record: too many sorted hints! BUG!\n" ));
169 /* create hints table *
    [all...]
  /external/v8/test/unittests/compiler/
js-typed-lowering-unittest.cc 432 BinaryOperationHints const hints = BinaryOperationHints::Any(); local
440 graph()->NewNode(javascript()->ShiftLeft(language_mode, hints), lhs,
452 BinaryOperationHints const hints = BinaryOperationHints::Any(); local
460 javascript()->ShiftLeft(language_mode, hints), lhs, rhs, context,
473 BinaryOperationHints const hints = BinaryOperationHints::Any(); local
481 graph()->NewNode(javascript()->ShiftRight(language_mode, hints), lhs,
493 BinaryOperationHints const hints = BinaryOperationHints::Any(); local
501 javascript()->ShiftRight(language_mode, hints), lhs, rhs, context,
515 BinaryOperationHints const hints = BinaryOperationHints::Any(); local
523 javascript()->ShiftRightLogical(language_mode, hints), lhs
535 BinaryOperationHints const hints = BinaryOperationHints::Any(); local
888 BinaryOperationHints const hints = BinaryOperationHints::Any(); local
    [all...]
  /external/dbus/dbus/
dbus-sysdeps-win.c 1258 struct addrinfo hints; local
1265 _DBUS_ZERO (hints);
1268 hints.ai_family = AF_UNSPEC;
1270 hints.ai_family = AF_INET;
1272 hints.ai_family = AF_INET6;
1280 hints.ai_protocol = IPPROTO_TCP;
1281 hints.ai_socktype = SOCK_STREAM;
1283 hints.ai_flags = AI_ADDRCONFIG;
1285 hints.ai_flags = 0;
1288 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0 || !ai
1392 struct addrinfo hints; local
    [all...]
dbus-sysdeps-unix.c 1300 struct addrinfo hints; local
1416 struct addrinfo hints; local
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_spdy.c 578 struct addrinfo hints; local
586 memset(&hints, 0, sizeof(struct addrinfo));
587 hints.ai_family = AF_UNSPEC;
588 hints.ai_socktype = SOCK_STREAM;
589 rv = getaddrinfo(host, service, &hints, &res);
  /external/libmicrohttpd/src/testspdy/
test_notls.c 468 struct addrinfo hints; local
474 memset(&hints, 0, sizeof(struct addrinfo));
475 hints.ai_family = AF_UNSPEC;
476 hints.ai_socktype = SOCK_STREAM;
477 rv = getaddrinfo(host, service, &hints, &res);
  /external/toybox/toys/other/
ifconfig.c 63 struct addrinfo hints, *result, *rp = 0; local
67 memset(&hints, 0 , sizeof(struct addrinfo));
68 hints.ai_family = af;
69 hints.ai_socktype = SOCK_STREAM;
74 status = getaddrinfo(host, NULL, &hints, &result);
  /external/toybox/toys/pending/
telnetd.c 69 struct addrinfo hints, *result; local
98 memset(&hints, 0 , sizeof(struct addrinfo));
99 hints.ai_family = af;
100 hints.ai_socktype = SOCK_STREAM;
102 status = getaddrinfo(host, NULL, &hints, &result);
  /external/zxing/core/
core.jar 
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationManagerService.java 261 private int mListenerHints; // right now, all hints are global
1139 final int hints = calculateHints(); local
1213 int hints = 0; local
1227 int hints = calculateHints(); local
    [all...]
  /external/ipsec-tools/src/racoon/
sockmisc.c 982 struct addrinfo hints, *res; local
986 memset(&hints, 0, sizeof(hints));
987 hints.ai_family = PF_UNSPEC;
988 hints.ai_socktype = SOCK_DGRAM;
989 hints.ai_flags = AI_NUMERICHOST;
990 error = getaddrinfo(host, port, &hints, &res);
  /frameworks/base/core/java/android/service/notification/
NotificationListenerService.java 121 /** {@link #getCurrentListenerHints() Listener hints} constant - the primary device UI
126 /** {@link #getCurrentListenerHints() Listener hints} constant - the primary device UI
131 /** {@link #getCurrentListenerHints() Listener hints} constant - the primary device UI
315 * {@link #getCurrentListenerHints() Listener hints} change.
317 * @param hints The current {@link #getCurrentListenerHints() listener hints}.
319 public void onListenerHintsChanged(int hints) {
593 * Gets the set of hints representing current state.
647 * Sets the desired {@link #getCurrentListenerHints() listener hints}.
658 * @param hints One or more of the HINT_ constants
1462 final int hints = msg.arg1; local
    [all...]
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_dump_layers.cpp 258 "Orientation = %s, Flags = %s%s%s, Hints = %s%s%s, "
272 (layer->hints)? "":"[None]",
273 (layer->hints & HWC_HINT_TRIPLE_BUFFER)? "[Triple Buffer]":"",
274 (layer->hints & HWC_HINT_CLEAR_FB)? "[Clear FB]":"",
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_dump_layers.cpp 257 "Orientation = %s, Flags = %s%s%s, Hints = %s%s%s, "
271 (layer->hints)? "":"[None]",
272 (layer->hints & HWC_HINT_TRIPLE_BUFFER)? "[Triple Buffer]":"",
273 (layer->hints & HWC_HINT_CLEAR_FB)? "[Clear FB]":"",

Completed in 1670 milliseconds

1 2 3 4 5 67 8 91011>>