HomeSort by relevance Sort by last modified time
    Searched full:feature (Results 26 - 50 of 2827) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
x86-builtin-palignr.c 1 // RUN: %clang_cc1 -ffreestanding -fsyntax-only -target-feature +ssse3 -target-feature +mmx -verify -triple x86_64-pc-linux-gnu %s
2 // RUN: %clang_cc1 -ffreestanding -fsyntax-only -target-feature +ssse3 -target-feature +mmx -verify -triple i686-apple-darwin10 %s
attr-availability.c 3 void f0() __attribute__((availability(macosx,introduced=10.4,deprecated=10.2))); // expected-warning{{feature cannot be deprecated in Mac OS X version 10.2 before it was introduced in version 10.4; attribute ignored}}
4 void f1() __attribute__((availability(ios,obsoleted=2.1,deprecated=3.0))); // expected-warning{{feature cannot be obsoleted in iOS version 2.1 before it was deprecated in version 3.0; attribute ignored}}
  /external/e2fsprogs/tests/f_imagic_fs/
script 2 PREP_CMD='$DEBUGFS -w -R "feature imagic_inodes" $TMPFILE > /dev/null 2>&1'
  /external/oprofile/daemon/
opd_extended.c 3 * OProfile Extended Feature
19 * if extended feature is enabled */
25 * OProfile Extended Feature Table
43 for (i = 0 ; ext_feature_table[i].feature != NULL ; i++ ) {
44 if(!strncmp(name, ext_feature_table[i].feature,
45 strlen(ext_feature_table[i].feature))) {
79 * <feature name>:<param1>:<param2>:<param3>:.....
95 /* Parse feature name*/
107 fprintf(stderr,"opd_ext_initialize: Invalid extended feature option: %s\n", value);
130 printf("\n-- OProfile Extended-Feature Statistics --\n")
    [all...]
  /external/oprofile/events/mips/r12000/
unit_masks 4 # We don't support the R12000 conditional count feature yet.
  /frameworks/base/core/java/android/hardware/
package.html 6 href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code
7 &lt;uses-feature&gt;}</a> manifest element.</p>
  /external/llvm/lib/MC/
SubtargetFeature.cpp 29 /// hasFlag - Determine if a feature has a flag; '+' or '-'
31 static inline bool hasFlag(const StringRef Feature) {
32 assert(!Feature.empty() && "Empty string");
34 char Ch = Feature[0];
41 static inline std::string StripFlag(const StringRef Feature) {
42 return hasFlag(Feature) ? Feature.substr(1) : Feature;
47 static inline bool isEnabled(const StringRef Feature) {
48 assert(!Feature.empty() && "Empty string")
    [all...]
  /external/mesa3d/src/mesa/main/
mfeatures.h 39 /* assert that a feature is disabled and should never be used */
43 * A feature can be anything. But most of them share certain characteristics.
45 * When a feature defines vtxfmt entries, they can be initialized and
47 * _MESA_INIT_<FEATURE>_VTXFMT
48 * _mesa_install_<feature>_vtxfmt
50 * When a feature defines dispatch entries, they are initialized by
51 * _mesa_init_<feature>_dispatch
53 * When a feature has states, they are initialized and freed by
54 * _mesa_init_<feature>
55 * _mesa_free_<feature>_dat
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 52 public boolean hasFeature(String feature, String version) {
54 if (feature.startsWith("+")) {
55 feature = feature.substring(1);
62 if (feature.equalsIgnoreCase("Core")) {
64 } else if (feature.equalsIgnoreCase("XML")) {
66 } else if (feature.equalsIgnoreCase("XMLVersion")) {
87 public Object getFeature(String feature, String version) {
88 return hasFeature(feature, version) ? this : null;
  /frameworks/base/data/etc/
android.hardware.touchscreen.multitouch.jazzhand.xml 20 <feature name="android.hardware.touchscreen" />
21 <feature name="android.hardware.touchscreen.multitouch" />
22 <feature name="android.hardware.touchscreen.multitouch.distinct" />
23 <feature name="android.hardware.touchscreen.multitouch.jazzhand" />
24 <feature name="android.hardware.faketouch" />
android.hardware.audio.low_latency.xml 17 <!-- This is the feature indicating low-latency audio, as specified by the
19 feature. -->
21 <feature name="android.hardware.audio.low_latency" />
android.hardware.location.gps.xml 19 <feature name="android.hardware.location" />
20 <feature name="android.hardware.location.network" />
21 <feature name="android.hardware.location.gps" />
tablet_core_hardware.xml 26 <feature name="android.hardware.location" />
27 <feature name="android.hardware.location.network" />
28 <feature name="android.hardware.sensor.compass" />
29 <feature name="android.hardware.sensor.accelerometer" />
30 <feature name="android.hardware.bluetooth" />
31 <feature name="android.hardware.touchscreen" />
32 <feature name="android.hardware.touchscreen.multitouch" />
33 <feature name="android.hardware.touchscreen.multitouch.distinct" />
34 <feature name="android.hardware.microphone" />
35 <feature name="android.hardware.screen.portrait" /
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
info_view.css 32 #info-view .feature-green {
36 #info-view .feature-yellow {
40 #info-view .feature-red {
  /external/clang/test/SemaCXX/
c99-variable-length-array.cpp 17 int array1[N]; // expected-warning{{variable length arrays are a C99 feature, accepted as an extension}}
18 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature, accepted as an extension}}
26 int array1[N]; // expected-warning{{variable length arrays are a C99 feature, accepted as an extension}}
39 int array2[T::value]; // expected-warning{{variable length arrays are a C99 feature, accepted as an extension}}
50 int array[N]; // expected-warning{{variable length arrays are a C99 feature, accepted as an extension}}
57 // expected-warning{{variable length arrays are a C99 feature, accepted as an extension}}
71 int array[N]; // expected-warning{{variable length arrays are a C99 feature, accepted as an extension}}
80 // expected-warning{{variable length arrays are a C99 feature, accepted as an extension}}
90 struct edge_info edgeInfo[x]; // expected-warning{{variable length arrays are a C99 feature, accepted as an extension}}
98 int array[value * i]; // expected-warning 2{{variable length arrays are a C99 feature, accepted as an extension}
    [all...]
c99.cpp 7 Point p1 = { .x = 17, // expected-warning{{designated initializers are a C99 feature, accepted in C++ as an extension}}
8 y: 25 }; // expected-warning{{designated initializers are a C99 feature, accepted in C++ as an extension}} \
  /external/webrtc/src/system_wrappers/interface/
cpu_features_wrapper.h 24 typedef int (*WebRtc_CPUInfo)(CPUFeature feature);
25 // returns true if the CPU supports the feature.
27 // No CPU feature is available => straight C path.
  /external/clang/test/CodeGen/
x86_32-arguments-nommx.c 1 // RUN: %clang_cc1 -target-feature -mmx -target-feature +sse2 -triple i686-pc-linux-gnu -emit-llvm -o - %s | FileCheck %s
  /external/icu4c/layout/
LookupProcessor.cpp 184 // one feature.
185 for (le_int32 feature = 0; feature < featureCount; feature += 1) {
186 le_uint16 featureIndex = SWAPW(langSysTable->featureIndexArray[feature]);
207 // If this is the required feature, add its lookups
213 // If we added lookups from the required feature, sort them
218 for (le_uint16 feature = 0; feature < featureCount; feature += 1)
    [all...]
  /development/samples/AndroidBeamDemo/
_index.html 1 <p>Android Beam Demo shows how to use the Android Beam feature introduced in API level 14. This
  /external/clang/test/Lexer/
hexfloat.cpp 3 float f = 0x1p+1; // expected-warning{{hexadecimal floating constants are a C99 feature}}
rdr-6096838-2.c 5 long double d = 0x0.0000003ffffffff00000p-16357L; /* expected-warning {{ hexadecimal floating constants are a C99 feature }} */
  /external/clang/test/Preprocessor/
non_fragile_feature.m 7 #error Non-fragile ABI used for compilation but feature macro not set.
non_fragile_feature1.m 7 #error Non-fragile ABI not used for compilation but feature macro set.
  /external/nist-sip/java/gov/nist/core/net/
package.html 4 and control over these objects. This feature was proposed by Mike Andrews

Completed in 672 milliseconds

12 3 4 5 6 7 8 91011>>