HomeSort by relevance Sort by last modified time
    Searched refs:supported (Results 76 - 100 of 736) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
invalid-instructions-spellcheck.s 56 @ Here it is checked that we don't suggest instructions that are not supported.
58 @ because they are not supported.
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/
cprestore-bad.s 10 # CHECK: :[[@LINE-1]]:14: error: .cprestore is not supported in Mips16 mode
cpload-bad.s 9 # ASM: :[[@LINE-1]]:17: error: .cpload is not supported in Mips16 mode
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/SystemZ/
invalid-instructions-spellcheck.s 55 # Here it is checked that we don't suggest instructions that are not supported.
  /external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-dwarfdump/X86/
debug_addr_dwarf64.s 7 # ERR: DWARF64 is not supported in .debug_addr at offset 0x0
  /external/u-boot/arch/arm/cpu/armv7/
config.mk 6 # On supported platforms we set the bit which causes us to trap on unaligned
  /external/cldr/tools/java/org/unicode/cldr/draft/
IntDistanceNode.java 57 private final DistanceNode[][] distanceNodes; // map from desired, supported => node
68 int supported = id.add(e2.getKey()); local
87 int supported = id.add(e2.getKey()); local
93 distanceNodes[desired][supported] = node;
117 public int getDistance(String desired, String supported, Output<DistanceTable> distanceTable, boolean starEquals) {
119 final int supportedId = id.toId(supported); // can optimize later
124 return starEquals && desiredId == supportedId && (desiredId != 0 || desired.equals(supported)) ? 0
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
XLocaleDistance.java 458 public int getDistance(String desired, String supported, Output<DistanceTable> distanceTable, boolean starEquals) {
460 System.err.printf(" Entering getDistance: desired=%s supported=%s starEquals=%s\n",
461 desired, supported, Boolean.toString(starEquals));
466 sub2 = subtables.get(ANY); // <*, supported>
469 DistanceNode value = sub2.get(supported); // <*/desired, supported>
473 sub2 = subtables.get(ANY); // <*, supported>
474 value = sub2.get(supported);
484 int result = starEquals && star && desired.equals(supported) ? 0 : value.distance;
502 DistanceNode addSubtable(String desired, String supported, int distance)
927 List<String> supported = bar.splitToList(supportedRaw); external variable declarations
941 List<String> supported = item2.get1(); external variable declarations
995 List<String> supported = Arrays.asList("*", "*", "*"); external variable declarations
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
XLocaleDistance.java 447 public int getDistance(String desired, String supported, Output<DistanceTable> distanceTable, boolean starEquals) {
449 System.err.printf(" Entering getDistance: desired=%s supported=%s starEquals=%s\n",
450 desired, supported, Boolean.toString(starEquals));
455 sub2 = subtables.get(ANY); // <*, supported>
458 DistanceNode value = sub2.get(supported); // <*/desired, supported>
462 sub2 = subtables.get(ANY); // <*, supported>
463 value = sub2.get(supported);
473 int result = starEquals && star && desired.equals(supported) ? 0 : value.distance;
491 DistanceNode addSubtable(String desired, String supported, int distance)
913 List<String> supported = bar.splitToList(supportedRaw); external variable declarations
927 List<String> supported = item2.get1(); external variable declarations
981 List<String> supported = Arrays.asList("*", "*", "*"); external variable declarations
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_eglimage.c 46 bool supported = screen->is_format_supported(screen, format, PIPE_TEXTURE_2D, local
54 if ((usage == PIPE_BIND_SAMPLER_VIEW) && !supported) {
56 supported = screen->is_format_supported(screen, PIPE_FORMAT_R8_UNORM,
60 supported = screen->is_format_supported(screen, PIPE_FORMAT_R8_UNORM,
69 return supported;
97 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(format not supported)", error);
  /cts/tools/cts-media-preparer-app/src/android/mediastress/cts/preconditions/app/
MediaPreparerAppTest.java 102 boolean supported = true;
104 supported &= MediaUtils.checkDecoderForFormat(format);
106 if (supported) {
107 // update if all MediaFormats for file are supported by device
  /external/boringssl/src/crypto/x509v3/
v3_prn.c 70 unsigned long flag, int indent, int supported);
195 unsigned long flag, int indent, int supported)
203 if (supported)
206 BIO_printf(out, "%*s<Not Supported>", indent, "");
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/
test_VIDIOC_ENUM_FRAMESIZES.c 339 int supported = 0; local
358 supported = 1;
361 return supported;
366 int supported = 0; local
368 supported =
371 if (!supported) {
372 supported =
375 if (!supported) {
376 supported =
379 if (!supported) {
    [all...]
  /external/webrtc/talk/media/base/
fakevideocapturer.h 57 // Default supported formats. Use ResetSupportedFormats to over write.
142 cricket::VideoFormat supported; local
143 if (GetBestCaptureFormat(format, &supported)) {
144 SetCaptureFormat(&supported);
  /build/make/core/
cxx_stl_setup.mk 99 $(error $(LOCAL_PATH): $(LOCAL_MODULE): libstdc++ is not supported)
107 $(error $(LOCAL_PATH): $(LOCAL_MODULE): $(my_cxx_stl) is not a supported STL.)
  /external/cldr/tools/java/com/ibm/icu/util/
LocaleMatcher.java 28 * Provides a way to match the languages (locales) supported by a product to the
136 * @param supported Supported locale
141 public double match(ULocale desired, ULocale desiredMax, ULocale supported, ULocale supportedMax) {
142 return matcherData.match(desired, desiredMax, supported, supportedMax);
303 Set<String> supported = desiredToMatchingLanguages.getValue(); local
307 if (supported.contains(lang)) {
493 void addDataToScores(String desired, String supported, R3<LocalePatternMatcher, LocalePatternMatcher, Double> data) {
498 // Set<R3<LocalePatternMatcher,LocalePatternMatcher,Double>> result = lang_result.get(supported);
500 // lang_result.put(supported, result = new LinkedHashSet())
574 LocalePatternMatcher supported = item.get1(); local
    [all...]
  /external/compiler-rt/lib/esan/
esan_shadow.h 21 #error Only 64-bit is supported
137 #error Platform not supported
  /external/icu/android_icu4j/src/main/java/android/icu/util/
LocaleMatcher.java 34 * Provides a way to match the languages (locales) supported by a product to the
147 * @param supported Supported locale
151 public double match(ULocale desired, ULocale desiredMax, ULocale supported, ULocale supportedMax) {
152 return matcherData.match(desired, desiredMax, supported, supportedMax);
314 Set<String> supported = desiredToMatchingLanguages.getValue(); local
318 if (supported.contains(lang)) {
512 void addDataToScores(String desired, String supported, R3<LocalePatternMatcher,LocalePatternMatcher,Double> data) {
517 // Set<R3<LocalePatternMatcher,LocalePatternMatcher,Double>> result = lang_result.get(supported);
519 // lang_result.put(supported, result = new LinkedHashSet())
598 LocalePatternMatcher supported = item.get1(); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocaleMatcher.java 33 * Provides a way to match the languages (locales) supported by a product to the
148 * @param supported Supported locale
153 public double match(ULocale desired, ULocale desiredMax, ULocale supported, ULocale supportedMax) {
154 return matcherData.match(desired, desiredMax, supported, supportedMax);
321 Set<String> supported = desiredToMatchingLanguages.getValue(); local
325 if (supported.contains(lang)) {
519 void addDataToScores(String desired, String supported, R3<LocalePatternMatcher,LocalePatternMatcher,Double> data) {
524 // Set<R3<LocalePatternMatcher,LocalePatternMatcher,Double>> result = lang_result.get(supported);
526 // lang_result.put(supported, result = new LinkedHashSet())
605 LocalePatternMatcher supported = item.get1(); local
    [all...]
  /external/kmod/port-gnu/
endian-darwin.h 103 # error byte order not supported
114 # error platform not supported
  /external/llvm/test/MC/Mips/
cpload-bad.s 9 # ASM: :[[@LINE-1]]:17: error: .cpload is not supported in Mips16 mode
  /external/llvm/test/MC/Mips/micromips/
invalid-wrong-error.s 5 # The 20-bit immediate supported by the standard encodings cause us to emit
  /external/python/google-api-python-client/googleapiclient/
mimeparse.py 145 def best_match(supported, header):
148 Takes a list of supported mime-types and finds the best match for all the
150 conforms to the format of the HTTP Accept: header. The value of 'supported'
151 is a list of mime-types. The list of supported mime-types should be sorted
163 for mime_type in supported:
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/micromips/
invalid-wrong-error.s 5 # The 20-bit immediate supported by the standard encodings cause us to emit
  /external/wpa_supplicant_8/wpa_supplicant/
eap_proxy_qmi_oc.mk 26 # This is supported only in B Family devices.

Completed in 621 milliseconds

1 2 34 5 6 7 8 91011>>