HomeSort by relevance Sort by last modified time
    Searched refs:source_ (Results 26 - 50 of 113) sorted by null

12 3 4 5

  /frameworks/base/tools/aapt2/io/
FileSystem.h 38 Source source_; member in class:aapt::io::RegularFile
ZipArchive.h 48 Source source_; member in class:aapt::io::ZipFile
ZipArchive.cpp 32 : zip_handle_(handle), zip_entry_(entry), source_(source) {}
60 const Source& ZipFile::GetSource() const { return source_; }
  /external/webrtc/webrtc/base/
macasyncsocket.h 33 bool valid() const { return source_ != NULL; }
86 CFRunLoopSourceRef source_; member in class:rtc::MacAsyncSocket
  /frameworks/base/tools/aapt2/link/
XmlReferenceLinker.cpp 76 : source_(source),
89 const Source source = source_.WithLine(el->line_number);
154 Source source_; member in class:aapt::__anon40937::XmlVisitor
  /external/v8/src/snapshot/
deserializer.h 35 source_(data->Payload()),
126 SnapshotByteSource source_; member in class:v8::internal::Deserializer
  /toolchain/binutils/binutils-2.25/gold/
symtab.h 150 { return this->source_; }
156 gold_assert(this->source_ == FROM_OBJECT);
165 gold_assert(this->source_ == FROM_OBJECT);
176 gold_assert(this->source_ == IN_OUTPUT_DATA);
185 gold_assert(this->source_ == IN_OUTPUT_DATA);
195 gold_assert(this->source_ == IN_OUTPUT_SEGMENT);
204 gold_assert(this->source_ == IN_OUTPUT_SEGMENT);
490 if (this->source_ != FROM_OBJECT)
491 return this->source_ != IS_UNDEFINED;
502 return this->source_ == FROM_OBJECT && this->object()->is_dynamic()
    [all...]
  /external/webrtc/talk/session/media/
currentspeakermonitor_unittest.cc 49 monitor_ = new CurrentSpeakerMonitor(&source_);
64 source_.SignalAudioMonitor(&source_, info);
68 AudioSourceContext source_; member in class:cricket::CurrentSpeakerMonitorTest
  /external/libchrome/base/message_loop/
message_pump_glib_unittest.cc 31 source_ = static_cast<Source*>(g_source_new(&SourceFuncs, sizeof(Source)));
32 source_->injector = this;
33 g_source_attach(source_, NULL);
34 g_source_set_can_recurse(source_, TRUE);
38 g_source_destroy(source_);
39 g_source_unref(source_);
129 Source* source_; member in class:base::__anon22758::EventInjector
  /frameworks/base/tools/aapt2/
