HomeSort by relevance Sort by last modified time
    Searched defs:feature (Results 26 - 50 of 584) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/telephony/java/android/telephony/ims/feature/
RcsFeature.java 17 package android.telephony.ims.feature;
  /frameworks/support/webkit/src/main/java/androidx/webkit/internal/
ServiceWorkerControllerImpl.java 42 final WebViewFeatureInternal feature = WebViewFeatureInternal.SERVICE_WORKER_BASIC_USAGE; local
43 if (feature.isSupportedByFramework()) {
50 } else if (feature.isSupportedByWebView()) {
83 final WebViewFeatureInternal feature = WebViewFeatureInternal.SERVICE_WORKER_BASIC_USAGE; local
84 if (feature.isSupportedByFramework()) {
86 } else if (feature.isSupportedByWebView()) {
WebResourceErrorImpl.java 83 final WebViewFeatureInternal feature = local
85 if (feature.isSupportedByFramework()) {
87 } else if (feature.isSupportedByWebView()) {
97 final WebViewFeatureInternal feature = WebViewFeatureInternal.getFeature( local
99 if (feature.isSupportedByFramework()) {
101 } else if (feature.isSupportedByWebView()) {
ServiceWorkerWebSettingsImpl.java 93 final WebViewFeatureInternal feature = WebViewFeatureInternal.SERVICE_WORKER_CACHE_MODE; local
94 if (feature.isSupportedByFramework()) {
96 } else if (feature.isSupportedByWebView()) {
106 final WebViewFeatureInternal feature = WebViewFeatureInternal.SERVICE_WORKER_CACHE_MODE; local
107 if (feature.isSupportedByFramework()) {
109 } else if (feature.isSupportedByWebView()) {
119 final WebViewFeatureInternal feature = WebViewFeatureInternal.SERVICE_WORKER_CONTENT_ACCESS; local
120 if (feature.isSupportedByFramework()) {
122 } else if (feature.isSupportedByWebView()) {
132 final WebViewFeatureInternal feature = WebViewFeatureInternal.SERVICE_WORKER_CONTENT_ACCESS local
145 final WebViewFeatureInternal feature = WebViewFeatureInternal.SERVICE_WORKER_FILE_ACCESS; local
158 final WebViewFeatureInternal feature = WebViewFeatureInternal.SERVICE_WORKER_FILE_ACCESS; local
171 final WebViewFeatureInternal feature = local
185 final WebViewFeatureInternal feature = local
    [all...]
  /packages/apps/TV/common/src/com/android/tv/common/feature/
CommonFeatures.java 17 package com.android.tv.common.feature;
19 import static com.android.tv.common.feature.FeatureUtils.AND;
20 import static com.android.tv.common.feature.TestableFeature.createTestableFeature;
33 * List of {@link Feature} that affect more than just the Live TV app.
35 * <p>Remove the {@code Feature} once it is launched.
56 public static final Feature FORCE_RECORDING_UNTIL_NO_SPACE =
59 public static final Feature TUNER =
60 new Feature() {
77 public static final Feature ENABLE_CLOUD_EPG_REGION =
78 new Feature() {
    [all...]
GServiceFeature.java 17 package com.android.tv.common.feature;
21 /** A feature controlled by a GServices flag. */
22 public class GServiceFeature implements Feature {
Model.java 17 package com.android.tv.common.feature;
27 public static final class ModelFeature implements Feature {
PackageVersionFeature.java 17 package com.android.tv.common.feature;
25 * A feature controlled by package version.
27 public class PackageVersionFeature implements Feature {
SharedPreferencesFeature.java 17 package com.android.tv.common.feature;
24 /** Feature controlled by shared preferences. */
25 public final class SharedPreferencesFeature implements Feature {
33 private final Feature mBaseFeature;
36 * Create SharedPreferences controlled feature.
40 * @param baseFeature if {@code baseFeature} is turned off, this feature is always disabled.
42 public SharedPreferencesFeature(String key, boolean defaultValue, Feature baseFeature) {
TestableFeature.java 17 package com.android.tv.common.feature;
25 * When run in a test harness this feature can be turned on or off, overriding the normal value.
27 * <p><b>Warning</b> making a feature testable will cause the code to stay in the APK and could leak
30 public class TestableFeature implements Feature {
35 private final Feature mDelegate;
38 /** Creates testable feature. */
39 public static TestableFeature createTestableFeature(Feature delegate) {
43 /** Creates testable feature with initial value. */
44 public static TestableFeature createTestableFeature(Feature delegate, Boolean initialValue) {
48 private TestableFeature(Feature delegate)
    [all...]
  /external/python/cpython3/Python/
future.c 9 #define UNDEFINED_FUTURE_FEATURE "future feature %.100s is not defined"
24 const char *feature = PyUnicode_AsUTF8(name->name); local
25 if (!feature)
27 if (strcmp(feature, FUTURE_NESTED_SCOPES) == 0) {
29 } else if (strcmp(feature, FUTURE_GENERATORS) == 0) {
31 } else if (strcmp(feature, FUTURE_DIVISION) == 0) {
33 } else if (strcmp(feature, FUTURE_ABSOLUTE_IMPORT) == 0) {
35 } else if (strcmp(feature, FUTURE_WITH_STATEMENT) == 0) {
37 } else if (strcmp(feature, FUTURE_PRINT_FUNCTION) == 0) {
39 } else if (strcmp(feature, FUTURE_UNICODE_LITERALS) == 0)
    [all...]
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
input_data.cc 86 int32 feature; local
87 safe_strto32(feature_id.id().value(), &feature);
88 if (feature >= input_spec_.dense_features_size()) {
89 return FindSparseValue(*sparse_indices_, *sparse_values_, example, feature);
91 return (*dense_data_)(example, feature);
  /art/runtime/arch/arm64/
instruction_set_features_arm64.cc 131 std::string feature = android::base::Trim(*i); local
132 if (feature == "a53") {
134 } else if (feature == "-a53") {
137 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
  /art/runtime/arch/
instruction_set_features.cc 191 bool use_default = false; // Have we seen the 'default' feature?
192 bool first = false; // Is this first feature?
198 std::string feature = android::base::Trim(*it); local
200 if (feature == "default") {
263 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString();
  /art/runtime/arch/mips/
instruction_set_features_mips.cc 218 std::string feature = android::base::Trim(*i); local
219 if (feature == "fpu32") {
221 } else if (feature == "-fpu32") {
223 } else if (feature == "mips2") {
225 } else if (feature == "-mips2") {
227 } else if (feature == "r6") {
229 } else if (feature == "-r6") {
231 } else if (feature == "msa") {
233 } else if (feature == "-msa") {
236 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str())
    [all...]
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
FeatureDeviceInfo.java 33 * Feature device info collector.
41 store.startArray("feature");
49 // Check if this feature is a "sdk" feature.
55 // Add the feature version if avaiable.
80 * @return list of feature names from sdk
88 String feature = (String) field.get(null); local
89 features.add(feature);
  /external/harfbuzz_ng/src/
main.cc 136 printf (" No required feature\n");
138 printf (" Required feature index: %d\n",
142 printf (" %d feature(s) found in language system\n", num_features);
144 printf (" Feature index %2d of %2d: %d\n", n_feature, num_features,
151 printf (" %d feature(s) found in table\n", num_features);
153 const Feature &feature = g.get_feature (n_feature); local
154 int num_lookups = feature.get_lookup_count ();
155 printf (" Feature %2d of %2d: %c%c%c%c\n", n_feature, num_features,
158 printf (" %d lookup(s) found in feature\n", num_lookups)
    [all...]
  /frameworks/base/telephony/java/android/telephony/ims/compat/feature/
MMTelFeature.java 17 package android.telephony.ims.compat.feature;
48 // Lock for feature synchronization
192 * Notifies the MMTel feature that you would like to start a session. This should always be
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
ImsServiceInterfaceAdapter.java 24 import android.telephony.ims.compat.feature.ImsFeature;
122 IImsService feature = IImsService.Stub.asInterface(mBinder); local
123 if (feature == null) {
126 return feature;
MmTelInterfaceAdapter.java 122 IImsMMTelFeature feature = IImsMMTelFeature.Stub.asInterface(mBinder); local
123 if (feature == null) {
126 return feature;
  /art/runtime/arch/arm/
instruction_set_features_arm.cc 144 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
322 std::string feature = android::base::Trim(*i); local
323 if (feature == "div") {
325 } else if (feature == "-div") {
327 } else if (feature == "atomic_ldrd_strd") {
329 } else if (feature == "-atomic_ldrd_strd") {
331 } else if (feature == "armv8a") {
333 } else if (feature == "-armv8a") {
336 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str())
    [all...]
  /art/runtime/arch/x86/
instruction_set_features_x86.cc 32 // Feature-support arrays.
165 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
300 std::string feature = android::base::Trim(*i); local
301 if (feature == "ssse3") {
303 } else if (feature == "-ssse3") {
305 } else if (feature == "sse4.1") {
307 } else if (feature == "-sse4.1") {
309 } else if (feature == "sse4.2") {
311 } else if (feature == "-sse4.2") {
313 } else if (feature == "avx")
    [all...]
  /external/e2fsprogs/lib/e2p/
feature.c 2 * feature.c --- convert between features and strings
23 struct feature { struct
29 static struct feature feature_list[] = {
113 static struct feature jrnl_feature_list[] = {
132 struct feature *f;
163 struct feature *f;
206 struct feature *f;
237 struct feature *f;
292 * Edit a feature set array as requested by the user. The ok_array,
295 * then use it tell whether or not it is OK to clear a filesystem feature
    [all...]
  /external/freetype/src/gxvalid/
gxvfeat.c 54 FT_UShort feature; member in struct:GXV_feat_DataRec_
82 gxv_feat_registry_validate( FT_UShort feature,
87 GXV_NAME_ENTER( "feature in registry" );
89 GXV_TRACE(( " (feature = %u)\n", feature ));
91 if ( feature >= gxv_feat_registry_length )
93 GXV_TRACE(( "feature number %d is out of range %d\n",
94 feature, gxv_feat_registry_length ));
99 if ( gxv_feat_registry[feature].existence == 0 )
101 GXV_TRACE(( "feature number %d is in defined range but doesn't exist\n"
198 FT_UShort feature; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_sensors_temp.c 59 /* Combined chip and feature name, human readable. */
71 const sensors_feature *feature; member in struct:sensors_temp_info
96 sf = sensors_get_subfeature(sti->chip, sti->feature,
102 sf = sensors_get_subfeature(sti->chip, sti->feature,
111 sf = sensors_get_subfeature(sti->chip, sti->feature,
117 sf = sensors_get_subfeature(sti->chip, sti->feature,
123 sf = sensors_get_subfeature(sti->chip, sti->feature,
133 sf = sensors_get_subfeature(sti->chip, sti->feature,
138 sf = sensors_get_subfeature(sti->chip, sti->feature,
251 const sensors_chip_name *chip, const sensors_feature *feature,
273 const sensors_feature *feature; local
    [all...]

Completed in 616 milliseconds

12 3 4 5 6 7 8 91011>>