HomeSort by relevance Sort by last modified time
    Searched defs:hint (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/llvm/test/MC/ARM/
invalid-hint-arm.s 3 hint #240 label
4 hint #1000 label
invalid-hint-thumb.s 3 hint #240 label
4 hint #1000 label
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
invalid-hint-arm.s 3 hint #240 label
4 hint #1000 label
invalid-hint-thumb.s 3 hint #240 label
4 hint #1000 label
  /external/compiler-rt/test/msan/
mmap_below_shadow.cc 3 // Without MAP_FIXED, we ignore the address hint and map somewhere in
17 // Hint address just below shadow.
19 uintptr_t hint = 0x0f0000000000ULL; local
22 uintptr_t hint = 0x4f0000000000ULL;
25 uintptr_t hint = 0x4f00000000ULL;
28 uintptr_t hint = 0x2f0000000000ULL;
31 uintptr_t hint = 0x4f0000000ULL;
35 (void *)hint, 4096, PROT_WRITE,
allocator_mapping.cc 21 void *const hint = reinterpret_cast<void *>(HEAP_ADDRESS); local
22 void *p = mmap(hint, 4096, PROT_READ | PROT_WRITE,
27 assert(p != hint);
getaddrinfo-positive.cc 15 struct addrinfo hint; local
18 res = getaddrinfo("localhost", NULL, &hint, &ai);
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
ExtractedTextTest.java 47 SpannableStringBuilder hint = new SpannableStringBuilder("hint"); local
48 hint.setSpan(new StyleSpan(Typeface.BOLD), 1, 3, Spanned.SPAN_INCLUSIVE_INCLUSIVE);
49 extractedText.hint = hint;
61 assertEquals(extractedText.hint.toString(), target.hint.toString());
62 final Spannable hintText = (Spannable) extractedText.hint;
  /external/mockito/src/main/java/org/mockito/internal/junit/
StubbingHint.java 8 * Stubbing hint emitted to the user
12 private final StringBuilder hint; field in class:StubbingHint
15 hint = new StringBuilder("[MockitoHint] ")
20 hint.append("\n[MockitoHint] ");
22 hint.append(e);
27 return hint.toString() + "\n";
StubbingArgMismatches.java 36 StubbingHint hint = new StubbingHint(testName); local
39 hint.appendLine(x++, ". Unused... ", m.getKey().getLocation());
41 hint.appendLine(" ...args ok? ", invocation.getLocation());
45 logger.log(hint.toString());
UnusedStubbings.java 32 StubbingHint hint = new StubbingHint(testName); local
36 hint.appendLine(x++, ". Unused ", candidate.getInvocation().getLocation());
39 logger.log(hint.toString());
  /external/boringssl/src/crypto/bio/
socket_helper.c 46 struct addrinfo hint, *result, *cur; local
51 OPENSSL_memset(&hint, 0, sizeof(hint));
52 hint.ai_family = AF_UNSPEC;
53 hint.ai_socktype = SOCK_STREAM;
55 ret = getaddrinfo(hostname, port_str, &hint, &result);
  /external/capstone/bindings/ocaml/
sparc.ml 24 hint: int; Record field in type:cs_sparc
  /external/tensorflow/tensorflow/compiler/xla/service/
compiler.cc 101 string hint; local
103 hint = " (hint: try linking in tensorflow/compiler/jit:xla_cpu_jit)";
105 hint = " (hint: try linking in tensorflow/compiler/jit:xla_gpu_jit)";
111 platform->Name(), hint);
  /external/capstone/bindings/java/capstone/
Sparc.java 56 public int hint; field in class:Sparc.UnionOpInfo
67 readField("hint");
76 return Arrays.asList("cc", "hint", "op_count", "op");
82 public int hint; field in class:Sparc.OpInfo
88 hint = op_info.hint;
  /external/elfutils/libdwfl/
segment.c 131 lookup (Dwfl *dwfl, GElf_Addr address, int hint)
133 if (hint >= 0
134 && address >= dwfl->lookup_addr[hint]
135 && ((size_t) hint + 1 == dwfl->lookup_elts
136 || address < dwfl->lookup_addr[hint + 1]))
137 return hint;
160 int hint = -1; local
170 int idx = lookup (dwfl, start, hint);
232 hint = (size_t) idx < dwfl->lookup_elts ? idx : -1;
  /external/freetype/include/freetype/internal/
cffotypes.h 64 FT_Bool hint; member in struct:CFF_GlyphSlotRec_
  /external/freetype/src/cid/
cidobjs.h 105 FT_Bool hint; member in struct:CID_GlyphSlotRec_
  /external/freetype/src/type1/
t1objs.h 120 FT_Bool hint; member in struct:T1_GlyphSlotRec_
  /external/ipsec-tools/src/racoon/
kmpstat.c 212 struct addrinfo hint, *ai; local
215 memset(&hint, 0, sizeof(hint));
216 hint.ai_family = PF_UNSPEC;
217 hint.ai_family = family;
218 hint.ai_socktype = SOCK_STREAM;
220 error = getaddrinfo(name, port, &hint, &ai);
  /external/linux-kselftest/tools/testing/selftests/vm/
virtual_address_range.c 25 * Address space till 128TB is mapped without any hint
27 * till 512TB is obtained by passing hint address as the
101 char *hint; local
120 hint = hind_addr();
121 hptr[i] = mmap(hint, MAP_CHUNK_SIZE, PROT_READ | PROT_WRITE,
  /external/v8/src/builtins/
builtins-date-gen.cc 184 Node* hint = Parameter(Descriptor::kHint); local
197 GotoIf(WordEqual(hint, number_string), &hint_is_number);
199 GotoIf(WordEqual(hint, default_string), &hint_is_string);
201 GotoIf(WordEqual(hint, string_string), &hint_is_string);
204 GotoIf(TaggedIsSmi(hint), &hint_is_invalid);
205 GotoIfNot(IsString(hint), &hint_is_invalid);
207 CallBuiltin(Builtins::kStringEqual, context, hint, number_string),
211 CallBuiltin(Builtins::kStringEqual, context, hint, default_string),
215 CallBuiltin(Builtins::kStringEqual, context, hint, string_string),
238 // Raise a TypeError if the {hint} is invalid
    [all...]
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
AutofillHints.java 106 String hint = hints.get(i); local
111 if (isW3cSectionPrefix(hint) && i < hints.size() - 1) {
113 hint = hints.get(i);
114 logd("Hint is a W3C section prefix; using %s instead", hint);
119 if (isW3cTypePrefix(hint) && nextHint != null && isW3cTypeHint(nextHint)) {
120 hint = nextHint;
122 logd("Hint is a W3C type prefix; using %s instead", hint);
124 if (isW3cAddressType(hint) && nextHint != null)
    [all...]
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/
ClientAutofillDataBuilder.java 121 String hint = hints[i]; local
122 // Then check if the "actual" hint is supported.
123 FieldTypeWithHeuristics fieldTypeWithHeuristics = mFieldTypesByAutofillHint.get(hint);
129 // Only add the field if the hint is supported by the type.
132 loge("Text is invalid type for hint '%s'", hint);
138 loge("List is invalid type for hint '%s'", hint);
144 loge("Date is invalid type for hint '%s'", hint);
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
AutofillHints.java 106 String hint = hints.get(i); local
111 if (isW3cSectionPrefix(hint) && i < hints.size() - 1) {
113 hint = hints.get(i);
114 logd("Hint is a W3C section prefix; using %s instead", hint);
119 if (isW3cTypePrefix(hint) && nextHint != null && isW3cTypeHint(nextHint)) {
120 hint = nextHint;
122 logd("Hint is a W3C type prefix; using %s instead", hint);
124 if (isW3cAddressType(hint) && nextHint != null)
    [all...]

Completed in 650 milliseconds

1 2 3 4 5