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

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptStreamerThread.cpp61 ScriptStreamingTask::ScriptStreamingTask(v8::ScriptCompiler::ScriptStreamingTask* task, ScriptStreamer* streamer) argument
62 : m_v8Task(adoptPtr(task)), m_streamer(streamer) { }
H A DScriptSourceCode.h65 ScriptSourceCode(PassRefPtr<ScriptStreamer> streamer, ScriptResource* resource) argument
68 , m_streamer(streamer)
89 ScriptStreamer* streamer() const { return m_streamer.get(); } function in class:blink::ScriptSourceCode
H A DScriptStreamer.cpp22 // For passing data between the main thread (producer) and the streamer thread
24 // the streamer thread feeds it to V8.
90 SourceStream(ScriptStreamer* streamer) argument
92 , m_streamer(streamer)
420 RefPtr<ScriptStreamer> streamer = adoptRef(new ScriptStreamer(resource, encoding, scriptType)); local
428 v8::ScriptCompiler::ScriptStreamingTask* scriptStreamingTask = v8::ScriptCompiler::StartStreamingScript(scriptState->isolate(), &(streamer->m_source), compileOption);
430 streamer->m_task = scriptStreamingTask;
431 script.setStreamer(streamer.release());
H A DV8ScriptRunner.cpp98 return compileScript(v8String(isolate, source.source()), source.url(), source.startPosition(), source.resource(), source.streamer(), isolate, corsStatus, cacheOptions);
101 v8::Local<v8::Script> V8ScriptRunner::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition& scriptStartPosition, ScriptResource* resource, ScriptStreamer* streamer, v8::Isolate* isolate, AccessControlStatus corsStatus, V8CacheOptions cacheOptions) argument
116 if (streamer) {
121 ASSERT(streamer->isFinished());
122 ASSERT(!streamer->streamingSuppressed());
123 script = v8::ScriptCompiler::Compile(isolate, streamer->source(), code, origin);
125 // streamer is started. Here we only need to get the data out.
126 const v8::ScriptCompiler::CachedData* newCachedData = streamer->source()->GetCachedData();
129 resource->setCachedMetadata(streamer->cachedDataType(), reinterpret_cast<const char*>(newCachedData->data), newCachedData->length);
/external/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp130 DataStreamer *streamer = getDataFileStreamer(InputFilename, &ErrorMessage); local
131 if (streamer) {
137 M.reset(getStreamedBitcodeModule(DisplayFilename, streamer, Context,
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPendingScript.h114 void setStreamer(PassRefPtr<ScriptStreamer> streamer) argument
118 m_streamer = streamer;
/external/llvm/lib/Support/
H A DStreamableMemoryObject.cpp135 StreamingMemoryObject::StreamingMemoryObject(DataStreamer *streamer) : argument
136 Bytes(kChunkSize), Streamer(streamer), BytesRead(0), BytesSkipped(0),
138 BytesRead = streamer->GetBytes(&Bytes[0], kChunkSize);
/external/llvm/lib/MC/
H A DMCWin64EH.cpp49 static void EmitAbsDifference(MCStreamer &streamer, MCSymbol *lhs, argument
51 MCContext &context = streamer.getContext();
57 streamer.EmitAbsValue(diff, 1);
61 static void EmitUnwindCode(MCStreamer &streamer, MCSymbol *begin, argument
68 EmitAbsDifference(streamer, inst.getLabel(), begin);
70 streamer.EmitIntValue(b2, 1);
73 EmitAbsDifference(streamer, inst.getLabel(), begin);
76 streamer.EmitIntValue(b2, 1);
78 streamer.EmitIntValue(w, 2);
81 streamer
127 EmitSymbolRefWithOfs(MCStreamer &streamer, const MCSymbol *Base, const MCSymbol *Other) argument
140 EmitRuntimeFunction(MCStreamer &streamer, const MCWin64EHUnwindInfo *info) argument
152 EmitUnwindInfo(MCStreamer &streamer, MCWin64EHUnwindInfo *info) argument
261 EmitUnwindInfo(MCStreamer &streamer, MCWin64EHUnwindInfo *info) argument
[all...]
H A DMCDwarf.cpp419 /// Utility function to emit the encoding to a streamer.
946 static int getDataAlignmentFactor(MCStreamer &streamer) { argument
947 MCContext &context = streamer.getContext();
956 static unsigned getSizeForEncoding(MCStreamer &streamer, argument
958 MCContext &context = streamer.getContext();
977 static void EmitFDESymbol(MCStreamer &streamer, const MCSymbol &symbol, argument
980 MCContext &context = streamer.getContext();
984 streamer);
985 unsigned size = getSizeForEncoding(streamer, symbolEncoding);
986 if (streamer
993 EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol, unsigned symbolEncoding) argument
1236 EmitCFIInstructions(MCObjectStreamer &streamer, ArrayRef<MCCFIInstruction> Instrs, MCSymbol *BaseLabel) argument
1331 EmitCIE(MCObjectStreamer &streamer, const MCSymbol *personality, unsigned personalityEncoding, const MCSymbol *lsda, bool IsSignalFrame, unsigned lsdaEncoding, bool IsSimple) argument
1453 EmitFDE(MCObjectStreamer &streamer, const MCSymbol &cieStart, const MCDwarfFrameInfo &frame) argument
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp3439 DataStreamer *streamer,
3443 BitcodeReader *R = new BitcodeReader(streamer, Context);
3438 getStreamedBitcodeModule(const std::string &name, DataStreamer *streamer, LLVMContext &Context, std::string *ErrMsg) argument

Completed in 719 milliseconds