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

/external/webkit/Source/WebCore/fileapi/
H A DDOMFilePath.cpp78 bool DOMFilePath::isParentOf(const String& parent, const String& mayBeChild) argument
81 ASSERT(DOMFilePath::isAbsolute(mayBeChild));
82 if (parent == DOMFilePath::root && mayBeChild != DOMFilePath::root)
84 if (parent.length() >= mayBeChild.length() || !mayBeChild.startsWith(parent, false))
86 if (mayBeChild[parent.length()] != DOMFilePath::separator)

Completed in 55 milliseconds