/system/extras/simpleperf/ |
cmd_dumprecord.cpp | 93 static const std::string GetFeatureName(int feature); 127 for (auto& feature : features) { 128 printf("feature: %s\n", GetFeatureName(feature).c_str()); 132 static const std::string GetFeatureName(int feature) { 153 auto it = feature_name_map.find(feature); 157 return android::base::StringPrintf("unknown_feature(%d)", feature); 186 int feature = pair.first; local 188 printf("feature section for %s: offset %" PRId64 ", size %" PRId64 "\n", 189 GetFeatureName(feature).c_str(), section.offset, section.size) [all...] |
/art/runtime/arch/x86/ |
instruction_set_features_x86.cc | 32 // Feature-support arrays. 160 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't. 282 std::string feature = android::base::Trim(*i); local 283 if (feature == "ssse3") { 285 } else if (feature == "-ssse3") { 287 } else if (feature == "sse4.1") { 289 } else if (feature == "-sse4.1") { 291 } else if (feature == "sse4.2") { 293 } else if (feature == "-sse4.2") { 295 } else if (feature == "avx") [all...] |
/external/valgrind/tests/ |
s390x_features.c | 17 // - 0 if the machine provides the asked-for feature and the cpu 19 // - 1 the machine does not provide the asked-for feature or the 22 // - 2 if the asked-for feature isn't recognised (this will be the case for 23 // any feature if run on a non-s390x machine). 28 // s390x_features <feature> [<machine-model>] 201 static int go(char *feature, char *cpu) 210 if (strcmp(feature, "s390x-zarch") == 0 ) { 212 } else if (strcmp(feature, "s390x-n3") == 0 ) { 214 } else if (strcmp(feature, "s390x-stfle") == 0 ) { 216 } else if (strcmp(feature, "s390x-ldisp") == 0 ) [all...] |
/packages/apps/DocumentsUI/src/com/android/documentsui/base/ |
Features.java | 27 * Provides access to feature flags configured in config.xml. 49 * Call this to force-enable any particular feature known by this instance. 50 * Note that all feature may not support being enabled at runtime as 51 * they may depend on runtime initialization guarded by feature check. 53 * <p>Feature changes will be persisted across activities, but not app restarts. 55 * @param feature int reference to a boolean feature resource. 57 void forceFeature(@BoolRes int feature, boolean enabled); 76 public void forceFeature(@BoolRes int feature, boolean enabled) { 77 mDebugEnabled.put(feature, enabled) [all...] |
/test/vts/utils/python/precondition/ |
precondition_utils.py | 64 feature = str(getattr(test_instance, 66 if feature: 67 if not feature.startswith("android.hardware."): 69 "The given feature name %s is invalid for HIDL HAL.", 70 feature) 74 feature not in cmd_results[const.STDOUT][0]): 75 logging.warn("The required feature %s not found.", 76 feature) 112 "The required feature %s found as a " 119 "The feature %s found in lshal-emitted vintf xml", hal [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
VulkanFeaturesTest.java | 70 for (FeatureInfo feature : features) { 71 if (PackageManager.FEATURE_VULKAN_HARDWARE_LEVEL.equals(feature.name)) { 72 mVulkanHardwareLevel = feature; 74 Log.d(TAG, feature.name + "=" + feature.version); 76 } else if (PackageManager.FEATURE_VULKAN_HARDWARE_VERSION.equals(feature.name)) { 77 mVulkanHardwareVersion = feature; 79 Log.d(TAG, feature.name + "=0x" + Integer.toHexString(feature.version)); 81 } else if (PackageManager.FEATURE_VULKAN_HARDWARE_COMPUTE.equals(feature.name)) [all...] |
/art/runtime/arch/mips/ |
instruction_set_features_mips.cc | 182 std::string feature = android::base::Trim(*i); local 183 if (feature == "fpu32") { 185 } else if (feature == "-fpu32") { 187 } else if (feature == "mips2") { 189 } else if (feature == "-mips2") { 191 } else if (feature == "r6") { 193 } else if (feature == "-r6") { 196 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
|
/build/make/core/combo/arch/x86/ |
silvermont.mk | 1 # This file contains feature macro definitions specific to the
|
/build/make/core/combo/arch/x86_64/ |
silvermont.mk | 1 # This file contains feature macro definitions specific to the
|
/external/llvm/test/MC/Mips/mips32r5/ |
invalid-mips32.s | 8 eretnc # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
|
invalid-mips32r2.s | 8 eretnc # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
|
invalid-mips32r3.s | 8 eretnc # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
|
/external/llvm/test/MC/Mips/mips64r5/ |
invalid-mips64.s | 8 eretnc # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
|
invalid-mips64r2.s | 8 eretnc # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
|
invalid-mips64r3.s | 8 eretnc # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
|
/frameworks/base/libs/androidfw/tests/data/feature/ |
build | 23 aapt2 link -o feature.apk \
|
/frameworks/base/telephony/java/android/telephony/ims/stub/ |
ImsConfigImplBase.java | 32 * Provides APIs to get/set the IMS service feature/capability/parameters. 35 * 2) Items configured by user. Mainly service feature class. 95 * Gets the value of the specified IMS feature item for specified network type. 96 * This operation gets the feature config value from the master storage (i.e. final 99 * @param feature as defined in com.android.ims.ImsConfig#FeatureConstants. 101 * @param listener feature value returned asynchronously through listener. 104 public void getFeatureValue(int feature, int network, ImsConfigListener listener) 109 * Sets the value for IMS feature item for specified network type. 113 * @param feature as defined in com.android.ims.ImsConfig#FeatureConstants. 119 public void setFeatureValue(int feature, int network, int value, ImsConfigListener listener [all...] |
/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/ |
TestImsService.java | 20 import android.telephony.ims.feature.MMTelFeature; 21 import android.telephony.ims.feature.RcsFeature;
|
/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTestIncompatibleException.java | 50 public static DOMTestIncompatibleException incompatibleFeature(String feature, 53 "Implementation does not support feature \""); 54 buf.append(feature);
|
/prebuilts/misc/common/swig/include/2.0.11/python/ |
pyabc.i | 2 %feature("python:abc", #Abc) Type;
|
std_pair.i | 156 %feature("python:sq_length") std::pair "SwigPython_std_pair_len"; 157 %feature("python:sq_length") std::pair<T*,U> "SwigPython_std_pair_len"; 158 %feature("python:sq_length") std::pair<T,U*> "SwigPython_std_pair_len"; 159 %feature("python:sq_length") std::pair<T*,U*> "SwigPython_std_pair_len"; 161 %feature("python:tp_repr") std::pair "SwigPython_std_pair_repr"; 162 %feature("python:tp_repr") std::pair<T*,U> "SwigPython_std_pair_repr"; 163 %feature("python:tp_repr") std::pair<T,U*> "SwigPython_std_pair_repr"; 164 %feature("python:tp_repr") std::pair<T*,U*> "SwigPython_std_pair_repr"; 166 %feature("python:sq_item") std::pair "SwigPython_std_pair_getitem"; 167 %feature("python:sq_item") std::pair<T*,U> "SwigPython_std_pair_getitem" [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/ |
arch5tej.s | 12 bkpt 10 @ is a feature added to GAS.
|
/art/runtime/arch/arm64/ |
instruction_set_features_arm64.cc | 128 std::string feature = android::base::Trim(*i); local 129 if (feature == "a53") { 131 } else if (feature == "-a53") { 134 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
|
/cts/hostsidetests/appsecurity/test-apps/NoRestartApp/ |
Android.mk | 35 # Build the feature split 38 include $(LOCAL_PATH)/feature/Android.mk
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/ |
domreg.py | 48 find one with the required feature set. If no implementation can
50 of (feature, version) pairs which are passed to hasFeature."""
88 feature = parts[i]
89 if feature[0] in "0123456789":
90 raise ValueError, "bad feature name: %r" % (feature,)
98 features.append((feature, version))
|