Searched refs:instructions_ (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_instructions_view.cc30 instructions_(NULL),
34 instructions_ = new views::Label(
36 instructions_->SetAutoColorReadabilityEnabled(false);
37 AddChildView(instructions_);
102 instructions_->GetAccessibleState(state);
126 instructions_->SetEnabledColor(text_color);
H A Dbookmark_bar_instructions_view.h53 views::Label* instructions_; member in class:BookmarkBarInstructionsView
H A Dbookmark_bar_view.cc478 instructions_(NULL),
1388 instructions_ = new BookmarkBarInstructionsView(this);
1389 AddChildView(instructions_);
1922 gfx::Size pref = instructions_->GetPreferredSize();
1923 instructions_->SetBounds(
1928 instructions_->SetVisible(true);
1930 instructions_->SetVisible(false);
H A Dbookmark_bar_view.h431 views::View* instructions_; member in class:BookmarkBarView
/external/chromium_org/v8/src/
H A Dlithium-codegen.cc53 instructions_(chunk->instructions()),
63 !is_aborted() && current_instruction_ < instructions_->length();
65 LInstruction* instr = instructions_->at(current_instruction_);
111 for (int i = 0; i < instructions_->length(); i++) {
112 LInstruction* instr = instructions_->at(i);
H A Dlithium-codegen.h71 const ZoneList<LInstruction*>* instructions_; member in class:v8::internal::BASE_EMBEDDED
H A Dlithium.cc271 instructions_(32, info->zone()),
281 return LLabel::cast(instructions_[first_instruction]);
340 instructions_.Add(gap, zone());
341 index = instructions_.length();
342 instructions_.Add(instr, zone());
344 index = instructions_.length();
345 instructions_.Add(instr, zone());
346 instructions_.Add(gap, zone());
381 return LGap::cast(instructions_[index]);
386 return instructions_[inde
[all...]
H A Dlithium.h634 const ZoneList<LInstruction*>* instructions() const { return &instructions_; }
691 ZoneList<LInstruction*> instructions_; member in class:v8::internal::LChunk
/external/chromium_org/courgette/
H A Dassembly_program.h118 return instructions_;
156 InstructionVector instructions_; // All the instructions in program. member in class:courgette::AssemblyProgram
H A Dassembly_program.cc148 for (size_t i = 0; i < instructions_.size(); ++i) {
149 Instruction* instruction = instructions_[i];
243 bool ok = instructions_.push_back(instruction);
405 for (size_t i = 0; i < instructions_.size(); ++i) {
406 Instruction* instruction = instructions_[i];
522 for (size_t i = 0; i < instructions_.size(); ++i) {
523 Instruction* instruction = instructions_[i];
538 instructions_[i] = new_instruction;
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dcodegen.h142 Instructions instructions_; member in class:sandbox::CodeGen
H A Dcodegen.cc47 for (Instructions::iterator iter = instructions_.begin();
48 iter != instructions_.end();
165 instructions_.push_back(insn);
170 instructions_.push_back(insn);
188 instructions_.push_back(insn);
/external/chromium_org/v8/src/compiler/
H A Dinstruction-selector-unittest.h119 size_t size() const { return instructions_.size(); }
122 return instructions_[index];
190 std::deque<Instruction*> instructions_; member in class:v8::internal::compiler::InstructionSelectorTest::FINAL
H A Dinstruction.cc326 block->code_start_ = static_cast<int>(instructions_.size());
334 int end = static_cast<int>(instructions_.size());
343 if (instr->IsControl()) instructions_.push_back(gap);
344 int index = static_cast<int>(instructions_.size());
345 instructions_.push_back(instr);
346 if (!instr->IsControl()) instructions_.push_back(gap);
H A Dinstruction-selector.cc24 instructions_(zone()),
62 sequence()->AddInstruction(instructions_[start], block);
138 instructions_.push_back(instr);
363 int current_block_end = static_cast<int>(instructions_.size());
368 std::reverse(instructions_.begin() + current_block_end, instructions_.end());
379 size_t current_node_end = instructions_.size();
381 std::reverse(instructions_.begin() + current_node_end, instructions_.end());
387 block->code_start_ = static_cast<int>(instructions_
[all...]
H A Dinstruction.h807 instructions_(zone()),
850 const_iterator begin() const { return instructions_.begin(); }
851 const_iterator end() const { return instructions_.end(); }
859 DCHECK(index < static_cast<int>(instructions_.size()));
860 return instructions_[index];
925 InstructionDeque instructions_;
H A Dinstruction-selector.h204 ZoneDeque<Instruction*> instructions_; member in class:v8::internal::compiler::FINAL
H A Dinstruction-selector-unittest.cc90 s.instructions_.push_back(instr);
/external/chromium_org/v8/src/x64/
H A Ddisasm-x64.cc169 return instructions_[x];
173 InstructionDesc instructions_[256]; member in class:disasm::InstructionTable
191 instructions_[i].mnem = "(bad)";
192 instructions_[i].type = NO_INSTR;
193 instructions_[i].op_order_ = UNSET_OP_ORDER;
194 instructions_[i].byte_size_operation = false;
214 InstructionDesc* id = &instructions_[bm[i].b];
232 InstructionDesc* id = &instructions_[b];
243 InstructionDesc* id = &instructions_[b];
/external/chromium_org/v8/src/ia32/
H A Ddisasm-ia32.cc158 const InstructionDesc& Get(byte x) const { return instructions_[x]; }
165 InstructionDesc instructions_[256]; member in class:disasm::InstructionTable
185 instructions_[i].mnem = "";
186 instructions_[i].type = NO_INSTR;
187 instructions_[i].op_order_ = UNSET_OP_ORDER;
211 InstructionDesc* id = &instructions_[bm[i].b];
225 InstructionDesc* id = &instructions_[b];
235 InstructionDesc* id = &instructions_[b];
H A Dlithium-codegen-ia32.cc433 instructions_->at(code->instruction_index())->hydrogen_value();
/external/chromium_org/v8/src/x87/
H A Ddisasm-x87.cc158 const InstructionDesc& Get(byte x) const { return instructions_[x]; }
165 InstructionDesc instructions_[256]; member in class:disasm::InstructionTable
185 instructions_[i].mnem = "";
186 instructions_[i].type = NO_INSTR;
187 instructions_[i].op_order_ = UNSET_OP_ORDER;
211 InstructionDesc* id = &instructions_[bm[i].b];
225 InstructionDesc* id = &instructions_[b];
235 InstructionDesc* id = &instructions_[b];
/external/chromium_org/v8/src/arm/
H A Dlithium-codegen-arm.cc272 instructions_->at(code->instruction_index())->hydrogen_value();
/external/chromium_org/v8/src/arm64/
H A Dlithium-codegen-arm64.cc779 instructions_->at(code->instruction_index())->hydrogen_value();
/external/chromium_org/v8/src/mips/
H A Dlithium-codegen-mips.cc287 instructions_->at(code->instruction_index())->hydrogen_value();

Completed in 466 milliseconds

12