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

12 3 4 5 6 7 8 91011>>

  /external/pdfium/fpdfsdk/
fpdf_dataavail_embeddertest.cpp 58 FX_DOWNLOADHINTS* hints() { return this; } function in class:__anon31200::TestAsyncLoader
161 MockDownloadHints hints; local
162 EXPECT_FALSE(FPDFAvail_IsDocAvail(avail_, &hints));
168 MockDownloadHints hints; local
169 EXPECT_FALSE(FPDFAvail_IsDocAvail(avail_, &hints));
175 ASSERT_EQ(PDF_DATA_AVAIL, FPDFAvail_IsDocAvail(avail_, loader.hints()));
178 ASSERT_EQ(PDF_DATA_AVAIL, FPDFAvail_IsPageAvail(avail_, 1, loader.hints()));
190 ASSERT_EQ(PDF_DATA_AVAIL, FPDFAvail_IsDocAvail(avail_, loader.hints()));
202 status = FPDFAvail_IsFormAvail(avail_, loader.hints());
211 ASSERT_EQ(PDF_DATA_AVAIL, FPDFAvail_IsDocAvail(avail_, loader.hints()));
    [all...]
  /device/generic/goldfish/wifi/ipv6proxy/
address.cpp 63 struct addrinfo hints; local
64 memset(&hints, 0, sizeof(hints));
65 hints.ai_family = AF_INET6;
66 hints.ai_socktype = SOCK_RAW;
68 int res = ::getaddrinfo(address.c_str(), nullptr, &hints, &addrinfo);
  /external/curl/lib/
hostip4.c 140 struct addrinfo hints; local
144 memset(&hints, 0, sizeof(hints));
145 hints.ai_family = PF_INET;
146 hints.ai_socktype = SOCK_STREAM;
152 (void)Curl_getaddrinfo_ex(hostname, sbufptr, &hints, &ai);
  /system/core/libcutils/
