uri                14 LayoutTests/http/tests/eventsource/resources/status-codes.php     $uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\') . "/simple-event-stream.asis";
uri                15 LayoutTests/http/tests/eventsource/resources/status-codes.php     header("Location: http://" . $_SERVER['HTTP_HOST'] . $uri);
uri                 4 LayoutTests/http/tests/navigation/resources/redirection-response.php $uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\') . "/" . $_GET['target'];
uri                13 LayoutTests/http/tests/navigation/resources/redirection-response.php         header("Location: http://" . $host . $uri);
uri                17 LayoutTests/http/tests/navigation/resources/redirection-response.php         header("Location: http://" . $host . $uri);
uri                21 LayoutTests/http/tests/navigation/resources/redirection-response.php         header("Location: http://" . $host . $uri);
uri                25 LayoutTests/http/tests/navigation/resources/redirection-response.php         header("Location: http://" . $host . $uri);
uri                46 Source/core/animation/AnimatableSVGPaint.cpp         ASSERT(uri().isNull());
uri                56 Source/core/animation/AnimatableSVGPaint.cpp         ASSERT(uri().isNull());
uri                67 Source/core/animation/AnimatableSVGPaint.cpp         && uri() == svgPaint->uri();
uri                43 Source/core/animation/AnimatableSVGPaint.h     static PassRefPtrWillBeRawPtr<AnimatableSVGPaint> create(SVGPaint::SVGPaintType type, const Color& color, const String& uri)
uri                45 Source/core/animation/AnimatableSVGPaint.h         return create(type, AnimatableColorImpl(color), uri);
uri                47 Source/core/animation/AnimatableSVGPaint.h     static PassRefPtrWillBeRawPtr<AnimatableSVGPaint> create(SVGPaint::SVGPaintType type, const AnimatableColorImpl& color, const String& uri)
uri                49 Source/core/animation/AnimatableSVGPaint.h         return adoptRefWillBeNoop(new AnimatableSVGPaint(type, color, uri));
uri                53 Source/core/animation/AnimatableSVGPaint.h     const String& uri() const { return m_uri; };
uri                63 Source/core/animation/AnimatableSVGPaint.h     AnimatableSVGPaint(SVGPaint::SVGPaintType type, const AnimatableColorImpl& color, const String& uri)
uri                66 Source/core/animation/AnimatableSVGPaint.h         , m_uri(uri)
uri               130 Source/core/animation/AnimatableValueTestHelper.cpp         *os << "url(" << animSVGPaint.uri().utf8().data() << ")";
uri               300 Source/core/css/StyleSheetContents.cpp void StyleSheetContents::parserAddNamespace(const AtomicString& prefix, const AtomicString& uri)
uri               302 Source/core/css/StyleSheetContents.cpp     if (uri.isNull() || prefix.isNull())
uri               304 Source/core/css/StyleSheetContents.cpp     PrefixNamespaceURIMap::AddResult result = m_namespaces.add(prefix, uri);
uri               307 Source/core/css/StyleSheetContents.cpp     result.storedValue->value = uri;
uri                99 Source/core/css/StyleSheetContents.h     void parserAddNamespace(const AtomicString& prefix, const AtomicString& uri);
uri              1900 Source/core/css/parser/BisonCSSParser-in.cpp void BisonCSSParser::addNamespace(const AtomicString& prefix, const AtomicString& uri)
uri              1905 Source/core/css/parser/BisonCSSParser-in.cpp     m_styleSheet->parserAddNamespace(prefix, uri);
uri              1906 Source/core/css/parser/BisonCSSParser-in.cpp     if (prefix.isEmpty() && !uri.isNull())
uri              1907 Source/core/css/parser/BisonCSSParser-in.cpp         m_defaultNamespace = uri;
uri               159 Source/core/css/parser/BisonCSSParser.h     void addNamespace(const AtomicString& prefix, const AtomicString& uri);
uri               637 Source/core/css/parser/CSSPropertyParser.cpp                 String uri = value->string;
uri               638 Source/core/css/parser/CSSPropertyParser.cpp                 if (!uri.isNull())
uri               639 Source/core/css/parser/CSSPropertyParser.cpp                     image = CSSImageValue::create(uri, completeURL(uri));
uri               354 Source/core/css/resolver/AnimatedStyleBuilder.cpp             style->accessSVGStyle()->setFillPaint(svgPaint->paintType(), svgPaint->color(), svgPaint->uri());
uri               485 Source/core/css/resolver/AnimatedStyleBuilder.cpp             style->accessSVGStyle()->setStrokePaint(svgPaint->paintType(), svgPaint->color(), svgPaint->uri());
uri              2198 Source/core/css/resolver/StyleBuilderCustom.cpp             svgStyle->setFillPaint(svgPaint->paintType(), colorFromSVGPaintCSSValue(svgPaint, state.style()->color()), svgPaint->uri(), state.applyPropertyToRegularStyle(), state.applyPropertyToVisitedLinkStyle());
uri              2216 Source/core/css/resolver/StyleBuilderCustom.cpp             svgStyle->setStrokePaint(svgPaint->paintType(), colorFromSVGPaintCSSValue(svgPaint, state.style()->color()), svgPaint->uri(), state.applyPropertyToRegularStyle(), state.applyPropertyToVisitedLinkStyle());
uri               153 Source/core/rendering/style/SVGRenderStyle.h     void setFillPaint(SVGPaint::SVGPaintType type, const Color& color, const String& uri, bool applyToRegularStyle = true, bool applyToVisitedLinkStyle = false)
uri               160 Source/core/rendering/style/SVGRenderStyle.h             if (!(fill->paintUri == uri))
uri               161 Source/core/rendering/style/SVGRenderStyle.h                 fill.access()->paintUri = uri;
uri               168 Source/core/rendering/style/SVGRenderStyle.h             if (!(fill->visitedLinkPaintUri == uri))
uri               169 Source/core/rendering/style/SVGRenderStyle.h                 fill.access()->visitedLinkPaintUri = uri;
uri               179 Source/core/rendering/style/SVGRenderStyle.h     void setStrokePaint(SVGPaint::SVGPaintType type, const Color& color, const String& uri, bool applyToRegularStyle = true, bool applyToVisitedLinkStyle = false)
uri               186 Source/core/rendering/style/SVGRenderStyle.h             if (!(stroke->paintUri == uri))
uri               187 Source/core/rendering/style/SVGRenderStyle.h                 stroke.access()->paintUri = uri;
uri               194 Source/core/rendering/style/SVGRenderStyle.h             if (!(stroke->visitedLinkPaintUri == uri))
uri               195 Source/core/rendering/style/SVGRenderStyle.h                 stroke.access()->visitedLinkPaintUri = uri;
uri                32 Source/core/svg/SVGPaint.cpp SVGPaint::SVGPaint(const SVGPaintType& paintType, const String& uri)
uri                35 Source/core/svg/SVGPaint.cpp     , m_uri(uri)
uri                72 Source/core/svg/SVGPaint.h     static PassRefPtrWillBeRawPtr<SVGPaint> createURI(const String& uri)
uri                74 Source/core/svg/SVGPaint.h         RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeRefCountedGarbageCollected(new SVGPaint(SVG_PAINTTYPE_URI, uri));
uri                78 Source/core/svg/SVGPaint.h     static PassRefPtrWillBeRawPtr<SVGPaint> createURIAndColor(const String& uri, const Color& color)
uri                80 Source/core/svg/SVGPaint.h         RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeRefCountedGarbageCollected(new SVGPaint(SVG_PAINTTYPE_URI_RGBCOLOR, uri));
uri                85 Source/core/svg/SVGPaint.h     static PassRefPtrWillBeRawPtr<SVGPaint> createURIAndNone(const String& uri)
uri                87 Source/core/svg/SVGPaint.h         RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeRefCountedGarbageCollected(new SVGPaint(SVG_PAINTTYPE_URI_NONE, uri));
uri                91 Source/core/svg/SVGPaint.h     static PassRefPtrWillBeRawPtr<SVGPaint> createURIAndCurrentColor(const String& uri)
uri                93 Source/core/svg/SVGPaint.h         RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeRefCountedGarbageCollected(new SVGPaint(SVG_PAINTTYPE_URI_CURRENTCOLOR, uri));
uri                98 Source/core/svg/SVGPaint.h     String uri() const { return m_uri; }
uri               116 Source/core/svg/SVGPaint.h     static PassRefPtrWillBeRawPtr<SVGPaint> create(const SVGPaintType& type, const String& uri, const Color& color)
uri               118 Source/core/svg/SVGPaint.h         RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeRefCountedGarbageCollected(new SVGPaint(type, uri));
uri               124 Source/core/svg/SVGPaint.h     SVGPaint(const SVGPaintType&, const String& uri = String());
uri                19 Source/core/svg/SVGRemoteFontFaceSource.cpp SVGRemoteFontFaceSource::SVGRemoteFontFaceSource(const String& uri, FontResource* font)
uri                21 Source/core/svg/SVGRemoteFontFaceSource.cpp     , m_uri(uri)
uri                18 Source/core/svg/SVGRemoteFontFaceSource.h     SVGRemoteFontFaceSource(const String& uri, FontResource*);
uri                42 Source/core/svg/SVGURIReference.h     static inline bool isExternalURIReference(const String& uri, const Document& document)
uri                45 Source/core/svg/SVGURIReference.h         if (uri.startsWith('#'))
uri                49 Source/core/svg/SVGURIReference.h         KURL url = document.completeURL(uri);
uri                84 Source/core/xml/XSLStyleSheet.h     xmlDocPtr locateStylesheetSubResource(xmlDocPtr parentDoc, const xmlChar* uri);
uri               262 Source/core/xml/XSLStyleSheetLibxslt.cpp xmlDocPtr XSLStyleSheet::locateStylesheetSubResource(xmlDocPtr parentDoc, const xmlChar* uri)
uri               281 Source/core/xml/XSLStyleSheetLibxslt.cpp             bool equalURIs = xmlStrEqual(uri, childURI);
uri               290 Source/core/xml/XSLStyleSheetLibxslt.cpp         xmlDocPtr result = import->styleSheet()->locateStylesheetSubResource(parentDoc, uri);
uri                88 Source/core/xml/XSLTProcessorLibxslt.cpp static xmlDocPtr docLoaderFunc(const xmlChar* uri,
uri               101 Source/core/xml/XSLTProcessorLibxslt.cpp         KURL url(KURL(ParsedURLString, reinterpret_cast<const char*>(base)), reinterpret_cast<const char*>(uri));
uri               121 Source/core/xml/XSLTProcessorLibxslt.cpp         xmlDocPtr doc = data ? xmlReadMemory(data->data(), data->size(), (const char*)uri, 0, options) : 0;
uri               129 Source/core/xml/XSLTProcessorLibxslt.cpp         return globalProcessor->xslStylesheet()->locateStylesheetSubResource(((xsltStylesheetPtr)ctxt)->doc, uri);
uri               119 Source/core/xml/parser/XMLDocumentParser.cpp     PendingStartElementNSCallback(const AtomicString& localName, const AtomicString& prefix, const AtomicString& uri,
uri               123 Source/core/xml/parser/XMLDocumentParser.cpp         , m_uri(uri)
uri               607 Source/core/xml/parser/XMLDocumentParser.cpp static void* openFunc(const char* uri)
uri               612 Source/core/xml/parser/XMLDocumentParser.cpp     KURL url(KURL(), uri);
uri               868 Source/core/xml/parser/XMLDocumentParser.cpp     const xmlChar* uri;
uri               877 Source/core/xml/parser/XMLDocumentParser.cpp         AtomicString namespaceURI = toAtomicString(namespaces[i].uri);
uri               892 Source/core/xml/parser/XMLDocumentParser.cpp     const xmlChar* uri;
uri               905 Source/core/xml/parser/XMLDocumentParser.cpp         AtomicString attrURI = attrPrefix.isEmpty() ? AtomicString() : toAtomicString(attributes[i].uri);
uri               916 Source/core/xml/parser/XMLDocumentParser.cpp void XMLDocumentParser::startElementNs(const AtomicString& localName, const AtomicString& prefix, const AtomicString& uri, int nbNamespaces,
uri               923 Source/core/xml/parser/XMLDocumentParser.cpp         m_pendingCallbacks.append(adoptPtr(new PendingStartElementNSCallback(localName, prefix, uri, nbNamespaces, libxmlNamespaces,
uri               930 Source/core/xml/parser/XMLDocumentParser.cpp     AtomicString adjustedURI = uri;
uri              1213 Source/core/xml/parser/XMLDocumentParser.cpp static void startElementNsHandler(void* closure, const xmlChar* localName, const xmlChar* prefix, const xmlChar* uri, int nbNamespaces, const xmlChar** namespaces, int nbAttributes, int nbDefaulted, const xmlChar** libxmlAttributes)
uri              1215 Source/core/xml/parser/XMLDocumentParser.cpp     getParser(closure)->startElementNs(toAtomicString(localName), toAtomicString(prefix), toAtomicString(uri), nbNamespaces, namespaces, nbAttributes, nbDefaulted, libxmlAttributes);
uri               130 Source/core/xml/parser/XMLDocumentParser.h         void startElementNs(const AtomicString& localName, const AtomicString& prefix, const AtomicString& uri, int nb_namespaces,
uri                62 Source/platform/exported/WebRTCConfiguration.cpp     return m_private->uri();
uri                44 Source/platform/mediastream/RTCConfiguration.h     static PassRefPtr<RTCIceServer> create(const KURL& uri, const String& username, const String& credential)
uri                46 Source/platform/mediastream/RTCConfiguration.h         return adoptRef(new RTCIceServer(uri, username, credential));
uri                49 Source/platform/mediastream/RTCConfiguration.h     const KURL& uri() { return m_uri; }
uri                54 Source/platform/mediastream/RTCConfiguration.h     RTCIceServer(const KURL& uri, const String& username, const String& credential)
uri                55 Source/platform/mediastream/RTCConfiguration.h         : m_uri(uri)
uri                65 public/platform/WebRTCConfiguration.h     BLINK_PLATFORM_EXPORT WebURL uri() const;