Searched refs:index_ (Results 26 - 50 of 204) sorted by last modified time

123456789

/external/deqp/modules/gles31/functional/
H A Des31fTessellationTests.cpp1194 Segment (int index_, float length_) : index(index_), length(length_) {}
/external/deqp/framework/opengl/
H A DgluVarTypeUtil.hpp85 VarTypeComponent (Type type_, int index_) : type(type_), index(index_) {} argument
/external/deqp/modules/gles2/functional/
H A Des2fUniformApiTests.cpp853 BasicUniformReportGL (const char* const name_, const int nameLength_, const int size_, const glu::DataType type_, const int index_) argument
854 : name(name_), nameLength(nameLength_), size(size_), type(type_), index(index_) {}
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc23035 explicit TestSourceStream(const char** chunks) : chunks_(chunks), index_(0) {}
23039 if (chunks_[index_] == NULL) {
23043 size_t len = strlen(chunks_[index_]);
23046 memcpy(copy, chunks_[index_], len);
23048 ++index_;
23072 unsigned index_; member in class:TestSourceStream
/external/chromium_org/v8/include/
H A Dv8.h400 V8_INLINE Eternal() : index_(kInitialValue) { }
402 V8_INLINE Eternal(Isolate* isolate, Local<S> handle) : index_(kInitialValue) {
407 V8_INLINE bool IsEmpty() { return index_ == kInitialValue; }
412 int index_; member in class:v8::Eternal
5996 V8::Eternalize(isolate, reinterpret_cast<Value*>(*handle), &this->index_);
6002 return Local<T>(reinterpret_cast<T*>(*V8::GetEternal(isolate, index_)));
/external/chromium_org/v8/src/
H A Daccessors.cc1210 index_(0) {
1216 JSFunction* next_function = functions_[index_];
1217 index_--;
1218 if (index_ < 0) {
1247 index_ = functions_.length() - 1;
1252 int index_; member in class:v8::internal::FrameFunctionIterator
H A Dast.h1255 int index() const { return index_; }
1262 index_(index),
1268 int index_; member in class:v8::internal::TryStatement
2245 return index_;
2249 index_ = index;
2282 index_(-1),
2289 int index_; member in class:v8::internal::FINAL
2848 : body_(body), index_(index) { }
2864 int index() { return index_; }
2870 int index_; member in class:v8::internal::FINAL
[all...]
H A Dcode-stubs.h1617 index_(index),
1624 DCHECK(!result_.is(index_));
1646 Register index_; member in class:StringCharCodeAtGenerator
H A Ddateparser.cc13 if (index_ < 1) return false;
15 while (index_ < kSize) {
16 comp_[index_++] = 1;
24 if (is_iso_date_ || (index_ == 3 && !IsDay(comp_[0]))) {
33 if (index_ == 3) year = comp_[2];
37 if (index_ == 1) {
67 while (index_ < kSize) {
68 comp_[index_++] = 0;
H A Ddateparser.h52 : index_(0),
58 int position() { return index_; }
62 ch_ = (index_ < buffer_.length()) ? buffer_[index_] : 0;
63 index_++;
131 int index_; member in class:v8::internal::DateParser::BASE_EMBEDDED
311 TimeComposer() : index_(0), hour_offset_(kNone) {}
312 bool IsEmpty() const { return index_ == 0; }
314 return (index_ == 1 && IsMinute(n)) ||
315 (index_
[all...]
H A Ddeoptimizer.cc2931 uint8_t next = buffer_->get(index_++);
H A Ddeoptimizer.h673 : buffer_(buffer), index_(index) {
679 bool HasNext() const { return index_ < buffer_->length(); }
687 int index_;
725 index_(buffer->CurrentIndex()),
732 int index() const { return index_; }
768 int index_; member in class:v8::internal::FrameDescription
H A Dgdb-jit.cc330 uint16_t index() const { return index_; }
331 void set_index(uint16_t index) { index_ = index; }
348 uint16_t index_; member in class:v8::ELFSection
H A Dglobal-handles.cc65 index_ = 0;
75 index_ = static_cast<uint8_t>(index);
76 DCHECK(static_cast<int>(index_) == index);
276 uint8_t index_; member in class:v8::internal::GlobalHandles::Node
372 ptr = ptr - index_ * sizeof(Node);
374 DCHECK(block->node_at(index_) == this);
403 index_(0) {}
409 return block_->node_at(index_);
414 if (++index_ < NodeBlock::kSize) return;
415 index_
[all...]
H A Dheap-snapshot-generator.cc37 index_(index) {
H A Dheap-snapshot-generator.h39 return index_;
64 int index_; member in union:v8::internal::BASE_EMBEDDED::__anon17302
/external/chromium_org/v8/src/arm/
H A Dcode-stubs-arm.cc2772 __ JumpIfNotSmi(index_, &index_not_smi_);
2777 __ cmp(ip, Operand(index_));
2780 __ SmiUntag(index_);
2784 index_,
2801 __ CheckMap(index_,
2808 __ push(index_); // Consumed by runtime conversion function.
2818 __ Move(index_, r0);
2825 __ JumpIfNotSmi(index_, index_out_of_range_);
2834 __ SmiTag(index_);
2835 __ Push(object_, index_);
[all...]
H A Dlithium-arm.h1439 LDateField(LOperand* date, LOperand* temp, Smi* index) : index_(index) {
1446 Smi* index() const { return index_; }
1452 Smi* index_; member in class:v8::internal::FINAL
H A Dlithium-codegen-arm.cc5846 index_(index) {
5849 codegen()->DoDeferredLoadMutableDouble(instr_, result_, object_, index_);
5856 Register index_; member in class:v8::internal::FINAL
/external/chromium_org/v8/src/arm64/
H A Dcode-stubs-arm64.cc3110 __ JumpIfNotSmi(index_, &index_not_smi_);
3115 __ Cmp(result_, Operand::UntagSmi(index_));
3118 __ SmiUntag(index_);
3122 index_.W(),
3137 __ JumpIfNotHeapNumber(index_, index_not_number_);
3139 // Save object_ on the stack and pass index_ as argument for runtime call.
3140 __ Push(object_, index_);
3150 __ Mov(index_, x0);
3158 __ JumpIfNotSmi(index_, index_out_of_range_);
3167 __ SmiTag(index_);
[all...]
H A Dlithium-arm64.h1280 LDateField(LOperand* date, Smi* index) : index_(index) {
1285 Smi* index() const { return index_; }
1291 Smi* index_; member in class:v8::internal::FINAL
H A Dlithium-codegen-arm64.cc204 : BranchGenerator(codegen), value_(value), index_(index) { }
207 __ JumpIfRoot(value_, index_, label);
211 __ JumpIfNotRoot(value_, index_, label);
216 const Heap::RootListIndex index_; member in class:v8::internal::BranchIfRoot
5980 index_(index) {
5983 codegen()->DoDeferredLoadMutableDouble(instr_, result_, object_, index_);
5990 Register index_; member in class:v8::internal::FINAL
/external/chromium_org/v8/src/compiler/
H A Dgeneric-node.h186 index_(other.index_) {}
193 return other.index_ == index_ && other.node_ == node_;
198 DCHECK(index_ < node_->input_count_);
199 ++index_;
205 index_++;
208 int index() { return index_; }
214 : node_(node), index_(index) {}
216 Input* GetInput() const { return node_->GetInputRecordPtr(index_); }
[all...]
H A Djs-operator.h24 : immutable_(immutable), depth_(depth), index_(index) {
29 int index() const { return index_; }
37 const uint32_t index_; member in class:v8::internal::compiler::ContextAccess
/external/chromium_org/v8/src/heap/
H A Dgc-tracer.h20 const_iterator() : index_(0), elements_(NULL) {}
23 : index_(index), elements_(elements) {}
26 return elements_ == rhs.elements_ && index_ == rhs.index_;
30 return elements_ != rhs.elements_ || index_ != rhs.index_;
33 operator const T*() const { return elements_ + index_; }
35 const T* operator->() const { return elements_ + index_; }
37 const T& operator*() const { return elements_[index_]; }
40 index_
50 size_t index_; member in class:v8::internal::RingBuffer::const_iterator
[all...]

Completed in 536 milliseconds

123456789