Home
last modified time | relevance | path

Searched refs:hasFeature (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/remoting/webapp/
Dclient_plugin_async.js375 remoting.ClientPluginAsync.prototype.hasFeature = function(feature) { method in remoting.ClientPluginAsync
510 if (!this.hasFeature(remoting.ClientPlugin.Feature.SEND_CLIPBOARD_ITEM))
526 if (this.hasFeature(remoting.ClientPlugin.Feature.NOTIFY_CLIENT_RESOLUTION)) {
543 if (!this.hasFeature(remoting.ClientPlugin.Feature.PAUSE_VIDEO))
556 if (!this.hasFeature(remoting.ClientPlugin.Feature.PAUSE_AUDIO))
569 if (!this.hasFeature(remoting.ClientPlugin.Feature.ASYNC_PIN)) {
581 if (!this.hasFeature(remoting.ClientPlugin.Feature.ASYNC_PIN)) {
610 if (!this.hasFeature(remoting.ClientPlugin.Feature.PINLESS_AUTH)) {
626 if (!this.hasFeature(remoting.ClientPlugin.Feature.EXTENSION_MESSAGE)) {
Dhost_controller.js75 remoting.HostController.prototype.hasFeature = function(feature, callback) { method in remoting.HostController
78 this.hostDispatcher_.hasFeature(feature, callback);
277 hostName, privateKey, publicKey, hasFeature) { argument
278 if (hasFeature) {
294 that.hasFeature(
Dhost_dispatcher.js82 remoting.HostDispatcher.prototype.hasFeature = function( method in remoting.HostDispatcher
87 this.hasFeature.bind(this, feature, onDone));
90 onDone(this.nativeMessagingHost_.hasFeature(feature));
Dclient_plugin.js77 remoting.ClientPlugin.prototype.hasFeature = function(feature) {}; method in remoting.ClientPlugin
Dclient_session.js429 if (!this.plugin_.hasFeature(
439 if (this.plugin_.hasFeature(remoting.ClientPlugin.Feature.REMAP_KEY)) {
811 if (this.plugin_.hasFeature(remoting.ClientPlugin.Feature.THIRD_PARTY_AUTH)) {
823 } else if (this.plugin_.hasFeature(
Dhost_native_messaging.js156 remoting.HostNativeMessaging.prototype.hasFeature = function(feature) { method in remoting.HostNativeMessaging
Dremoting.js241 remoting.hostController.hasFeature(
/external/clang/lib/Basic/
DModule.cpp54 static bool hasFeature(StringRef Feature, const LangOptions &LangOpts, in hasFeature() function
65 .Default(Target.hasFeature(Feature)); in hasFeature()
76 if (!hasFeature(Current->Requires[I], LangOpts, Target)) { in isAvailable()
151 if (hasFeature(Feature, LangOpts, Target)) in addRequirement()
DTargets.cpp734 virtual bool hasFeature(StringRef Feature) const;
1036 bool PPCTargetInfo::hasFeature(StringRef Feature) const { in hasFeature() function in __anon5a1c6a310311::PPCTargetInfo
1277 virtual bool hasFeature(StringRef Feature) const { in hasFeature() function in __anon5a1c6a310811::NVPTXTargetInfo
1782 virtual bool hasFeature(StringRef Feature) const;
2633 bool X86TargetInfo::hasFeature(StringRef Feature) const { in hasFeature() function in __anon5a1c6a310a11::X86TargetInfo
3266 virtual bool hasFeature(StringRef Feature) const { in hasFeature() function in __anon5a1c6a311d11::AArch64TargetInfo
3615 virtual bool hasFeature(StringRef Feature) const { in hasFeature() function in __anon5a1c6a311e11::ARMTargetInfo
3956 virtual bool hasFeature(StringRef Feature) const { in hasFeature() function in __anon5a1c6a312011::HexagonTargetInfo
4111 virtual bool hasFeature(StringRef Feature) const { in hasFeature() function in __anon5a1c6a312111::SparcTargetInfo
4405 virtual bool hasFeature(StringRef Feature) const { in hasFeature() function in __anon5a1c6a312411::MSP430TargetInfo
[all …]
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDOMImplementation.h52 static bool hasFeature(const String& feature, const String& version);
DDOMImplementation.idl27 boolean hasFeature(DOMString feature, [TreatNullAs=NullString] DOMString version);
DDOMImplementation.cpp170 bool DOMImplementation::hasFeature(const String& feature, const String& version) in hasFeature() function in WebCore::DOMImplementation
DDocument.cpp1132 if (!implementation()->hasFeature("XML", String())) { in setXMLVersion()
1147 if (!implementation()->hasFeature("XML", String())) { in setXMLStandalone()
DNode.cpp118 return DOMImplementation::hasFeature(feature, version); in isSupported()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGTests.cpp106 if (value.isEmpty() || !DOMImplementation::hasFeature(value, String())) in isValid()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMNodeProxy.java265 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/
DDOM3TreeWalker.java251 && 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()
DLSSerializerImpl.java1383 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/include/clang/Basic/
DTargetInfo.h694 virtual bool hasFeature(StringRef Feature) const { in hasFeature() function
/external/apache-xml/src/main/java/org/apache/xml/utils/
DDOMHelper.java1036 if(impl!=null && impl.hasFeature("Core","2.0")) in getParentOfNode()