HomeSort by relevance Sort by last modified time
    Searched full:supported (Results 201 - 225 of 26981) sorted by null

1 2 3 4 5 6 7 891011>>

  /toolchain/binutils/binutils-2.27/include/opcode/
ppc.h 85 /* Opcode is supported by the Motorola PowerPC 601 processor. The 601
90 /* Opcode is supported in both the Power and PowerPC architectures
97 /* Opcode is supported for any Power or PowerPC platform (this is
104 /* Opcode is supported as part of the 64-bit bridge. */
107 /* Opcode is supported by Altivec Vector Unit */
110 /* Opcode is supported by PowerPC 403 processor. */
113 /* Opcode is supported by PowerPC BookE processor. */
116 /* Opcode is supported by PowerPC 440 processor. */
119 /* Opcode is only supported by Power4 architecture. */
122 /* Opcode is only supported by Power7 architecture. *
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
MmsPduProvider.java 41 // Not supported
47 // Not supported
53 // Not supported
59 // Not supported
65 // Not supported
  /cts/tests/tests/telephony/src/android/telephony/cts/
MmsPduProvider.java 41 // Not supported
47 // Not supported
53 // Not supported
59 // Not supported
65 // Not supported
  /external/conscrypt/testing/src/main/java/libcore/tlswire/handshake/
EllipticCurvesHelloExtension.java 29 public List<EllipticCurve> supported; field in class:EllipticCurvesHelloExtension
39 supported = new ArrayList<EllipticCurve>(ellipticCurvesListIn.available() / 2);
42 supported.add(EllipticCurve.fromIdentifier(curve_id));
49 sb.append(", supported: ");
50 sb.append(supported);
  /libcore/support/src/test/java/libcore/tlswire/handshake/
EllipticCurvesHelloExtension.java 30 public List<EllipticCurve> supported; field in class:EllipticCurvesHelloExtension
40 supported = new ArrayList<EllipticCurve>(ellipticCurvesListIn.available() / 2);
43 supported.add(EllipticCurve.fromIdentifier(curve_id));
51 sb.append(", supported: ");
52 sb.append(supported);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/name/
SuggestionContentProvider.java 41 throw new UnsupportedOperationException("query operation not supported currently.");
46 throw new UnsupportedOperationException("getType operation not supported currently.");
51 throw new UnsupportedOperationException("insert operation not supported currently.");
56 throw new UnsupportedOperationException("delete operation not supported currently.");
61 throw new UnsupportedOperationException("update operation not supported currently.");
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/
Java1_0Validator.java 31 (n, reporter) -> reporter.report(n, "'assert' keyword is not supported.")
35 (n, reporter) -> reporter.report(n, "inner classes or interfaces are not supported.")
39 (n, reporter) -> reporter.report(n, "Reflection is not supported.")
44 reporter.report(node, "Generics are not supported.");
49 reporter.report(node, "Generics are not supported.");
58 reporter.report(n, "Catch with resource is not supported.");
63 reporter.report(node, "Annotations are not supported.");
68 (n, reporter) -> reporter.report(n, "Enumerations are not supported.")
72 (n, reporter) -> reporter.report(n, "Varargs are not supported.")
76 (n, reporter) -> reporter.report(n, "For-each loops are not supported."
    [all...]
  /hardware/google/interfaces/media/c2/1.0/
IConfigurable.hal 23 * This interface must be supported in all states of the inheriting
37 * best effort: the object must query all supported parameters and skip
50 * - BAD_INDEX - All supported parameters could be queried, but some
51 * parameters were not supported.
52 * - NO_MEMORY - Could not allocate memory for a supported parameter.
68 * effort: the object must update all supported configuration at best
82 * - BAD_INDEX - All supported parameters could be updated successfully,
83 * but some parameters were not supported.
84 * - NO_MEMORY - Some supported parameters could not be updated
106 * Returns a selected range of the set of supported parameters
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptX509Null.c 21 Return FALSE to indicate this interface is not supported.
27 @retval FALSE This interface is not supported.
45 Return FALSE to indicate this interface is not supported.
54 @retval FALSE This interface is not supported.
71 If the interface is not supported, then ASSERT().
88 If the interface is not supported, then ASSERT().
105 Return FALSE to indicate this interface is not supported.
114 @retval FALSE This interface is not supported.
133 Return FALSE to indicate this interface is not supported.
141 @retval FALSE This interface is not supported.
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/Pk/
CryptX509Null.c 21 Return FALSE to indicate this interface is not supported.
27 @retval FALSE This interface is not supported.
45 Return FALSE to indicate this interface is not supported.
54 @retval FALSE This interface is not supported.
71 If the interface is not supported, then ASSERT().
88 If the interface is not supported, then ASSERT().
105 Return FALSE to indicate this interface is not supported.
114 @retval FALSE This interface is not supported.
133 Return FALSE to indicate this interface is not supported.
141 @retval FALSE This interface is not supported.
    [all...]
  /frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
SettingsHelperTest.java 49 new String[] { "en-US" })); // supported
56 new String[] { "en-US" })); // supported
62 new String[] { "en-US", "ja-JP" })); // supported
69 new String[] { "en-US", "ja-JP" })); // supported
75 new String[] { "en-US", "ja-JP", "ko-KR" })); // supported
81 new String[] { "en-US", "ja-JP", "ko-KR" })); // supported
88 new String[] { "en-US", "ja-JP", "ko-KR" })); // supported
95 new String[] { "en-US" })); // supported
102 new String[] { "en-US", "sr-Latn-SR", "sr-Cryl-SR" })); // supported
108 new String[] { "en-US", "kk-Latn-KZ" })); // supported
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/common/
PictureSizeCalculator.java 38 * supported.
71 * @return The best natively-supported size to use.
111 private Size getSmallestSupportedSizeContainingTarget(List<Size> supported, Size target) {
112 Preconditions.checkState(!supported.isEmpty());
115 for (Size candidate : supported) {
126 // If no supported sizes contain the target size, then select the
128 best = getLargestSupportedSize(supported);
135 * A picture size Configuration consists of a device-supported size and a
140 * @return The optimal configuration of device-supported picture size and
150 throw new OneCameraAccessException("No picture sizes supported for format:
    [all...]
  /prebuilts/gdb/darwin-x86/share/pretty-printers/stlport/test/
test.cpp 90 std::string slist1 = "std::slist not supported";
91 std::string slist2 = "std::slist not supported";
152 std::string unordered_map1 = "std::tr1::unordered_map not supported";
153 std::string unordered_map2 = "std::tr1::unordered_map not supported";
154 std::string unordered_multimap1 = "std::tr1::unordered_multimap not supported";
155 std::string unordered_multimap2 = "std::tr1::unordered_multimap not supported";
156 std::string unordered_set1 = "std::tr1::unordered_set not supported";
157 std::string unordered_set2 = "std::tr1::unordered_set not supported";
158 std::string unordered_multiset1 = "std::tr1::unordered_multiset not supported";
159 std::string unordered_multiset2 = "std::tr1::unordered_multiset not supported";
    [all...]
  /prebuilts/gdb/linux-x86/share/pretty-printers/stlport/test/
test.cpp 90 std::string slist1 = "std::slist not supported";
91 std::string slist2 = "std::slist not supported";
152 std::string unordered_map1 = "std::tr1::unordered_map not supported";
153 std::string unordered_map2 = "std::tr1::unordered_map not supported";
154 std::string unordered_multimap1 = "std::tr1::unordered_multimap not supported";
155 std::string unordered_multimap2 = "std::tr1::unordered_multimap not supported";
156 std::string unordered_set1 = "std::tr1::unordered_set not supported";
157 std::string unordered_set2 = "std::tr1::unordered_set not supported";
158 std::string unordered_multiset1 = "std::tr1::unordered_multiset not supported";
159 std::string unordered_multiset2 = "std::tr1::unordered_multiset not supported";
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/test/
test.cpp 90 std::string slist1 = "std::slist not supported";
91 std::string slist2 = "std::slist not supported";
152 std::string unordered_map1 = "std::tr1::unordered_map not supported";
153 std::string unordered_map2 = "std::tr1::unordered_map not supported";
154 std::string unordered_multimap1 = "std::tr1::unordered_multimap not supported";
155 std::string unordered_multimap2 = "std::tr1::unordered_multimap not supported";
156 std::string unordered_set1 = "std::tr1::unordered_set not supported";
157 std::string unordered_set2 = "std::tr1::unordered_set not supported";
158 std::string unordered_multiset1 = "std::tr1::unordered_multiset not supported";
159 std::string unordered_multiset2 = "std::tr1::unordered_multiset not supported";
    [all...]
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/test/
test.cpp 90 std::string slist1 = "std::slist not supported";
91 std::string slist2 = "std::slist not supported";
152 std::string unordered_map1 = "std::tr1::unordered_map not supported";
153 std::string unordered_map2 = "std::tr1::unordered_map not supported";
154 std::string unordered_multimap1 = "std::tr1::unordered_multimap not supported";
155 std::string unordered_multimap2 = "std::tr1::unordered_multimap not supported";
156 std::string unordered_set1 = "std::tr1::unordered_set not supported";
157 std::string unordered_set2 = "std::tr1::unordered_set not supported";
158 std::string unordered_multiset1 = "std::tr1::unordered_multiset not supported";
159 std::string unordered_multiset2 = "std::tr1::unordered_multiset not supported";
    [all...]
  /external/clang/include/clang/Basic/
OpenCLOptions.h 23 /// \brief OpenCL supported extensions and optional core features
40 // Is supported with OpenCL version \p OCLVer.
48 // Is supported OpenCL extension with OpenCL version \p OCLVer.
49 // For supported optional core feature, return false.
56 // Is supported OpenCL core features with OpenCL version \p OCLVer.
57 // For supported extension, return false.
  /external/clang/test/Sema/
attr-mode-enums.c 12 typedef enum { E1 } __attribute__((mode(V4QI))) RejectedType1; // expected-error{{mode 'V4QI' is not supported for enumeration types}}
14 typedef enum __attribute__((mode(V8HI))) { E2 } RejectedType2; // expected-error{{mode 'V8HI' is not supported for enumeration types}}
16 typedef enum E3 __attribute__((mode(V2SI))) RejectedType3; // expected-error{{mode 'V2SI' is not supported for enumeration types}}
18 typedef EnumType __attribute__((mode(V4DI))) RejectedType4; // expected-error{{mode 'V4DI' is not supported for enumeration types}}
20 EnumType v1 __attribute__((mode(V4QI))); // expected-error{{mode 'V4QI' is not supported for enumeration types}}
22 enum __attribute__((mode(V8HI))) { E5 } v2; // expected-error{{mode 'V8HI' is not supported for enumeration types}}
  /external/valgrind/
README.mips 2 Supported platforms
4 - MIPS32 and MIPS64 platforms are currently supported.
5 - Both little-endian and big-endian cores are supported.
6 - MIPS DSP ASE on MIPS32 platforms is supported.
11 - Native build is available for all supported platforms. The build system
18 - Use of cross-toolchain is supported as well.
  /frameworks/ml/nn/driver/sample/
SampleDriverMinimal.cpp 58 std::vector<bool> supported(count);
61 supported[i] = false;
69 supported[i] = true;
77 cb(ErrorStatus::NONE, supported);
79 std::vector<bool> supported; local
80 cb(ErrorStatus::INVALID_ARGUMENT, supported);
  /hardware/libhardware/modules/camera/3_4/metadata/
tagged_control_options_test.cpp 66 bool supported = true; local
68 EXPECT_CALL(*mock_options_, IsSupported(value)).WillOnce(Return(supported));
70 ASSERT_EQ(dut_->IsSupported(value), supported);
74 bool supported = false; local
76 EXPECT_CALL(*mock_options_, IsSupported(value)).WillOnce(Return(supported));
78 ASSERT_EQ(dut_->IsSupported(value), supported);
  /packages/apps/Camera2/src/com/android/camera/hardware/
HardwareSpecImpl.java 39 * Compute the supported values for all
44 // Cache whether front camera is supported.
47 // Cache whether hdr is supported.
50 // Cache whether hdr plus is supported.
56 // Cache whether flash is supported.
81 * Returns whether flash is supported and flash has more than
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
insns-bad-1.l 15 [^:]*:18: Error: 'abs' instruction not supported on this functional unit
39 [^:]*:38: Error: 'abs2' instruction not supported on this functional unit
43 [^:]*:41: Error: 'absdp' instruction not supported on this functional unit
47 [^:]*:44: Error: 'absdp' instruction not supported on this functional unit
48 [^:]*:45: Error: 'abssp' instruction not supported on this functional unit
52 [^:]*:49: Error: 'add' instruction not supported on this functional unit
66 [^:]*:63: Error: 'add' instruction not supported on this functional unit
73 [^:]*:70: Error: 'addab' instruction not supported on this functional unit
82 [^:]*:79: Error: 'addad' instruction not supported on this functional unit
83 [^:]*:80: Error: 'addad' instruction not supported on this functional uni
    [all...]
  /external/tensorflow/tensorflow/core/util/
saved_tensor_slice_util.h 76 static constexpr bool supported = true; \
82 static_assert(SaveTypeTraits<TYPE>::supported, \
83 "Specified type " #TYPE " not supported for Restore"); \
89 static_assert(SaveTypeTraits<TYPE>::supported, \
90 "Specified type " #TYPE " not supported for Save"); \
138 static_assert(SaveTypeTraits<qint32>::supported,
139 "Specified type qint32 not supported for Restore");
153 static constexpr bool supported = true; member in struct:tensorflow::checkpoint::SaveTypeTraits
182 static constexpr bool supported = true; member in struct:tensorflow::checkpoint::SaveTypeTraits
189 static_assert(SaveTypeTraits<string>::supported,
    [all...]
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_secy_ops.c 40 "KaY: secy enable_protect_frames operation not supported");
60 "KaY: secy enable_encrypt operation not supported");
80 "KaY: secy set_replay_protect operation not supported");
100 "KaY: secy set_current_cipher_suite operation not supported");
128 "KaY: secy enable_controlled_port operation not supported");
148 "KaY: secy macsec_get_capability operation not supported");
169 "KaY: secy get_receive_lowest_pn operation not supported");
190 "KaY: secy get_receive_lowest_pn operation not supported");
211 "KaY: secy get_receive_lowest_pn operation not supported");
231 "KaY: secy create_receive_sc operation not supported");
    [all...]

Completed in 961 milliseconds

1 2 3 4 5 6 7 891011>>