HomeSort by relevance Sort by last modified time
    Searched refs:uriRef (Results 1 - 9 of 9) sorted by null

  /external/libxslt/libxslt/
imports.c 91 xmlChar *uriRef = NULL;
99 uriRef = xmlGetNsProp(cur, (const xmlChar *)"href", NULL);
100 if (uriRef == NULL) {
107 URI = xmlBuildURI(uriRef, base);
110 "xsl:import : invalid URI reference %s\n", uriRef);
163 if (uriRef != NULL)
164 xmlFree(uriRef);
188 xmlChar *uriRef = NULL;
198 uriRef = xmlGetNsProp(cur, (const xmlChar *)"href", NULL);
199 if (uriRef == NULL)
    [all...]
  /external/webkit/Source/WebCore/xml/
XSLStyleSheetLibxslt.cpp 214 xmlChar* uriRef = xsltGetNsProp(curr, (const xmlChar*)"href", XSLT_NAMESPACE);
215 loadChildSheet(String::fromUTF8((const char*)uriRef));
216 xmlFree(uriRef);
225 xmlChar* uriRef = xsltGetNsProp(curr, (const xmlChar*)"href", XSLT_NAMESPACE);
226 loadChildSheet(String::fromUTF8((const char*)uriRef));
227 xmlFree(uriRef);
  /external/collada/include/dae/
daeURI.h 419 DLLSPEC bool parseUriRef(const std::string& uriRef,
449 DLLSPEC std::string fixUriForLibxml(const std::string& uriRef);
486 DLLSPEC std::string uriToNativePath(const std::string& uriRef,
490 DLLSPEC std::string uriToFilePath(const std::string& uriRef); // Alias for uriToNativePath
  /system/media/wilhelm/src/android/
android_LocAVPlayer.cpp 53 } else if (mPlayer->setDataSource(mDataLocator.uriRef, NULL /*headers*/) != NO_ERROR) {
android_defs.h 205 const char* uriRef;
android_AudioSfDecoder.cpp 192 dataSource = DataSource::CreateFromURI(mDataLocator.uriRef);
194 SL_LOGE("AudioSfDecoder::onPrepare(): Error opening %s", mDataLocator.uriRef);
android_GenericMediaPlayer.cpp 498 isLocalSource = !isDistantProtocol(mDataLocator.uriRef);
android_GenericPlayer.cpp 92 mDataLocator.uriRef = uri;
  /external/collada/src/dae/
daeURI.cpp 699 bool cdom::parseUriRef(const string& uriRef,
709 if (re.FullMatch(uriRef, &s1, &scheme, &s3, &authority, &path, &s6, &query, &s8, &fragment))
770 string cdom::fixUriForLibxml(const string& uriRef) {
772 cdom::parseUriRef(uriRef, scheme, authority, path, query, fragment);
798 string cdom::uriToNativePath(const string& uriRef, systemType type) {
800 parseUriRef(uriRef, scheme, authority, path, query, fragment);
834 string cdom::uriToFilePath(const string& uriRef) {
835 return uriToNativePath(uriRef);

Completed in 535 milliseconds