Home
last modified time | relevance | path

Searched refs:source_ (Results 1 – 25 of 44) sorted by relevance

12

/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/
Drcssmin.c181 const rchar **source_, rchar **target_, rcssmin_ctx_t *ctx) in copy_match() argument
183 const rchar *source = *source_; in copy_match()
192 *source_ = source; in copy_match()
213 const rchar **source_, rchar **target_, rcssmin_ctx_t *ctx) in copy_imatch() argument
215 const rchar *source = *source_, *pstart = pattern; in copy_imatch()
227 *source_ = source; in copy_imatch()
276 *source_ = source; \
292 copy_escape(const rchar **source_, rchar **target_, rcssmin_ctx_t *ctx) in copy_escape() argument
294 const rchar *source = *source_, *hsentinel; in copy_escape()
337 *source_ = source; in copy_escape()
[all …]
/external/v8/src/
Dbackground-parsing-task.cc14 : source_(source), stack_size_(stack_size) { in BackgroundParsingTask()
33 info->set_unicode_cache(&source_->unicode_cache); in BackgroundParsingTask()
46 ScriptCompiler::CompileOptions options = source_->info->compile_options(); in Run()
49 source_->info->set_cached_data(&script_data); in Run()
55 source_->info->set_stack_limit(stack_limit); in Run()
58 source_->parser.Reset(new Parser(source_->info.get())); in Run()
59 source_->parser->ParseOnBackground(source_->info.get()); in Run()
62 source_->cached_data.Reset(new ScriptCompiler::CachedData( in Run()
Djson-parser.cc103 : source_(source), in JsonParser()
111 source_ = String::Flatten(source_); in JsonParser()
116 seq_source_ = Handle<SeqOneByteString>::cast(source_); in JsonParser()
162 Handle<Script> script(factory->NewScript(source_)); in ParseJson()
184 c0_ = source_->Get(position_); in Advance()
220 if (source_->length() - position_ - 1 > length) { in ParseJsonString()
570 String::WriteToFlat(*source_, buffer.start(), beg_pos, position_); in ParseJsonNumber()
730 return SlowScanJsonString<SeqOneByteString, uint8_t>(source_, beg_pos, in ScanJsonString()
787 return SlowScanJsonString<SeqTwoByteString, uc16>(source_, beg_pos, in ScanJsonString()
791 return SlowScanJsonString<SeqOneByteString, uint8_t>(source_, beg_pos, in ScanJsonString()
[all …]
/external/webrtc/talk/app/webrtc/
Dvideosource_unittest.cc115 source_(source) { in StateObserver()
118 state_ = source_->state(); in OnChanged()
124 rtc::scoped_refptr<VideoSourceInterface> source_; member in StateObserver
147 source_ = in CreateVideoSource()
151 ASSERT_TRUE(source_.get() != NULL); in CreateVideoSource()
152 EXPECT_EQ(capturer_, source_->GetVideoCapturer()); in CreateVideoSource()
154 state_observer_.reset(new StateObserver(source_)); in CreateVideoSource()
155 source_->RegisterObserver(state_observer_.get()); in CreateVideoSource()
156 source_->AddSink(&renderer_); in CreateVideoSource()
164 rtc::scoped_refptr<VideoSource> source_; member in VideoSourceTest
[all …]
Dremoteaudiosource.cc43 explicit MessageHandler(RemoteAudioSource* source) : source_(source) {} in MessageHandler()
49 source_->OnMessage(msg); in OnMessage()
53 const rtc::scoped_refptr<RemoteAudioSource> source_; member in webrtc::RemoteAudioSource::MessageHandler
59 explicit Sink(RemoteAudioSource* source) : source_(source) {} in Sink()
60 ~Sink() override { source_->OnAudioProviderGone(); } in ~Sink()
64 if (source_) in OnData()
65 source_->OnData(audio); in OnData()
68 const rtc::scoped_refptr<RemoteAudioSource> source_; member in webrtc::RemoteAudioSource::Sink
/external/libchrome/base/containers/
Dstack_container.h78 : std::allocator<T>(), source_(rhs.source_) { in StackAllocator()
92 : source_(NULL) { in StackAllocator()
99 StackAllocator() : source_(NULL) { in StackAllocator()
102 explicit StackAllocator(Source* source) : source_(source) { in StackAllocator()
109 if (source_ != NULL && !source_->used_stack_buffer_
111 source_->used_stack_buffer_ = true;
112 return source_->stack_buffer();
121 if (source_ != NULL && p == source_->stack_buffer()) in deallocate()
122 source_->used_stack_buffer_ = false; in deallocate()
128 Source* source_;
/external/deqp/framework/opengl/
DgluShaderProgram.hpp266 …derType shaderType_, const std::string& source_) : shaderType(shaderType_), source(source_) { DE_A… in ShaderSource()
271 VertexSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_VERTEX, source_) {} in VertexSource()
276 FragmentSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_FRAGMENT, source_) {} in FragmentSource()
281 GeometrySource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_GEOMETRY, source_) {} in GeometrySource()
286 ComputeSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_COMPUTE, source_) {} in ComputeSource()
291 …ellationControlSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_TESSELLATION_CON… in TessellationControlSource()
296 …ionEvaluationSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_TESSELLATION_EVALU… in TessellationEvaluationSource()
/external/v8/src/snapshot/
Ddeserializer.cc174 CHECK_EQ(expected, source_.Get()); in Synchronize()
178 for (int code = source_.Get(); code != kSynchronize; code = source_.Get()) { in DeserializeDeferredObjects()
190 int size = source_.GetInt() << kPointerSizeLog2; in DeserializeDeferredObjects()
310 SerializerReference::FromBitfield(source_.GetInt()); in GetBackReferencedObject()
344 int size = source_.GetInt() << kObjectAlignmentBits; in ReadObject()
400 Executability exec = static_cast<Executability>(source_.Get()); in Allocate()
441 byte data = source_.Get(); in ReadData()
468 int skip = source_.GetInt(); \ in ReadData()
474 int id = source_.GetInt(); \ in ReadData()
480 int cache_index = source_.GetInt(); \ in ReadData()
[all …]
Dcode-serializer.h25 return source_; in source()
32 : Serializer(isolate), source_(source) { in CodeSerializer()
49 String* source_; variable
Ddeserializer.h35 source_(data->Payload()), in Deserializer()
122 SnapshotByteSource source_; variable
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dpacket_sender.cc75 source_(source), in VideoSender()
77 source_->bits_per_second() / 1000, in VideoSender()
93 source_->SetBitrateBps(previous_sending_bitrate_); in Resume()
99 in_out, clock_.TimeInMilliseconds() + time_ms, source_->flow_id()); in RunFor()
118 source_->SetBitrateBps(0); in ProcessFeedbackAndGeneratePackets()
122 source_->RunFor(time_to_run_ms, &generated); in ProcessFeedbackAndGeneratePackets()
148 source_->SetBitrateBps(target_bitrate_bps); in OnNetworkChanged()
153 return (source_->bits_per_second() + 500) / 1000; in TargetBitrateKbps()
180 GetFeedbackPackets(in_out, end_time_ms, source_->flow_id()); in RunFor()
183 BWE_TEST_LOGGING_CONTEXT(source_->flow_id()); in RunFor()
[all …]
Dpacket_sender.h76 virtual VideoSource* source() const { return source_; } in source()
93 VideoSource* source_; variable
/external/webrtc/webrtc/base/
Dmacasyncsocket.cc36 source_(NULL), in MacAsyncSocket()
255 if (source_ != NULL) { in Close()
256 CFRunLoopSourceInvalidate(source_); in Close()
257 CFRelease(source_); in Close()
259 source_ = NULL; in Close()
325 source_(NULL), in MacAsyncSocket()
371 source_ = CFSocketCreateRunLoopSource(kCFAllocatorDefault, socket_, 1); in Initialize()
372 res = (source_ != NULL); in Initialize()
378 CFRunLoopAddSource(CFRunLoopGetCurrent(), source_, kCFRunLoopCommonModes); in Initialize()
Dmacasyncsocket.h33 bool valid() const { return source_ != NULL; } in valid()
86 CFRunLoopSourceRef source_; variable
/external/openfst/src/include/fst/script/
Dcompile-impl.h59 : nline_(0), source_(source),
75 << source_
148 << ", source = " << source_ << ", line = " << nline_;
156 << "\", source = " << source_ << ", line = " << nline_;
193 << "\", source = " << source_ << ", line = " << nline_; in StrToWeight()
202 string source_; // text FST source name variable
/external/libchrome/base/message_loop/
Dmessage_pump_glib_unittest.cc31 source_ = static_cast<Source*>(g_source_new(&SourceFuncs, sizeof(Source))); in EventInjector()
32 source_->injector = this; in EventInjector()
33 g_source_attach(source_, NULL); in EventInjector()
34 g_source_set_can_recurse(source_, TRUE); in EventInjector()
38 g_source_destroy(source_); in ~EventInjector()
39 g_source_unref(source_); in ~EventInjector()
129 Source* source_; member in base::__anonb84f6a230111::EventInjector
/external/deqp/external/vulkancts/framework/vulkan/
DvkSpirVProgram.hpp41 SpirVAsmSource (const std::string& source_) in SpirVAsmSource()
42 : source(source_) in SpirVAsmSource()
/external/ImageMagick/Magick++/lib/
DFunctions.cpp24 const std::string &source_) in CloneString() argument
26 MagickCore::CloneString(destination_,source_.c_str()); in CloneString()
/external/webrtc/talk/session/media/
Dcurrentspeakermonitor_unittest.cc49 monitor_ = new CurrentSpeakerMonitor(&source_); in CurrentSpeakerMonitorTest()
64 source_.SignalAudioMonitor(&source_, info); in SignalAudioMonitor()
68 AudioSourceContext source_; member in cricket::CurrentSpeakerMonitorTest
/external/v8/test/cctest/interpreter/
Dinterpreter-tester.h84 const char* source_; variable
91 if (source_) { in GetBytecodeFunction()
92 CompileRun(source_); in GetBytecodeFunction()
/external/v8/src/parsing/
Dscanner.h603 c0_ = source_->Advance(); in Advance()
609 uc32 c1 = source_->Advance(); in HandleLeadSurrogate()
611 source_->PushBack(c1); in HandleLeadSurrogate()
620 source_->PushBack(unibrow::Utf16::TrailSurrogate(c0_)); in PushBack()
621 source_->PushBack(unibrow::Utf16::LeadSurrogate(c0_)); in PushBack()
623 source_->PushBack(c0_); in PushBack()
736 return static_cast<int>(source_->pos()) - kCharacterLookaheadBufferSize; in source_pos()
801 Utf16CharacterStream* source_; variable
/external/v8/src/crankshaft/
Dlithium.h273 : source_(source), destination_(destination) { in LMoveOperands()
276 LOperand* source() const { return source_; } in source()
277 void set_source(LOperand* operand) { source_ = operand; } in set_source()
285 return destination_ == NULL && source_ != NULL; in IsPending()
296 return IsEliminated() || source_->Equals(destination_) || IsIgnored() || in IsRedundant()
305 void Eliminate() { source_ = destination_ = NULL; } in Eliminate()
307 DCHECK(source_ != NULL || destination_ == NULL); in IsEliminated()
308 return source_ == NULL; in IsEliminated()
312 LOperand* source_;
/external/libweave/src/
Dstreams.cc41 : source_{source}, destination_{destination}, buffer_(4096) {} in StreamCopier()
44 source_->Read(buffer_.data(), buffer_.size(), in Copy()
/external/openfst/src/include/fst/extensions/far/
Dcompile-strings.h58 : nline_(0), strm_(istrm), source_(source), entry_type_(entry_type),
69 VLOG(1) << "Processing source " << source_ << " at line " << nline_; in Next()
125 string source_; variable
/external/ImageMagick/Magick++/lib/Magick++/
DFunctions.h20 const std::string &source_);

12