/external/chromium_org/chrome/common/extensions/docs/server2/ |
manifest_features.py | 15 def ConvertDottedKeysToNested(features): 16 '''Some Manifest Features are subordinate to others, such as app.background to 17 app. Subordinate Features can be moved inside the parent Feature under the key 20 Modifies |features|, a Manifest Features dictionary, by moving subordinate 21 Features with names of the form 'parent.child' into the 'parent' Feature. 22 Child features are renamed to the 'child' section of their previous name. 26 def add_child(features, parent, child_name, value): 28 if not 'children' in features[parent]: 29 features[parent]['children'] = { [all...] |
manifest_data_source.py | 13 def _ListifyAndSortDocs(features, app_name): 42 def convert_and_sort(features): 43 for key, value in features.items(): 56 features[key]['children'] = convert_and_sort(value['children']) 57 return sorted(features.values(), key=sort_key) 62 if 'name' in features: 63 name = features['name'] 66 features = convert_and_sort(features) 68 return features [all...] |
/external/chromium_org/chrome/renderer/safe_browsing/ |
features_unittest.cc | 5 #include "chrome/renderer/safe_browsing/features.h" 15 FeatureMap features; local 17 EXPECT_TRUE(features.AddBooleanFeature( 20 EXPECT_EQ(FeatureMap::kMaxFeatureMapSize, features.features().size()); 22 // Attempting to add more features should fail. 24 EXPECT_FALSE(features.AddBooleanFeature( 27 EXPECT_EQ(FeatureMap::kMaxFeatureMapSize, features.features().size()); 31 FeatureMap features; local [all...] |
phishing_url_feature_extractor_unittest.cc | 9 #include "chrome/renderer/safe_browsing/features.h" 33 expected_features.AddBooleanFeature(features::kUrlHostIsIpAddress); 34 expected_features.AddBooleanFeature(features::kUrlPathToken + 36 expected_features.AddBooleanFeature(features::kUrlPathToken + 38 expected_features.AddBooleanFeature(features::kUrlPathToken + 41 FeatureMap features; local 42 ASSERT_TRUE(extractor_.ExtractFeatures(GURL(url), &features)); 43 ExpectFeatureMapsAreEqual(features, expected_features); 47 expected_features.AddBooleanFeature(features::kUrlTldToken + 49 expected_features.AddBooleanFeature(features::kUrlDomainToken [all...] |
/external/libpng/ |
pngusr.h | 1 #define PNG_USER_PRIVATEBUILD "Skia build; no MNG features"
|
/external/qemu/distrib/libpng-1.2.46/ |
pngusr.h | 1 #define PNG_USER_PRIVATEBUILD "Skia build; no MNG features"
|
/frameworks/base/telephony/java/android/telephony/cdma/ |
package.html | 3 Provides APIs for utilizing CDMA-specific telephony features.
|
/ndk/tests/device/test-cpufeatures/jni/ |
test_android_setCpu_2.c | 4 #include "cpu-features.h" 13 uint64_t features, cpu_features = 0xaabdedf012934839ULL; local 16 features = android_getCpuFeatures(); 18 printf("Retrieved cpu_count=%d, features=%08llx\n", 19 count, features); 24 printf("Trying to set cpu_count=%d, features=%08llx\n",
|
/development/samples/RenderScript/ |
_index.html | 1 <p>A set of samples that demonstrate how to use various features of the Renderscript APIs.</p
|
/development/samples/USB/ |
_index.html | 1 <p>A set of samples that demonstrate how to use various features of the USB APIs.</p
|
/frameworks/base/tests/RenderScriptTests/MiscSamples/ |
_index.html | 1 <p>A set of samples that demonstrate how to use various features of the Renderscript APIs.</p
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/ |
package.html | 3 Provides CDMA-specific features for text/data/PDU SMS messages
|
/external/chromium_org/chrome/browser/safe_browsing/ |
browser_feature_extractor_unittest.cc | 165 std::map<std::string, double>* features) { 169 EXPECT_EQ(0U, features->count(feature.name())); 170 (*features)[feature.name()] = feature.value(); 286 std::map<std::string, double> features; local 287 GetFeatureMap(request, &features); 289 EXPECT_EQ(12U, features.size()); 290 EXPECT_DOUBLE_EQ(2.0, features[features::kUrlHistoryVisitCount]); 292 features[features::kUrlHistoryVisitCountMoreThan24hAgo]) 375 std::map<std::string, double> features; local 578 std::map<std::string, double> features; local [all...] |
/dalvik/dx/tests/030-minimal-jasmin/ |
info.txt | 2 file and then dumping it. It doesn't test any features in particular.
|
/external/clang/test/Coverage/ |
html-print.c | 3 #include "c-language-features.inc"
|
/frameworks/base/telephony/java/android/telephony/gsm/ |
package.html | 3 Provides APIs for utilizing GSM-specific telephony features, such as
|
/frameworks/support/v13/java/android/support/v13/app/ |
package.html | 3 Support classes to access some of the android.app package features introduced after API level 13 in a backwards compatible fashion.
|
/frameworks/support/v4/java/android/support/v4/view/accessibility/ |
package.html | 3 Support classes to access some of the android.view.accessibility package features introduced after API level 4 in a backwards compatible fashion.
|
/external/chromium_org/gpu/config/ |
gpu_control_list_unittest.cc | 75 std::set<int> features = control_list->MakeDecision( local 77 EXPECT_EMPTY_SET(features); 81 // Empty list: all features are allowed. 95 std::set<int> features = control_list->MakeDecision( local 97 EXPECT_EMPTY_SET(features); 122 "features": [ 132 std::set<int> features = control_list->MakeDecision( local 134 EXPECT_SINGLE_FEATURE(features, TEST_FEATURE_0); 140 features = control_list->MakeDecision( 142 EXPECT_SINGLE_FEATURE(features, TEST_FEATURE_0) 171 std::set<int> features = control_list->MakeDecision( local 282 std::set<int> features = control_list->MakeDecision( local 326 std::set<int> features = control_list->MakeDecision( local 393 std::set<int> features = control_list->MakeDecision( local 442 std::set<int> features = control_list->MakeDecision( local 488 std::set<int> features = control_list->MakeDecision( local 526 std::set<int> features = control_list->MakeDecision( local [all...] |
gpu_util_unittest.cc | 53 std::set<int> features; local 54 StringToFeatureSet("", &features); 55 EXPECT_EQ(0u, features.size()); 58 // One features. 59 std::set<int> features; local 60 StringToFeatureSet("4", &features); 61 EXPECT_EQ(1u, features.size()); 64 // Multiple features. 65 std::set<int> features; local 66 StringToFeatureSet("1,9", &features); [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
CpuFeaturesTest.java | 77 String features = getFieldFromCpuinfo("Features"); local 78 if (features == null) 81 return Arrays.asList(features.split("\\s")); 88 private static void assertInCpuinfo(List<String> features, 91 features.contains(feature)); 94 private static void assertNotInCpuinfo(List<String> features, 97 features.contains(feature)); 123 List<String> features = getFeaturesFromCpuinfo(); local 124 /* When /proc/cpuinfo is read by 32-bit ARM processes, the Features 143 List<String> features = getFeaturesFromCpuinfo(); local [all...] |
/art/test/006-args/ |
info.txt | 2 runtime test framework. The test is intended to exercise basic features, 4 features might disrupt junit.
|
/art/test/007-count10/ |
info.txt | 2 runtime test framework. The test is intended to exercise basic features, 4 features might disrupt junit.
|
/art/test/008-exceptions/ |
info.txt | 2 runtime test framework. The test is intended to exercise basic features, 4 features might disrupt junit.
|
/art/test/009-instanceof/ |
info.txt | 2 runtime test framework. The test is intended to exercise basic features, 4 features might disrupt junit.
|