HomeSort by relevance Sort by last modified time
    Searched refs:IsSupported (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/v8/src/ia32/
cpu-ia32.cc 50 return CpuFeatures::IsSupported(SSE2);
codegen-ia32.cc 113 if (buffer == NULL || !CpuFeatures::IsSupported(SSE2)) return &sqrt;
178 if (CpuFeatures::IsSupported(SSE2)) {
427 if (CpuFeatures::IsSupported(SSE2)) {
452 if (CpuFeatures::IsSupported(SSE2)) {
473 if (CpuFeatures::IsSupported(SSE2)) {
578 if (CpuFeatures::IsSupported(SSE2)) {
  /external/chromium/webkit/glue/
simple_webmimeregistry_impl.cc 35 return WebMimeRegistry::IsSupported;
42 return WebMimeRegistry::IsSupported;
49 return WebMimeRegistry::IsSupported;
74 return IsSupported;
84 return IsSupported;
91 return WebMimeRegistry::IsSupported;
  /external/webkit/Source/WebKit/chromium/public/
WebMimeRegistry.h 42 enum SupportsType { IsNotSupported, IsSupported, MayBeSupported };
  /external/v8/src/arm/
cpu-arm.cc 50 return CpuFeatures::IsSupported(VFP3);
macro-assembler-arm.cc 268 ASSERT(CpuFeatures::IsSupported(VFP3));
285 CpuFeatures::IsSupported(ARMv7) &&
299 if (!CpuFeatures::IsSupported(ARMv7)) {
314 if (!CpuFeatures::IsSupported(ARMv7)) {
342 if (!CpuFeatures::IsSupported(ARMv7)) {
356 if (!CpuFeatures::IsSupported(ARMv7)) {
367 if (!CpuFeatures::IsSupported(ARMv7)) {
675 if (CpuFeatures::IsSupported(ARMv7)) {
717 if (CpuFeatures::IsSupported(ARMv7)) {
    [all...]
  /external/v8/src/mips/
cpu-mips.cc 56 return CpuFeatures::IsSupported(FPU);
assembler-mips.h 414 static bool IsSupported(CpuFeature f) {
429 return IsSupported(f);
443 ASSERT(CpuFeatures::IsSupported(f));
    [all...]
code-stubs-mips.cc 522 if (CpuFeatures::IsSupported(FPU)) {
592 if (CpuFeatures::IsSupported(FPU) &&
612 if (CpuFeatures::IsSupported(FPU)) {
690 if (CpuFeatures::IsSupported(FPU)) {
792 if (CpuFeatures::IsSupported(FPU)) {
864 if (CpuFeatures::IsSupported(FPU)) {
    [all...]
  /external/eigen/Eigen/src/Core/
Assign_MKL.h 41 { enum { IsSupported = 0 }; };
60 MightEnableVml = vml_call<UnaryOp>::IsSupported && StorageOrdersAgree && DstHasDirectAccess && SrcHasDirectAccess
145 enum { IsSupported = 1 }; \
154 enum { IsSupported = 1 }; \
164 enum { IsSupported = 1 }; \
  /external/chromium/chrome/browser/
plugin_data_remover.h 37 static bool IsSupported();
plugin_data_remover_helper.cc 43 bool result = PluginDataRemover::IsSupported();
plugin_data_remover.cc 168 bool PluginDataRemover::IsSupported() {
  /external/webkit/Source/WebCore/platform/wx/
PasteboardWx.cpp 86 if (allowPlainText && wxTheClipboard->IsSupported( wxDF_TEXT )) {
  /external/v8/test/cctest/
test-assembler-ia32.cc 171 if (!CpuFeatures::IsSupported(SSE2)) return;
178 CHECK(CpuFeatures::IsSupported(SSE2));
206 if (!CpuFeatures::IsSupported(SSE2)) return;
213 CHECK(CpuFeatures::IsSupported(SSE2));
263 if (!CpuFeatures::IsSupported(SSE2)) return;
266 CHECK(CpuFeatures::IsSupported(SSE2));
309 if (!CpuFeatures::IsSupported(SSE2)) return;
312 CHECK(CpuFeatures::IsSupported(SSE2));
test-disasm-x64.cc 102 CHECK(CpuFeatures::IsSupported(CPUID));
107 CHECK(CpuFeatures::IsSupported(RDTSC));
351 if (CpuFeatures::IsSupported(SSE2)) {
374 if (CpuFeatures::IsSupported(CMOV)) {
397 if (CpuFeatures::IsSupported(SSE2)) {
test-disasm-ia32.cc 110 CHECK(CpuFeatures::IsSupported(CPUID));
115 CHECK(CpuFeatures::IsSupported(RDTSC));
371 if (CpuFeatures::IsSupported(SSE2)) {
393 if (CpuFeatures::IsSupported(CMOV)) {
416 if (CpuFeatures::IsSupported(SSE2)) {
445 if (CpuFeatures::IsSupported(SSE4_1)) {
test-assembler-arm.cc 249 if (CpuFeatures::IsSupported(VFP3)) {
363 if (CpuFeatures::IsSupported(ARMv7)) {
399 if (CpuFeatures::IsSupported(ARMv7)) {
442 if (CpuFeatures::IsSupported(VFP3)) {
645 if (CpuFeatures::IsSupported(VFP3)) {
756 if (CpuFeatures::IsSupported(VFP3)) {
871 if (CpuFeatures::IsSupported(VFP3)) {
test-disasm-arm.cc 273 if (CpuFeatures::IsSupported(ARMv7)) {
363 if (CpuFeatures::IsSupported(ARMv7)) {
418 if (CpuFeatures::IsSupported(VFP3)) {
713 if (CpuFeatures::IsSupported(ARMv7)) {
test-assembler-mips.cc 287 if (CpuFeatures::IsSupported(FPU)) {
360 if (CpuFeatures::IsSupported(FPU)) {
421 if (CpuFeatures::IsSupported(FPU)) {
569 if (CpuFeatures::IsSupported(FPU)) {
782 if (CpuFeatures::IsSupported(FPU) && kArchVariant == kMips32r2) {
1087 if (CpuFeatures::IsSupported(FPU)) {
1170 if (CpuFeatures::IsSupported(FPU)) {
    [all...]
  /external/stressapptest/src/
os.h 194 virtual bool IsSupported();
  /external/chromium/net/proxy/
proxy_service.cc 208 DCHECK(IsSupported());
219 static bool IsSupported() {
437 if (!ProxyResolverFactoryForSystem::IsSupported()) {
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebMediaPlayerClientImpl.cpp 588 case WebMimeRegistry::IsSupported:
589 return MediaPlayer::IsSupported;
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.h 171 enum SupportsType { IsNotSupported, IsSupported, MayBeSupported };
  /libcore/luni/src/test/java/tests/org/w3c/dom/
IsSupported.java 12 * The "feature" parameter in the isSupported(feature,version)" method is the
19 * "isSupported(feature,version)" method is invoked with "feature" equal to
28 public final class IsSupported extends DOMTestCase {
63 state = rootNode.isSupported("XXX", "1.0");
72 state = rootNode.isSupported("XML", "9.0");
81 state = rootNode.isSupported("xml", "1.0");
90 state = rootNode.isSupported("core", "2.0");
99 state = rootNode.isSupported("xml", "2.0");
108 state = rootNode.isSupported("XML", "");
117 state = rootNode.isSupported("XML", "1.0")
    [all...]

Completed in 524 milliseconds

1 2 3