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

1 2 3 4 5 6 7 8 91011>>

  /cts/hostsidetests/appsecurity/test-apps/NoRestartApp/feature/src/com/android/cts/norestart/feature/
NoRestartFeatureActivity.java 17 package com.android.cts.norestart.feature;
  /frameworks/base/tests/FeatureSplit/base/src/com/android/test/split/feature/
ActivityMain.java 16 package com.android.test.split.feature;
  /packages/apps/TV/common/src/com/android/tv/common/feature/
Feature.java 17 package com.android.tv.common.feature;
22 * A feature is elements of code that are turned off for most users until a feature is fully
35 public interface Feature {
FeatureUtils.java 17 package com.android.tv.common.feature;
27 * Returns a feature that is enabled if any of {@code features} is enabled.
31 public static Feature OR(final Feature... features) {
32 return new Feature() {
35 for (Feature f : features) {
51 * Returns a feature that is enabled if all of {@code features} is enabled.
55 public static Feature AND(final Feature... features) {
56 return new Feature() {
    [all...]
EngOnlyFeature.java 17 package com.android.tv.common.feature;
22 /** A feature that is only available on {@link BuildConfig#ENG} builds. */
23 public final class EngOnlyFeature implements Feature {
24 public static final Feature ENG_ONLY_FEATURE = new EngOnlyFeature();
ExperimentFeature.java 17 package com.android.tv.common.feature;
22 /** A {@link Feature} base on an {@link ExperimentFlag}. */
23 public final class ExperimentFeature implements Feature {
25 public static Feature from(ExperimentFlag<Boolean> flag) {
PropertyFeature.java 17 package com.android.tv.common.feature;
23 * Feature controlled by system property.
27 public final class PropertyFeature implements Feature {
36 * Create System Property backed feature.
Sdk.java 17 package com.android.tv.common.feature;
24 public static final Feature AT_LEAST_N =
25 new Feature() {
32 public static final Feature AT_LEAST_O =
33 new Feature() {
SystemAppFeature.java 17 package com.android.tv.common.feature;
22 /** A feature that is for system App. */
23 public final class SystemAppFeature implements Feature {
24 public static final Feature SYSTEM_APP_FEATURE = new SystemAppFeature();
  /external/syslinux/gpxe/src/core/
main.c 36 struct feature *feature; local
61 for_each_table_entry ( feature, FEATURES )
62 printf ( " %s", feature->name );
  /external/tensorflow/tensorflow/core/example/
feature_util_test.cc 41 Feature feature; local
42 feature.mutable_int64_list()->add_value(42);
44 auto values = GetFeatureValues<protobuf_int64>(feature);
56 example.features().feature().at("tag").int64_list().value_size());
57 EXPECT_EQ(42, example.features().feature().at("tag").int64_list().value(0));
61 Feature feature; local
63 GetFeatureValues<protobuf_int64>(&feature)->Add(42);
65 ASSERT_EQ(1, feature.int64_list().value_size())
108 Feature feature; local
130 Feature feature; local
179 Feature feature; local
201 Feature feature; local
353 auto feature = GetFeatureList("tag", se); local
    [all...]
feature_util.h 16 // A set of lightweight wrappers which simplify access to Feature protos.
20 // So accessing feature values is not very convenient.
22 // For example, to read a first value of integer feature "tag":
23 // int id = example.features().feature().at("tag").int64_list().value(0)
39 // To copy multiple values into a feature:
46 // NOTE: Due to the nature of oneof proto fields setting a feature of one type
47 // automatically clears all values stored as another type with the same feature
62 // This will create a feature list keyed as "images" with two features:
67 // feature { float_list { value: [4.0] } }
68 // feature { float_list { value: [5.0, 3.0] }
217 ::tensorflow::Feature& feature = local
    [all...]
  /frameworks/base/tests/FeatureSplit/feature1/src/com/android/test/split/feature/one/
One.java 16 package com.android.test.split.feature.one;
  /frameworks/support/webkit/src/main/java/androidx/webkit/
WebResourceRequestCompat.java 47 WebViewFeatureInternal feature = WebViewFeatureInternal.WEB_RESOURCE_REQUEST_IS_REDIRECT; local
48 if (feature.isSupportedByFramework()) {
50 } else if (feature.isSupportedByWebView()) {
  /system/bt/device/include/
interop_database.h 27 interop_feature_t feature; member in struct:__anon1818
145 interop_feature_t feature; member in struct:__anon1819
  /art/test/052-verifier-fun/src/
Main.java 111 BlahFeature feature = null; // interface ref local
115 feature = new BlahOne();
118 feature = new BlahTwo();
122 feature.doStuff();
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/feature/gmaven-feature-api/1.5/
gmaven-feature-api-1.5.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/feature/gmaven-feature-support/1.5/
gmaven-feature-support-1.5.jar 
  /packages/apps/TV/common/src/com/android/tv/common/
SoftPreconditions.java 23 import com.android.tv.common.feature.Feature;
160 * Throws or logs if the Feature is not enabled
163 * @param feature the required feature
166 * @throws IllegalStateException if {@code feature} is not enabled
168 public static void checkFeatureEnabled(Context context, Feature feature, String tag) {
169 checkState(feature.isEnabled(context), tag, feature.toString())
    [all...]
  /art/runtime/arch/mips64/
instruction_set_features_mips64.cc 56 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
118 std::string feature = android::base::Trim(*i); local
119 if (feature == "msa") {
121 } else if (feature == "-msa") {
124 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
future.c 10 #define UNDEFINED_FUTURE_FEATURE "future feature %.100s is not defined"
25 const char *feature = PyString_AsString(name->name); local
26 if (!feature)
28 if (strcmp(feature, FUTURE_NESTED_SCOPES) == 0) {
30 } else if (strcmp(feature, FUTURE_GENERATORS) == 0) {
32 } else if (strcmp(feature, FUTURE_DIVISION) == 0) {
34 } else if (strcmp(feature, FUTURE_ABSOLUTE_IMPORT) == 0) {
36 } else if (strcmp(feature, FUTURE_WITH_STATEMENT) == 0) {
38 } else if (strcmp(feature, FUTURE_PRINT_FUNCTION) == 0) {
40 } else if (strcmp(feature, FUTURE_UNICODE_LITERALS) == 0) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
future.c 10 #define UNDEFINED_FUTURE_FEATURE "future feature %.100s is not defined"
25 const char *feature = PyString_AsString(name->name); local
26 if (!feature)
28 if (strcmp(feature, FUTURE_NESTED_SCOPES) == 0) {
30 } else if (strcmp(feature, FUTURE_GENERATORS) == 0) {
32 } else if (strcmp(feature, FUTURE_DIVISION) == 0) {
34 } else if (strcmp(feature, FUTURE_ABSOLUTE_IMPORT) == 0) {
36 } else if (strcmp(feature, FUTURE_WITH_STATEMENT) == 0) {
38 } else if (strcmp(feature, FUTURE_PRINT_FUNCTION) == 0) {
40 } else if (strcmp(feature, FUTURE_UNICODE_LITERALS) == 0) {
    [all...]
  /external/python/cpython2/Python/
future.c 10 #define UNDEFINED_FUTURE_FEATURE "future feature %.100s is not defined"
25 const char *feature = PyString_AsString(name->name); local
26 if (!feature)
28 if (strcmp(feature, FUTURE_NESTED_SCOPES) == 0) {
30 } else if (strcmp(feature, FUTURE_GENERATORS) == 0) {
32 } else if (strcmp(feature, FUTURE_DIVISION) == 0) {
34 } else if (strcmp(feature, FUTURE_ABSOLUTE_IMPORT) == 0) {
36 } else if (strcmp(feature, FUTURE_WITH_STATEMENT) == 0) {
38 } else if (strcmp(feature, FUTURE_PRINT_FUNCTION) == 0) {
40 } else if (strcmp(feature, FUTURE_UNICODE_LITERALS) == 0)
    [all...]
  /external/tensorflow/tensorflow/contrib/tensor_forest/hybrid/core/ops/
utils.cc 69 const int32 feature = (rand[0] + rand[1]) % num_features; local
70 features->push_back(feature);
  /frameworks/base/telephony/java/android/telephony/ims/compat/feature/
RcsFeature.java 17 package android.telephony.ims.compat.feature;

Completed in 442 milliseconds

1 2 3 4 5 6 7 8 91011>>