/external/clang/lib/Basic/ |
D | Module.cpp | 60 static bool hasFeature(StringRef Feature, const LangOptions &LangOpts, in hasFeature() function 72 .Default(Target.hasFeature(Feature)); in hasFeature() 88 if (hasFeature(Current->Requirements[I].first, LangOpts, Target) != in isAvailable() 191 if (hasFeature(Feature, LangOpts, Target) == RequiredState) in addRequirement()
|
D | Targets.cpp | 979 bool hasFeature(StringRef Feature) const override; 1439 bool PPCTargetInfo::hasFeature(StringRef Feature) const { in hasFeature() function in __anon45f003660111::PPCTargetInfo 1817 bool hasFeature(StringRef Feature) const override { in hasFeature() function in __anon45f003660111::NVPTXTargetInfo 2684 bool hasFeature(StringRef Feature) const override; 3396 hasFeature("avx512f") ? 512 : hasFeature("avx") ? 256 : 128; in handleTargetFeatures() 3737 bool X86TargetInfo::hasFeature(StringRef Feature) const { in hasFeature() function in __anon45f003660111::X86TargetInfo 4108 hasFeature("avx512f") ? 512 : hasFeature("avx") ? 256 : 128; in handleTargetFeatures() 4530 hasFeature("avx512f") ? 512 : hasFeature("avx") ? 256 : 128; in handleTargetFeatures() 5050 bool hasFeature(StringRef Feature) const override { in hasFeature() function in __anon45f003660111::ARMTargetInfo 5804 bool hasFeature(StringRef Feature) const override { in hasFeature() function in __anon45f003660111::AArch64TargetInfo [all …]
|
/external/python/cpython2/Lib/xml/dom/ |
D | domreg.py | 35 if not dom.hasFeature(f,v):
|
D | minidom.py | 208 return self.ownerDocument.implementation.hasFeature(feature, version) 1356 def hasFeature(self, feature, version): member in DOMImplementation 1415 if self.hasFeature(feature, None): 1733 return self.implementation.hasFeature(feature, version) 1939 if not Document.implementation.hasFeature(f, v):
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMNodeProxy.java | 265 return implementation.hasFeature(feature,version); in supports() 281 return implementation.hasFeature(feature,version); in isSupported() 1418 public boolean hasFeature(String feature,String version) in hasFeature() method in DTMNodeProxy.DTMNodeProxyImplementation
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
D | DOM3TreeWalker.java | 251 && ownerDoc.getImplementation().hasFeature("Core", "3.0")) { in traverse() 257 .hasFeature("Core", "3.0")) { in traverse() 326 && ownerDoc.getImplementation().hasFeature("Core", "3.0")) { in traverse() 332 .hasFeature("Core", "3.0")) { in traverse()
|
D | LSSerializerImpl.java | 1383 if (doc != null && doc.getImplementation().hasFeature("Core","3.0")) { in getXMLVersion() 1415 if (doc != null && doc.getImplementation().hasFeature("Core","3.0")) { in getXMLEncoding() 1444 if (doc != null && doc.getImplementation().hasFeature("Core","3.0")) { in getInputEncoding()
|
/external/clang/lib/Sema/ |
D | DeclSpec.cpp | 1017 (!S.Context.getTargetInfo().hasFeature("vsx")) && in Finish() 1018 (!S.Context.getTargetInfo().hasFeature("power8-vector")) && in Finish() 1031 else if (!S.Context.getTargetInfo().hasFeature("vsx") && in Finish()
|
D | SemaChecking.cpp | 1491 if ((IsBltinExtDiv && !Context.getTargetInfo().hasFeature("extdiv")) || in CheckPPCBuiltinFunctionCall() 1493 !Context.getTargetInfo().hasFeature("bpermd"))) in CheckPPCBuiltinFunctionCall()
|
D | SemaType.cpp | 6456 if (!S.Context.getTargetInfo().hasFeature("neon")) { in HandleNeonVectorTypeAttr()
|
/external/clang/include/clang/Basic/ |
D | TargetInfo.h | 863 virtual bool hasFeature(StringRef Feature) const { in hasFeature() function
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | DOMHelper.java | 1036 if(impl!=null && impl.hasFeature("Core","2.0")) in getParentOfNode()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceTargetLoweringARM32.h | 47 bool hasFeature(ARM32InstructionSet I) const { return I <= InstructionSet; } in hasFeature() function 173 return CPUFeatures.hasFeature(I); in hasCPUFeature()
|
D | IceTargetLoweringARM32.cpp | 7154 if (CPUFeatures.hasFeature(TargetARM32Features::HWDivArm)) { in lower() 7176 if (CPUFeatures.hasFeature(TargetARM32Features::HWDivArm)) { in lower()
|
/external/python/cpython2/Doc/library/ |
D | xml.dom.rst | 112 version)`` pairs which are passed to the :meth:`hasFeature` method on available 224 .. method:: DOMImplementation.hasFeature(feature, version)
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 8664 if (getTargetInfo().hasFeature("sse2")) in getDefaultCallingConvention()
|