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

1 23 4 5 6 7 8 91011>>

  /external/syslinux/gpxe/src/include/gpxe/
features.h 10 * Feature list
17 * @defgroup featurecat Feature categories
28 * @defgroup dhcpfeatures DHCP feature option tags
30 * DHCP feature option tags are Etherboot encapsulated options in the
56 /** DHCP feature table */
59 /** Declare a feature code for DHCP */
62 /** Construct a DHCP feature table entry */
72 /** A named feature */
73 struct feature { struct
74 /** Feature name *
    [all...]
  /external/tensorflow/tensorflow/contrib/cloud/kernels/
bigquery_table_accessor.cc 17 #include "tensorflow/core/example/feature.pb.h"
322 auto& feature = local
335 feature.mutable_bytes_list()->add_value(column_value.asString());
338 feature.mutable_int64_list()->add_value(
348 feature.mutable_int64_list()->add_value(column_value_int64);
358 feature.mutable_float_list()->add_value(
  /external/tensorflow/tensorflow/python/kernel_tests/
parse_single_example_op_test.py 38 feature = feature_pb2.Feature variable
39 features = lambda d: feature_pb2.Features(feature=d)
40 bytes_feature = lambda v: feature(bytes_list=feature_pb2.BytesList(value=v))
41 int64_feature = lambda v: feature(int64_list=feature_pb2.Int64List(value=v))
42 float_feature = lambda v: feature(float_list=feature_pb2.FloatList(value=v))
44 feature_list = lambda l: feature_pb2.FeatureList(feature=l)
174 # Feature "c" is missing a default, this gap will cause failure.
180 # Edge case where the key is there but the feature value is empty
181 original = example(features=features({"c": feature()}))
    [all...]
parsing_ops_test.py 44 feature = feature_pb2.Feature variable
45 features = lambda d: feature_pb2.Features(feature=d)
46 bytes_feature = lambda v: feature(bytes_list=feature_pb2.BytesList(value=v))
47 int64_feature = lambda v: feature(int64_list=feature_pb2.Int64List(value=v))
48 float_feature = lambda v: feature(float_list=feature_pb2.FloatList(value=v))
50 feature_list = lambda l: feature_pb2.FeatureList(feature=l)
181 # Feature "c" is missing a default, this gap will cause failure.
187 # Edge case where the key is there but the feature value is empty
188 original = example(features=features({"c": feature()}))
    [all...]
  /frameworks/base/telephony/java/android/telephony/ims/feature/
CapabilityChangeRequest.java 17 package android.telephony.ims.feature;
38 * Contains a feature capability, defined as
ImsFeature.java 17 package android.telephony.ims.feature;
83 * Invalid feature value
90 * This feature supports emergency calling over MMTEL. If defined, the framework will try to
96 * This feature supports the MMTEL feature.
100 * This feature supports the RCS feature.
150 * {@link #changeEnabledCapabilities} when the framework tries to set a feature's capability.
172 * The framework implements this callback in order to register for Feature Capability status
213 * The status of the feature's capabilities has changed to either available or unavailable
    [all...]
MmTelFeature.java 17 package android.telephony.ims.feature;
357 // Lock for feature synchronization
403 * the feature being unavailable from the network.
  /system/extras/simpleperf/
cmd_dumprecord.cpp 105 static const std::string GetFeatureNameOrUnknown(int feature) {
106 std::string name = GetFeatureName(feature);
107 return name.empty() ? android::base::StringPrintf("unknown_feature(%d)", feature) : name;
142 for (auto& feature : features) {
143 printf("feature: %s\n", GetFeatureNameOrUnknown(feature).c_str());
215 int feature = pair.first; local
217 printf("feature section for %s: offset %" PRId64 ", size %" PRId64 "\n",
218 GetFeatureNameOrUnknown(feature).c_str(), section.offset, section.size);
219 if (feature == FEAT_BUILD_ID)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/features/
FeatureSummaryActivity.java 48 * Simple storage class for data about an Android feature.
50 static class Feature {
52 * The name of the feature. Should be one of the PackageManager.FEATURE*
74 public Feature(String name, boolean required) {
84 } else if (o == null || !(o instanceof Feature)) {
87 Feature feature = (Feature) o; local
88 return name.equals(feature.name)
    [all...]
  /external/boringssl/src/crypto/
cpu-arm-linux.c 230 STRING_PIECE remaining = *list, feature; local
231 while (STRING_PIECE_split(&feature, &remaining, &remaining, ' ')) {
232 if (STRING_PIECE_equals(&feature, item)) {
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferViewCreateTests.cpp 398 const vk::VkFormatFeatureFlags feature[] = { vk::VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT, vk::VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT }; local
434 feature[usageNdx], // VkFormatFeatureFlags flags;
  /external/freetype/src/autofit/
afshaper.c 44 * auto-hinter `coverage' is represented by one `feature', and a
45 * feature consists of an arbitrary number of (font specific) `lookup's
193 /* get output coverage of GSUB feature */
233 /* get input coverage of GPOS feature */
251 * covered by the feature only. In case there is not a single zone
302 * agnostic of OpenType features after the feature analysis has been
306 * Consider the superscript feature of font `pala.ttf': Some of the
309 * position (this is, the `sups' feature is present in both the GSUB and
311 * feature's y offset so that the `real' glyphs get correct hints. But
313 * say, the small caps or superscript feature
452 const hb_feature_t* feature; local
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
FeatureSpecificTestSuiteBuilder.java 23 import com.google.common.collect.testing.features.Feature;
103 private Set<Feature<?>> features = new LinkedHashSet<Feature<?>>();
110 public B withFeatures(Feature<?>... features) {
114 public B withFeatures(Iterable<? extends Feature<?>> features) {
115 for (Feature<?> feature : features) {
116 this.features.add(feature);
121 public Set<Feature<?>> getFeatures() {
247 Set<Feature<?>> missingFeatures
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
FeatureUtil.java 54 public static Set<Feature<?>> addImpliedFeatures(Set<Feature<?>> features) {
69 public static Set<Feature<?>> impliedFeatures(Set<Feature<?>> features) {
70 Set<Feature<?>> implied = new LinkedHashSet<Feature<?>>();
71 for (Feature<?> feature : features) {
72 implied.addAll(feature.getImpliedFeatures());
218 final Feature<?>[] presentFeatures
    [all...]
  /external/wpa_supplicant_8/src/ap/
hw_features.c 2 * hostapd / Hardware feature query and different modes
103 struct hostapd_hw_modes *feature = &modes[i]; local
109 for (j = 0; j < feature->num_channels; j++) {
118 if ((feature->channels[j].flag &
121 } else if (((feature->channels[j].flag &
125 (feature->channels[j].flag &
127 feature->channels[j].flag |=
131 if (feature->channels[j].flag & HOSTAPD_CHAN_DISABLED)
136 feature->mode,
137 feature->channels[j].chan
    [all...]
  /frameworks/base/telephony/java/android/telephony/ims/compat/feature/
ImsFeature.java 17 package android.telephony.ims.compat.feature;
70 // Invalid feature value
130 Log.w(LOG_TAG, "Couldn't notify feature state: " + e.getMessage());
158 Log.w(LOG_TAG, "Couldn't notify feature state: " + e.getMessage());
189 * Called when the feature is ready to use.
194 * Called when the feature is being removed and must be cleaned up.
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
ImsServiceControllerCompat.java 29 import android.telephony.ims.compat.feature.ImsFeature;
30 import android.telephony.ims.compat.feature.MMTelFeature;
173 IImsMMTelFeature feature = mServiceController.createMMTelFeature(slotId, c); local
174 if (feature == null) {
178 return new MmTelInterfaceAdapter(slotId, feature.asBinder());
  /bionic/libc/kernel/uapi/linux/
uhid.h 144 struct uhid_feature_req feature; member in union:uhid_event::__anon1211
  /cts/tests/app/src/android/app/cts/
SystemFeaturesTest.java 78 for (FeatureInfo feature : mPackageManager.getSystemAvailableFeatures()) {
79 mAvailableFeatures.add(feature.name);
178 // Capabilities don't have a matching system feature
204 "the FEATURE_CAMERA_FRONT or FEATURE_CAMERA_EXTERNAL feature",
209 "the FEATURE_CAMERA_FRONT or FEATURE_CAMERA_EXTERNAL feature",
382 /** Get a list of feature constants in PackageManager matching a prefix. */
389 String feature = (String) field.get(null); local
390 features.add(feature);
420 * Check that if the PackageManager declares a sensor feature that the device has at least
421 * one sensor that matches that feature. Also check that if a PackageManager does not declar
    [all...]
  /external/kernel-headers/original/uapi/linux/
uhid.h 117 * access to new feature in case you use them.
188 struct uhid_feature_req feature; member in union:uhid_event::__anon23419
  /hardware/qcom/display/msm8909/sdm/libs/core/fb/
hw_primary.cpp 632 PPFeatureInfo *feature = NULL; local
635 ret = feature_list->RetrieveNextFeature(&feature);
639 if (feature) {
640 DLOGV_IF(kTagDriverConfig, "feature_id = %d", feature->feature_id_);
642 if ((feature->feature_id_ < kMaxNumPPFeatures)) {
643 HWColorManager::SetFeature[feature->feature_id_](*feature, &kernel_params);
654 // Once all features were consumed, then destroy all feature instance from feature_list,
  /hardware/qcom/display/msm8909w_3100/sdm/libs/core/fb/
hw_primary.cpp 624 PPFeatureInfo *feature = NULL; local
627 ret = feature_list->RetrieveNextFeature(&feature);
631 if (feature) {
632 DLOGV_IF(kTagDriverConfig, "feature_id = %d", feature->feature_id_);
634 if ((feature->feature_id_ < kMaxNumPPFeatures)) {
635 HWColorManager::SetFeature[feature->feature_id_](*feature, &kernel_params);
646 // Once all features were consumed, then destroy all feature instance from feature_list,
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_primary.cpp 607 PPFeatureInfo *feature = NULL; local
610 ret = feature_list->RetrieveNextFeature(&feature);
614 if (feature) {
615 DLOGV_IF(kTagDriverConfig, "feature_id = %d", feature->feature_id_);
617 if ((feature->feature_id_ < kMaxNumPPFeatures)) {
618 HWColorManager::SetFeature[feature->feature_id_](*feature, &kernel_params);
629 // Once all features were consumed, then destroy all feature instance from feature_list,
  /hardware/qcom/display/msm8998/sdm/libs/core/fb/
hw_primary.cpp 624 PPFeatureInfo *feature = NULL; local
627 ret = feature_list->RetrieveNextFeature(&feature);
631 if (feature) {
632 DLOGV_IF(kTagDriverConfig, "feature_id = %d", feature->feature_id_);
634 if ((feature->feature_id_ < kMaxNumPPFeatures)) {
635 HWColorManager::SetFeature[feature->feature_id_](*feature, &kernel_params);
646 // Once all features were consumed, then destroy all feature instance from feature_list,
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-metadata-model/0.18.1/
tycho-metadata-model-0.18.1.jar 

Completed in 1034 milliseconds

1 23 4 5 6 7 8 91011>>