/prebuilts/go/darwin-x86/src/cmd/api/ |
goapi_test.go | 63 for _, feature := range wanted { 64 if feature == "" { 67 _, ok := w.features[feature] 69 t.Errorf("package %s: missing feature %q", fi.Name(), feature) 71 delete(w.features, feature) 74 for _, feature := range w.Features() { 75 t.Errorf("package %s: extra feature not in golden file: %q", fi.Name(), feature) 88 name: "feature added" [all...] |
/prebuilts/go/linux-x86/src/cmd/api/ |
goapi_test.go | 63 for _, feature := range wanted { 64 if feature == "" { 67 _, ok := w.features[feature] 69 t.Errorf("package %s: missing feature %q", fi.Name(), feature) 71 delete(w.features, feature) 74 for _, feature := range w.Features() { 75 t.Errorf("package %s: extra feature not in golden file: %q", fi.Name(), feature) 88 name: "feature added" [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
codeop.py | 134 for feature in _features:
135 if codeob.co_flags & feature.compiler_flag:
136 self.flags |= feature.compiler_flag
|
/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...] |
/packages/apps/Settings/src/com/android/settings/dashboard/suggestions/ |
SuggestionRanker.java | 78 for (String feature : WEIGHTS.keySet()) { 79 sum += WEIGHTS.get(feature) * features.get(feature);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
codeop.py | 134 for feature in _features: 135 if codeob.co_flags & feature.compiler_flag: 136 self.flags |= feature.compiler_flag
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
codeop.py | 134 for feature in _features: 135 if codeob.co_flags & feature.compiler_flag: 136 self.flags |= feature.compiler_flag
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
codeop.py | 134 for feature in _features: 135 if codeob.co_flags & feature.compiler_flag: 136 self.flags |= feature.compiler_flag
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
codeop.py | 134 for feature in _features: 135 if codeob.co_flags & feature.compiler_flag: 136 self.flags |= feature.compiler_flag
|
/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());
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/ |
ISensorTestStateContainer.java | 75 * @param feature the feature being tested 76 * @return true if the specified feature is implemented; false otherwise. 78 boolean hasSystemFeature(String feature);
|
/cts/hostsidetests/appsecurity/test-apps/NoRestartApp/feature/ |
Android.mk | 36 LOCAL_AAPT_FLAGS += --feature-of $(featureOfApk)
|
/external/autotest/client/cros/a11y/ |
a11y_test_base.py | 73 def _set_feature(self, feature, value): 74 """Set given feature to given value using a11y API call. 78 @param feature: string of accessibility feature to change. 81 @raises: error.TestError if feature cannot be set. 89 feature, value_str, feature)) 97 (feature, value_str)))
|
/external/clang/test/Sema/ |
non-null-warning.c | 6 # error nullability feature should be defined
|
/external/compiler-rt/lib/scudo/ |
scudo_utils.h | 37 bool testCPUFeature(CPUFeature feature);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/headless-build/ |
build.properties | 21 #The type of the top level element we are building, generally "feature" 22 topLevelElementType = feature 27 product=/plugin or feature id/path/to/.product 84 #Sort bundles depenedencies across all features instead of just within a given feature. 138 #The value to be used for the qualifier of a plugin or feature when you want to override the value computed by pde. 143 #The generated suffix is computed according to the content of the feature 174 #- the location of the jar or folder that is the plugin or feature : /path/to/foo.jar or /path/to/foo 176 #- the location of a feature.xml, or for 2.1 style plugins, the plugin.xml or fragment.xml
|
/external/llvm/test/MC/Mips/micromips/ |
invalid-wrong-error.s | 10 sdbbp 1024 # CHECK: :[[@LINE]]:3: error: instruction requires a CPU feature not currently enabled 13 syscall 1024 # CHECK: :[[@LINE]]:3: error: instruction requires a CPU feature not currently enabled
|
/packages/apps/TV/common/src/com/android/tv/common/feature/ |
PropertyFeature.java | 17 package com.android.tv.common.feature; 24 * Feature controlled by system property. 28 public final class PropertyFeature implements Feature { 32 * Create System Property backed feature.
|
/packages/apps/TV/src/com/android/tv/config/ |
RemoteConfigFeature.java | 22 import com.android.tv.common.feature.Feature; 25 * A {@link Feature} controlled by a {@link RemoteConfig} boolean. 27 public class RemoteConfigFeature implements Feature {
|
/prebuilts/misc/common/swig/include/2.0.11/ |
intrusive_ptr.i | 51 %feature("smartptr", noblock=1) TYPE { SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE > } 57 %feature("smartptr", noblock=1) TYPE { SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE > }
|
/art/runtime/arch/arm/ |
instruction_set_features_arm.cc | 142 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't. 321 std::string feature = android::base::Trim(*i); local 322 if (feature == "div") { 324 } else if (feature == "-div") { 326 } else if (feature == "atomic_ldrd_strd") { 328 } else if (feature == "-atomic_ldrd_strd") { 330 } else if (feature == "armv8a") { 332 } else if (feature == "-armv8a") { 335 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str()) [all...] |
/build/kati/testcase/ |
posix_var.mk | 5 # GNU make 3.82 has this feature though.
|
/build/make/core/combo/arch/x86/ |
atom.mk | 1 # This file contains feature macro definitions specific to the
|
/build/make/core/combo/arch/x86_64/ |
x86_64.mk | 1 # This file contains feature macro definitions specific to the
|
/cts/tests/tests/accounts/common/src/android/accounts/cts/common/tx/ |
AddAccountTx.java | 49 for (String feature : requiredFeatures) { 50 this.requiredFeatures.add(feature);
|