HomeSort by relevance Sort by last modified time
    Searched refs:ScriptResource (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ScriptResource.h 36 class ScriptResource : public Resource {
40 ScriptResource(const ResourceRequest&, const String& charset);
41 virtual ~ScriptResource();
ScriptResource.cpp 28 #include "core/fetch/ScriptResource.h"
37 ScriptResource::ScriptResource(const ResourceRequest& resourceRequest, const String& charset)
49 ScriptResource::~ScriptResource()
53 void ScriptResource::setEncoding(const String& chs)
58 String ScriptResource::encoding() const
63 AtomicString ScriptResource::mimeType() const
68 const String& ScriptResource::script()
87 bool ScriptResource::mimeTypeAllowedByNosniff() cons
    [all...]
ResourceFetcher.h 51 class ScriptResource;
92 ResourcePtr<ScriptResource> fetchScript(FetchRequest&);
ResourceFetcher.cpp 42 #include "core/fetch/ScriptResource.h"
82 return new ScriptResource(request, charset);
347 ResourcePtr<ScriptResource> ResourceFetcher::fetchScript(FetchRequest& request)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PendingScript.h 31 #include "core/fetch/ScriptResource.h"
39 class ScriptResource;
46 class PendingScript : public ResourceOwner<ScriptResource> {
54 PendingScript(Element* element, ScriptResource* resource)
80 this->ResourceOwner<ScriptResource, ResourceClient>::operator=(other);
95 void setScriptResource(ScriptResource*);
PendingScript.cpp 30 #include "core/fetch/ScriptResource.h"
46 void PendingScript::setScriptResource(ScriptResource* resource)
ScriptLoader.h 31 class ScriptResource;
51 void execute(ScriptResource*);
68 ResourcePtr<ScriptResource> resource() { return m_resource; }
97 ResourcePtr<ScriptResource> m_resource;
ScriptRunner.h 38 class ScriptResource;
50 void queueScriptForExecution(ScriptLoader*, ResourcePtr<ScriptResource>, ExecutionType);
ScriptRunner.cpp 33 #include "core/fetch/ScriptResource.h"
54 void ScriptRunner::queueScriptForExecution(ScriptLoader* scriptLoader, ResourcePtr<ScriptResource> resource, ExecutionType executionType)
134 ScriptResource* resource = scripts[i].resource();
ScriptLoader.cpp 40 #include "core/fetch/ScriptResource.h"
353 void ScriptLoader::execute(ScriptResource* resource)
Document.h 144 class ScriptResource;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptSourceCode.h 35 #include "core/fetch/ScriptResource.h"
57 // We lose the encoding information from ScriptResource.
59 ScriptSourceCode(ScriptResource* cs)
69 ScriptResource* resource() const { return m_resource.get(); }
84 ResourcePtr<ScriptResource> m_resource;
V8ScriptRunner.h 37 class ScriptResource;
44 static PassOwnPtr<v8::ScriptData> precompileScript(v8::Handle<v8::String>, ScriptResource*);
V8ScriptRunner.cpp 34 #include "core/fetch/ScriptResource.h"
39 PassOwnPtr<v8::ScriptData> V8ScriptRunner::precompileScript(v8::Handle<v8::String> code, ScriptResource* resource)
44 // the ScriptResource. If the format changes, this ID should be changed too.
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunner.h 37 class ScriptResource;
HTMLScriptRunner.cpp 35 #include "core/fetch/ScriptResource.h"
262 ScriptResource* resource = toScriptLoaderIfPossible(script)->resource().get();
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.h 43 class ScriptResource;
182 ResourcePtr<ScriptResource> m_pendingScript;
  /external/v8/test/cctest/
test-parsing.cc 161 class ScriptResource : public v8::String::ExternalAsciiStringResource {
163 ScriptResource(const char* data, size_t length)
206 ScriptResource* resource = new ScriptResource(source, source_length);
214 ScriptResource* resource = new ScriptResource(source, source_length);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.h 72 ScriptResource,
InspectorResourceAgent.cpp 357 if (m_resourcesData->resourceType(requestId) == InspectorPageAgent::ScriptResource)
358 type = InspectorPageAgent::ScriptResource;
425 m_resourcesData->setResourceType(IdentifiersFactory::requestId(identifier), InspectorPageAgent::ScriptResource);
InspectorPageAgent.cpp 49 #include "core/fetch/ScriptResource.h"
162 return type == InspectorPageAgent::DocumentResource || type == InspectorPageAgent::StylesheetResource || type == InspectorPageAgent::ScriptResource || type == InspectorPageAgent::XHRResource;
279 case ScriptResource:
303 return InspectorPageAgent::ScriptResource;
    [all...]
  /external/chromium_org/v8/test/cctest/
test-parsing.cc 162 class ScriptResource : public v8::String::ExternalAsciiStringResource {
164 ScriptResource(const char* data, size_t length)
208 ScriptResource* resource = new ScriptResource(source, source_length);
217 ScriptResource* resource = new ScriptResource(source, source_length);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 292 third_party/WebKit/Source/core/fetch/ScriptResource.cpp \
    [all...]
webcore_remaining.target.darwin-mips.mk 292 third_party/WebKit/Source/core/fetch/ScriptResource.cpp \
    [all...]
webcore_remaining.target.darwin-x86.mk 292 third_party/WebKit/Source/core/fetch/ScriptResource.cpp \
    [all...]

Completed in 114 milliseconds

1 2