socket_network_client_unix.cpp 48 struct addrinfo hints; local
49 memset(&hints, 0, sizeof(hints));
50 hints.ai_family = AF_UNSPEC;
51 hints.ai_socktype = type;
57 *getaddrinfo_error = getaddrinfo(host, port_str, &hints, &addrs);
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
AutofillHints.java 74 @NonNull List<String> hints) {
75 return getFieldTypeNameFromAutofillHints(fieldTypesByAutofillHint, hints, PARTITION_ALL);
80 @NonNull List<String> hints, int partition) {
81 List<String> fieldTypeNames = removePrefixes(hints)
102 private static List<String> removePrefixes(@NonNull List<String> hints) {
105 for (int i = 0; i < hints.size(); i++) {
106 String hint = hints.get(i);
107 if (i < hints.size() - 1) {
108 nextHint = hints.get(i + 1);
110 // First convert the compound W3C autofill hints
    [all...]
  /frameworks/base/core/java/android/app/slice/
SliceItem.java 42 * A SliceItem a piece of content and some hints about what that content
53 * The hints that a {@link SliceItem} are a set of strings which annotate
54 * the content. The hints that are guaranteed to be understood by the system
132 List<String> hints) {
133 this(obj, format, subType, hints.toArray(new String[hints.size()]));
140 @Slice.SliceHint String[] hints) {
141 mHints = hints;
151 @Slice.SliceHint String[] hints) {
152 this(new Pair<>(intent, slice), format, subType, hints);
    [all...]
Slice.java 277 Slice(ArrayList<SliceItem> items, @SliceHint String[] hints, Uri uri, SliceSpec spec) {
278 mHints = hints;
317 * @return All hints associated with this Slice.
409 * Add hints to the Slice being constructed
411 public Builder addHints(@SliceHint List<String> hints) {
412 mHints.addAll(hints);
446 List<String> hints = s.getHints(); local
448 mItems.add(new SliceItem(action, s, SliceItem.FORMAT_ACTION, subType, hints.toArray(
449 new String[hints.size()])));
459 @SliceHint List<String> hints) {
    [all...]
SliceQuery.java 90 public static List<SliceItem> findAll(SliceItem s, String type, String hints, String nonHints) {
91 return findAll(s, type, new String[]{ hints }, new String[]{ nonHints });
97 public static List<SliceItem> findAll(SliceItem s, String type, String[] hints,
100 && (item.hasHints(hints) && !item.hasAnyHints(nonHints)))
107 public static SliceItem find(Slice s, String type, String hints, String nonHints) {
108 return find(s, type, new String[]{ hints }, new String[]{ nonHints });
128 public static SliceItem find(SliceItem s, String type, String hints, String nonHints) {
129 return find(s, type, new String[]{ hints }, new String[]{ nonHints });
135 public static SliceItem find(Slice s, String type, String[] hints, String[] nonHints) {
138 type, hints, nonHints)
    [all...]
  /external/freetype/src/autofit/
afcjk.c 74 AF_GlyphHintsRec hints[1]; local
83 af_glyph_hints_init( hints, face->memory );
176 af_glyph_hints_rescale( hints, (AF_StyleMetrics)dummy );
178 error = af_glyph_hints_reload( hints, &face->glyph->outline );
185 AF_AxisHints axhints = &hints->axis[dim];
190 error = af_latin_hints_compute_segments( hints,
201 af_latin_hints_link_segments( hints,
271 af_glyph_hints_done( hints );
780 af_cjk_hints_compute_segments( AF_GlyphHints hints,
783 AF_AxisHints axis = &hints->axis[dim]
    [all...]
afloader.h 44 AF_GlyphHints hints; member in struct:AF_LoaderRec_
58 AF_GlyphHints hints );
aflatin2.c 51 af_latin2_hints_compute_segments( AF_GlyphHints hints,
55 af_latin2_hints_link_segments( AF_GlyphHints hints,
71 AF_GlyphHintsRec hints[1]; local
74 af_glyph_hints_init( hints, face->memory );
106 af_glyph_hints_rescale( hints, (AF_StyleMetrics)dummy );
108 error = af_glyph_hints_reload( hints, &face->glyph->outline );
115 AF_AxisHints axhints = &hints->axis[dim];
120 error = af_latin2_hints_compute_segments( hints,
125 af_latin2_hints_link_segments( hints,
172 af_glyph_hints_done( hints );
    [all...]
  /external/v8/src/
type-hints.cc 5 #include "src/type-hints.h"
110 std::ostream& operator<<(std::ostream& os, ToBooleanHints hints) {
111 if (hints == ToBooleanHint::kAny) return os << "Any";
112 if (hints == ToBooleanHint::kNone) return os << "None";
116 if (hints & hint) {
125 std::string ToString(ToBooleanHints hints) {
126 if (hints == ToBooleanHint::kAny) return "Any";
127 if (hints == ToBooleanHint::kNone) return "None";
132 if (hints & hint) {
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
GuidedActionStylistTest.java 132 String[] hints = new String[]{"hint1", "hint2"}; local
135 .autofillHints(hints)
142 assertTrue(Arrays.equals(mViewHolder.mTitleView.getAutofillHints(), hints)); local
151 String[] hints = new String[]{"hint1", "hint2"}; local
154 .autofillHints(hints)
172 String[] hints = new String[]{"hint1", "hint2"}; local
176 .autofillHints(hints)
182 assertTrue(Arrays.equals(mViewHolder.mDescriptionView.getAutofillHints(), hints)); local
  /external/libevent/
evutil.c 797 * socktype and protocol info from hints. If they weren't set, then
802 const struct evutil_addrinfo *hints)
805 EVUTIL_ASSERT(hints);
807 if (hints->ai_socktype == 0 && hints->ai_protocol == 0) {
811 memcpy(&tmp, hints, sizeof(tmp));
836 res->ai_socktype = hints->ai_socktype;
837 res->ai_protocol = hints->ai_protocol;
876 const struct evutil_addrinfo *hints)
882 if (!(hints->ai_flags & EVUTIL_AI_NUMERICSERV))
1255 struct evutil_addrinfo hints; local
1356 struct evutil_addrinfo hints; local
    [all...]
  /hardware/qcom/display/msm8909/sdm/libs/hwc/
cpuhint.h 55 int (*fn_lock_acquire_)(int handle, int duration, int *hints, int num_args) = NULL;
  /hardware/qcom/display/msm8909w_3100/sdm/libs/hwc/
cpuhint.h 55 int (*fn_lock_acquire_)(int handle, int duration, int *hints, int num_args) = NULL;
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
cpuhint.h 55 int (*fn_lock_acquire_)(int handle, int duration, int *hints, int num_args) = NULL;
  /hardware/qcom/display/msm8998/sdm/libs/hwc2/
cpuhint.h 55 int (*fn_lock_acquire_)(int handle, int duration, int *hints, int num_args) = NULL;
  /packages/services/Car/car-lib/src/android/car/app/menu/
CarMenuCallbacks.java 27 * @param hints Hints that the Drawer can use to modify behavior. It can be null.
28 * @return The {@link RootMenu} which contains the root id and any hints
30 public abstract RootMenu getRootMenu(Bundle hints);
  /external/pdfium/public/
fpdf_dataavail.h 71 // Download hints interface. Used to receive hints for further downloading.
93 // Checks if the document is ready for loading, if not, gets download hints.
96 // hints - pointer to a download hints interface.
104 // all the generated download hints, if any, until the function returns
106 // if hints is nullptr, the function just check current document availability.
111 FX_DOWNLOADHINTS* hints);
141 // hints - pointer to a download hints interface. Populated i
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
netdb.h 106 const struct addrinfo *hints,
114 #define getaddrinfo(nodname, servname, hints, res) \
115 lwip_getaddrinfo(nodname, servname, hints, res)
  /system/extras/multinetwork/
dnschk.cpp 38 const struct addrinfo hints = { local
51 args.arg1, nullptr, &hints, &result);
62 rval = getaddrinfo(args.arg1, nullptr, &hints, &result);
  /frameworks/support/slices/core/src/main/java/androidx/slice/
SliceItem.java 54 * A SliceItem a piece of content and some hints about what that content
63 * The hints that a {@link SliceItem} are a set of strings which annotate
64 * the content. The hints that are guaranteed to be understood by the system
69 private static final String HINTS = "hints";
98 @Slice.SliceHint String[] hints) {
99 mHints = hints;
110 @Slice.SliceHint List<String> hints) {
111 this (obj, format, subType, hints.toArray(new String[hints.size()]))
    [all...]
  /external/ltp/testcases/network/tcp_cmds/sendfile/
testsf_c.c 38 struct addrinfo hints; local
71 memset(&hints, 0, sizeof(hints));
72 hints.ai_family = PFI;
73 if ((gai = getaddrinfo(argv[1], NULL, &hints, &hp)) != 0) {
  /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);

Completed in 3673 milliseconds

12 3 4 5 6 7 8 91011>>