HomeSort by relevance Sort by last modified time
    Searched full:features (Results 51 - 75 of 8210) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/test/038-inner-null/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/039-join-main/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/040-miranda/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/041-narrowing/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/043-privates/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/044-proxy/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/045-reflect-array/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/046-reflect/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/047-returns/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/049-show-object/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/050-sync-test/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/051-thread/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/052-verifier-fun/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/053-wait-some/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /art/test/054-uncaught/
info.txt 2 runtime test framework. The test is intended to exercise basic features,
4 features might disrupt junit.
  /external/llvm/test/Feature/
README.txt 1 This directory contains test cases for individual source features of LLVM.
3 features of LLVM, for very small examples. Entire programs should not go here.
  /external/chromium_org/chrome/renderer/safe_browsing/
test_utils.cc 10 #include "chrome/renderer/safe_browsing/features.h"
17 std::map<std::string, double> sorted_first(first.features().begin(),
18 first.features().end());
19 std::map<std::string, double> sorted_second(second.features().begin(),
20 second.features().end());
features.h 5 // Common types and constants for extracting and evaluating features in the
9 // feature or combination of features. These values can then be summed to
12 // Some features are boolean features. If these features are set, they always
13 // have a value of 0.0 or 1.0. In practice, the features are only set if the
16 // We also use token features. These features have a unique name that is
18 // example, "UrlDomain=chromium". These features are also always set to 1.0
21 // The intermediate storage of the features for a URL is a FeatureMap, which i
53 const base::hash_map<std::string, double>& features() const { function in class:safe_browsing::FeatureMap
71 namespace features { namespace in namespace:safe_browsing
    [all...]
features.cc 5 #include "chrome/renderer/safe_browsing/features.h"
24 // too small, or there is a bug causing too many features to be added.
32 // We only expect features in the range [0.0, 1.0], so fail if the feature is
49 namespace features { namespace in namespace:safe_browsing
50 // URL host features
56 // URL host aggregate features
60 // URL path features
63 // DOM HTML form features
71 // DOM HTML link features
76 // DOM HTML script features
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
isSupported12.java 73 java.util.List features = new java.util.ArrayList(); local
74 features.add("Core");
75 features.add("XML");
76 features.add("HTML");
77 features.add("Views");
78 features.add("StyleSheets");
79 features.add("CSS");
80 features.add("CSS2");
81 features.add("Events");
82 features.add("UIEvents")
    [all...]
  /frameworks/base/core/java/android/content/pm/
FeatureGroupInfo.java 22 * A set of features that can be requested by an application. This corresponds
29 * The list of features that are required by this group.
33 public FeatureInfo[] features; field in class:FeatureGroupInfo
39 features = other.features;
49 dest.writeTypedArray(features, flags);
56 group.features = source.createTypedArray(FeatureInfo.CREATOR);
  /ndk/tests/device/test-cpufeatures/jni/
test_android_setCpuArm_1.c 4 #include "cpu-features.h"
17 uint64_t features, cpu_features = 0xaabdedf012934839ULL; local
24 printf("Setting cpu_count=%d, features=%08llx cpu_id=%08x\n",
31 features = android_getCpuFeatures();
34 printf("Retrieved cpu_count=%d, features=%08llx cpu_id=%08x\n",
35 count, features, id);
40 if (features != cpu_features)
test_android_setCpu_1.c 4 #include "cpu-features.h"
13 uint64_t features, cpu_features = 0xaabdedf012934839ULL; local
19 printf("Setting cpu_count=%d, features=%08llx\n",
26 features = android_getCpuFeatures();
28 printf("Retrieved cpu_count=%d, features=%08llx\n",
29 count, features);
34 if (features != cpu_features)
test_cpufeatures.c 18 #include <cpu-features.h>
50 uint64_t features = android_getCpuFeatures(); local
51 printf( "Supported ARM features:\n");
53 if ((features & ANDROID_CPU_ARM_FEATURE_## name) != 0) { \
81 uint64_t features = android_getCpuFeatures(); local
82 printf( "Supported x86 features:\n");
84 if ((features & ANDROID_CPU_X86_FEATURE_## name) != 0) { \
95 // Check that the CPU features mask is empty for anything that isn't
99 uint64_t features = android_getCpuFeatures(); local
100 if (features != 0)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
features_utility.py 6 Utility functions for working with the Feature abstraction. Features are grouped
12 A Feature may have other keys from a _features.json file as well. Features with
32 of Features.
34 features = {}
37 '''Returns true if this feature should be ignored. Features are ignored if
89 # 'extensions'. In the JSON features as read from Chrome it means 'win' vs
98 features[name] = {
102 features[name].update(value)
104 return features
107 def Filtered(features, platform)
    [all...]

Completed in 3510 milliseconds

1 23 4 5 6 7 8 91011>>