HomeSort by relevance Sort by last modified time
    Searched defs:features (Results 276 - 300 of 619) sorted by null

<<11121314151617181920>>

  /external/pcre/dist2/src/sljit/
sljitNativeX86_common.c 269 built-in CPU features. Therefore they can be overwritten by different threads
270 if they detect the CPU features in the same time. */
307 sljit_u32 features; local
313 features = (sljit_u32)CPUInfo[3];
330 : "=g" (features)
345 mov features, edx local
351 cpu_has_sse2 = (features >> 26) & 0x1;
353 cpu_has_cmov = (features >> 15) & 0x1;
    [all...]
  /external/python/cpython3/Modules/
pyexpat.c 1740 const XML_Feature *features = XML_GetFeatureList(); local
    [all...]
  /external/strace/
strace.c 204 static const char features[] = local
232 printf("\nOptional features enabled:%s\n",
233 features[0] ? features : " (none)");
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
sis190.h 266 u32 features; member in struct:sis190_private
  /external/tensorflow/tensorflow/python/feature_column/
feature_column_test.py 84 builder = _LazyBuilder(features={'a': [[2], [3.]]})
107 builder = _LazyBuilder(features={'a': [[2], [3.]]})
127 features = {'a': [[2], [3.]]}
128 builder = _LazyBuilder(features=features)
130 self.assertEqual(['a'], list(features.keys()))
133 builder = _LazyBuilder(features={'a': [[2], [3.]]})
135 'bbb is not in features dictionary'):
154 builder = _LazyBuilder(features={'a': [[2], [3.]]})
164 builder = _LazyBuilder(features={'a': [[2], [3.]]}
1212 features = {dense_and_sparse_column.name: sp_tensor} variable in class:LinearModelTest.test_dense_and_sparse_column._DenseAndSparseColumn
    [all...]
  /external/vulkan-validation-layers/demos/
vulkaninfo.c 184 VkPhysicalDeviceFeatures features; member in struct:AppGpu
1508 } features[3]; local
1602 const VkPhysicalDeviceFeatures *features = &gpu->features; local
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/ns/
nsx_core.c 766 uint64_t features = WebRtc_GetCPUFeaturesARM(); local
    [all...]
  /frameworks/base/core/java/android/speech/tts/
TextToSpeechService.java 83 * features set. In order to fully take advantage of voices, an engine should implement
239 * Queries the service for a set of features supported for a given language.
246 * @return A list of features supported for the given language.
293 Set<String> features = onGetFeaturesForLanguage(locale.getISO3Language(), local
298 Voice.LATENCY_NORMAL, false, features));
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
ImsResolver.java 94 // A query has been started for an ImsService to relay the features they support.
96 // A query to request ImsService features has completed or the ImsService has updated features.
106 * Stores information about an ImsService, including the package name, class name, and features
112 // Determines if features were created from metadata in the manifest or through dynamic
368 Set<ImsFeatureConfiguration.FeatureSlotPair> features =
371 dynamicQueryComplete(name, features);
397 // newly added ImsServiceInfo that has not had features queried yet. Start
398 // async bind and query features.
410 // Results from dynamic queries to ImsService regarding the features they support
828 HashSet<ImsFeatureConfiguration.FeatureSlotPair> features = local
864 HashSet<ImsFeatureConfiguration.FeatureSlotPair> features = calculateFeaturesToCreate(info); local
    [all...]
  /libcore/ojluni/src/main/java/sun/net/ftp/impl/
FtpClient.java 1543 ArrayList<String> features = new ArrayList<String>(); local
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogAdapter.java 1325 int features = 0; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/accessibility/
AccessibilitySettings.java 242 final Collection<AccessibilityShortcutController.ToggleableFrameworkFeatureInfo> features = local
244 final List<String> shortcutFeatureKeys = new ArrayList<>(features.size());
245 for (AccessibilityShortcutController.ToggleableFrameworkFeatureInfo feature : features) {
    [all...]
  /prebuilts/misc/common/robolectric/3.1.1/lib/
xmlpull-1.1.3.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
xmlpull-1.1.3.1.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
xmlpull-1.1.3.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
xmlpull-1.1.3.1.jar 
  /prebuilts/tools/common/m2/repository/xmlpull/xmlpull/1.1.3.1/
xmlpull-1.1.3.1.jar 
  /sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
ConfigGenerator.java 564 FeatureInfo[] features = packageMgr.getSystemAvailableFeatures(); local
565 for (FeatureInfo feature : features) {
  /system/bt/bta/dm/
bta_dm_int.h 162 features[BTA_FEATURE_BYTES_PER_PAGE * (BTA_EXT_FEATURES_PAGE_MAX + 1)]; member in struct:__anon1280
  /system/bt/bta/include/
bta_av_api.h 56 /* AV features masks */
77 /* Internal features */
146 19 /* remote control channel peer supported features update */
167 typedef struct { tBTA_AV_FEAT features; } tBTA_AV_ENABLE; member in struct:__anon1459
419 void BTA_AvEnable(tBTA_SEC sec_mask, tBTA_AV_FEAT features,
  /system/bt/btif/src/
btif_av.cc 2865 tBTA_AV_FEAT features = BTA_AV_FEAT_RCTG | BTA_AV_FEAT_METADATA | local
2894 tBTA_AV_FEAT features = BTA_AV_FEAT_NO_SCO_SSPD | BTA_AV_FEAT_RCCT | local
    [all...]
  /system/bt/stack/btm/
btm_sec.cc 445 * sec_level - bit mask of the security features
472 * sec_level - bit mask of the security features
3086 BD_FEATURES features; local
    [all...]
  /system/core/adb/
commandline.cpp 674 FeatureSet features; local
676 if (!adb_get_feature_set(&features, &error)) {
685 bool use_shell_protocol = CanUseFeature(features, kFeatureShell2); // -x
761 !CanUseFeature(features, kFeatureShell2) ? "device" : "-x");
1088 FeatureSet features; local
1324 FeatureSet features; local
1812 FeatureSet features; local
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
arm-dis.c 58 /* The features to use when disassembling optional instructions. */
59 arm_feature_set features; member in struct:arm_private_data
    [all...]
  /cts/tests/libcore/javautilcollections/libs/
guava-testlib-20.0.jar 

Completed in 629 milliseconds

<<11121314151617181920>>