HomeSort by relevance Sort by last modified time
    Searched defs:source_ (Results 76 - 83 of 83) sorted by null

1 2 34

  /external/chromium_org/v8/src/
scanner.h 482 // Call this after setting source_ to the input.
521 void Advance() { c0_ = source_->Advance(); }
523 source_->PushBack(c0_);
617 return source_->pos() - kCharacterLookaheadBufferSize;
634 Utf16CharacterStream* source_; member in class:v8::internal::Scanner
lithium.h 261 : source_(source), destination_(destination) {
264 LOperand* source() const { return source_; }
265 void set_source(LOperand* operand) { source_ = operand; }
273 return destination_ == NULL && source_ != NULL;
284 return IsEliminated() || source_->Equals(destination_) || IsIgnored() ||
293 void Eliminate() { source_ = destination_ = NULL; }
295 DCHECK(source_ != NULL || destination_ == NULL);
296 return source_ == NULL;
300 LOperand* source_; member in class:v8::internal::BASE_EMBEDDED
serialize.h 302 int offset = source_->GetInt();
313 SnapshotByteSource* source_; member in class:v8::internal::Deserializer
578 : Serializer(isolate, sink), source_(source) {
599 return source_;
616 String* source_; member in class:v8::internal::CodeSerializer
objects.cc 13603 Handle<String> source_; member in class:v8::StringSharedKey
    [all...]
  /external/chromium_org/chrome/browser/themes/
browser_theme_pack.cc 494 explicit ThemeImageSource(const gfx::ImageSkia& source) : source_(source) {
499 if (source_.HasRepresentation(scale))
500 return source_.GetRepresentation(scale);
501 const gfx::ImageSkiaRep& rep_100p = source_.GetRepresentation(1.0f);
510 const gfx::ImageSkia source_; member in class:__anon9533::ThemeImageSource
    [all...]
  /external/chromium_org/v8/src/compiler/
instruction.h 273 : source_(source), destination_(destination) {}
275 InstructionOperand* source() const { return source_; }
276 void set_source(InstructionOperand* operand) { source_ = operand; }
283 bool IsPending() const { return destination_ == NULL && source_ != NULL; }
293 return IsEliminated() || source_->Equals(destination_) || IsIgnored() ||
302 void Eliminate() { source_ = destination_ = NULL; }
304 DCHECK(source_ != NULL || destination_ == NULL);
305 return source_ == NULL;
309 InstructionOperand* source_; member in class:v8::internal::compiler::FINAL
  /art/compiler/optimizing/
nodes.h 1521 Location source_; member in class:art::MoveOperands
    [all...]
  /external/chromium_org/v8/include/
v8.h 4023 ExternalOneByteStringResourceImpl source_; member in class:v8::Extension
    [all...]

Completed in 280 milliseconds

1 2 34