ResourceParser.cpp 147 source_(source),
193 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
205 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
219 diag_->Warn(DiagMessage(source_.WithLine(parser->line_number()))
272 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
282 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
304 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
326 parsed_resource.source = source_.WithLine(parser->line_number());
349 diag_->Error(DiagMessage(source_) << "resource '" << stripped_resource
422 diag_->Error(DiagMessage(source_.WithLine(parser->line_number())
    [all...]
ResourceValues.cpp 60 rs->source_ = source_;
202 str->source_ = source_;
250 str->source_ = source_;
286 fr->source_ = source_;
723 style->source_ = source_;
    [all...]
ResourceValues.h 61 const Source& GetSource() const { return source_; }
63 void SetSource(const Source& source) { source_ = source; }
65 void SetSource(Source&& source) { source_ = std::move(source); }
89 Source source_; member in class:aapt::Value
  /external/v8/src/crankshaft/
lithium.h 273 : source_(source), destination_(destination) {
276 LOperand* source() const { return source_; }
277 void set_source(LOperand* operand) { source_ = operand; }
285 return destination_ == NULL && source_ != NULL;
296 return IsEliminated() || source_->Equals(destination_) || IsIgnored() ||
305 void Eliminate() { source_ = destination_ = NULL; }
307 DCHECK(source_ != NULL || destination_ == NULL);
308 return source_ == NULL;
312 LOperand* source_; member in class:v8::internal::BASE_EMBEDDED
  /frameworks/base/tools/aapt2/proto/
TableProtoDeserializer.cpp 60 : source_pool_(sourcePool), source_(source), diag_(diag) {
76 diag_->Error(DiagMessage(source_) << "unknown type '" << pb_type.name() << "'");
132 diag_->Error(DiagMessage(source_) << "invalid configuration");
139 diag_->Error(DiagMessage(source_) << "duplicate configuration");
198 diag_->Error(DiagMessage(source_) << "unknown item");
305 diag_->Error(DiagMessage(source_) << "unknown compound value");
309 diag_->Error(DiagMessage(source_) << "unknown value");
331 diag_->Error(DiagMessage(source_) << "invalid reference name '" << pb_ref.name() << "'");
355 const Source source_; member in class:aapt::__anon40939::PackagePbDeserializer
  /cts/tests/tests/media/libndkaudio/
AudioPlayer.cpp 104 source_ = NULL;
131 source_ = source;
273 //long dataSizeInSamples = source_->getData(time_++, playBuff_,
275 // source_->getNumChannels());
  /external/v8/src/parsing/
scanner.h 469 // Call this after setting source_ to the input.
565 c0_ = source_->Advance();
571 uc32 c1 = source_->Advance();
573 source_->Back();
582 source_->Back2();
584 source_->Back();
594 source_->Back2();
715 return static_cast<int>(source_->pos()) - kCharacterLookaheadBufferSize;
754 Utf16CharacterStream* source_; member in class:v8::internal::Scanner
scanner-character-streams.cc 532 : source_(source), stats_(stats) {}
540 ScriptCompiler::ExternalSourceStream* source_;
545 const Chunk& chunk = chunks_[FindChunk(chunks_, source_, position, stats_)];
573 ScriptCompiler::ExternalSourceStream* source_;
582 source_(source),
595 size_t chunk_no = FindChunk(chunks_, source_, 2 * position + 1, stats_);
680 ScriptCompiler::ExternalSourceStream* source_;
687 source_(source),
697 size_t chunk_no = FindChunk(chunks_, source_, 2 * position + 1, stats_);
743 chunk_no = FindChunk(chunks_, source_, 2 * new_pos + 1, stats_)
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
packet_sender.h 76 virtual VideoSource* source() const { return source_; }
93 VideoSource* source_; member in class:webrtc::testing::bwe::VideoSender
  /external/v8/src/compiler-dispatcher/
compiler-dispatcher-job.h 113 Handle<String> source_; // Global handle. member in class:v8::internal::CompilerDispatcherJob
compiler-dispatcher-job.cc 161 source_ =
276 if (!source_.is_null()) {
277 i::GlobalHandles::Destroy(Handle<Object>::cast(source_).location());
278 source_ = Handle<String>::null();
430 if (!source_.is_null()) {
431 i::GlobalHandles::Destroy(Handle<Object>::cast(source_).location());
432 source_ = Handle<String>::null();
  /frameworks/base/tools/aapt2/java/
ProguardRules.cpp 34 BaseVisitor(const Source& source, KeepSet* keep_set) : source_(source), keep_set_(keep_set) {
59 keep_set_->AddClass(Source(source_.path, line_number), class_name);
63 keep_set_->AddMethod(Source(source_.path, line_number), method_name);
69 Source source_; member in class:aapt::proguard::BaseVisitor
  /frameworks/base/tools/aapt2/unflatten/
BinaryResourceParser.h 100 const Source source_; member in class:aapt::BinaryResourceParser
  /frameworks/native/libs/vr/libvrflinger/
hardware_composer.h 121 bool IsLayerSetup() const { return !source_.empty(); }
126 &source_, [&surface_id](const SourceSurface& surface_source) {
135 &source_, [&buffer_id](const SourceSurface& surface_source) {
274 pdx::rpc::Variant<SourceSurface, SourceBuffer> source_; member in class:android::dvr::Layer
  /external/v8/src/
json-parser.cc 103 : source_(source),
111 source_ = String::Flatten(source_);
116 seq_source_ = Handle<SeqOneByteString>::cast(source_);
162 Handle<Script> script(factory->NewScript(source_));
184 c0_ = source_->Get(position_);
220 if (source_->length() - position_ - 1 > length) {
571 String::WriteToFlat(*source_, buffer.start(), beg_pos, position_);
636 // If the sink can contain UC16 characters, or source_ contains only
731 return SlowScanJsonString<SeqOneByteString, uint8_t>(source_, beg_pos
    [all...]
  /frameworks/base/tools/aapt2/test/
Common.h 87 explicit TestFile(const android::StringPiece& path) : source_(path) {}
94 return source_;
100 Source source_; member in class:aapt::test::TestFile

Completed in 271 milliseconds

12 3 4 5