Searched defs:canAccess (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/bindings/generic/
H A DBindingSecurityBase.cpp76 bool BindingSecurityBase::canAccess(DOMWindow* activeWindow, function in class:WebCore::BindingSecurityBase
97 if (activeSecurityOrigin->canAccess(targetSecurityOrigin))
/external/webkit/Source/WebKit/chromium/src/
H A DWebSecurityOrigin.cpp99 bool WebSecurityOrigin::canAccess(const WebSecurityOrigin& other) const function in class:WebKit::WebSecurityOrigin
103 return m_private->canAccess(other.m_private);
/external/webkit/Source/WebCore/page/
H A DSecurityOrigin.cpp201 bool SecurityOrigin::canAccess(const SecurityOrigin* other) const function in class:WebCore::SecurityOrigin
232 bool canAccess = false;
236 canAccess = true;
239 canAccess = true;
243 if (canAccess && isLocal())
244 canAccess = passesFileCheck(other);
246 return canAccess;
272 // We call isSameSchemeHostPort here instead of canAccess because we want
312 return canAccess(dragInitiator);
382 return canAccess(othe
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DClassPath.java980 if (!ClassPath.theClassPath.checkPackagePrivateAccess || this.canAccess(superMethod)) {
993 private boolean canAccess(VirtualMethod virtualMethod) { method in class:ClassPath.ClassDef

Completed in 152 milliseconds