Searched defs:index_ (Results 1 - 25 of 113) sorted by relevance

12345

/external/libchrome/base/metrics/
H A Dsample_vector.h100 size_t index_; member in class:base::SampleVectorIterator
/external/webrtc/webrtc/modules/audio_processing/vad/
H A Dstandalone_vad.h64 size_t index_; member in class:webrtc::StandaloneVad
H A Dvad_circular_buffer.h63 int index_; member in class:webrtc::VadCircularBuffer
/external/google-breakpad/src/processor/
H A Dstatic_map_iterator.h55 StaticMapIterator(): index_(-1), base_(NULL) { }
93 int32_t index_; member in class:google_breakpad::StaticMapIterator
/external/protobuf/src/google/protobuf/
H A Ddescriptor_database.h252 DescriptorIndex<const FileDescriptorProto*> index_; member in class:google::protobuf::SimpleDescriptorDatabase
301 SimpleDescriptorDatabase::DescriptorIndex<pair<const void*, int> > index_; member in class:google::protobuf::EncodedDescriptorDatabase
/external/sfntly/cpp/src/sfntly/table/truetype/
H A Dloca_table.h38 int32_t index_; member in class:sfntly::LocaTable::LocaIterator
/external/gemmlowp/internal/
H A Dallocator.h147 std::uint8_t index_; member in class:gemmlowp::Allocator::Handle
167 h.index_ = index;
182 assert(h.index_ < reserved_blocks_ &&
187 std::size_t offset = reserved_blocks_offsets_[h.index_];
/external/v8/src/
H A Dsource-position-table.h80 bool done() const { return index_ == kDone; }
86 int index_; member in class:v8::internal::SourcePositionTableIterator
/external/webrtc/webrtc/base/
H A Dwindow.h92 DesktopId() : id_(0), index_(-1) {}
94 : id_(id), index_(index) {
97 int index() const { return index_; }
98 bool IsValid() const { return index_ != -1; }
100 return id_ == other.id() && index_ == other.index();
108 int index_; member in class:rtc::DesktopId
/external/google-breakpad/src/tools/mac/dump_syms/
H A Dmacho_dump.cc75 DumpSection() : index_(0) { }
82 index_++, section.section_name.c_str(), section.segment_name.c_str(),
90 int index_; member in class:__anon7102::DumpSection
95 DumpCommand(mach_o::Reader *reader) : reader_(reader), index_(0) { }
98 printf(" load command %d: %d", index_++, type);
109 index_++, (segment.bits_64 ? "64" : "32"), segment.name.c_str(),
119 int index_; member in class:__anon7102::DumpCommand
/external/libchrome/base/json/
H A Djson_parser.h214 // |index_| and |index_last_line_|, with an optional positive/negative
230 // |start_pos_ + index_|.
237 int index_; member in class:base::internal::JSONParser
245 // The last value of |index_| on the previous line.
/external/libchrome/base/
H A Dobserver_list.h93 size_t index_; member in class:base::ObserverListBase::Iterator
136 index_(0),
155 while (index_ < max_index && !observers[index_])
156 ++index_;
157 return index_ < max_index ? observers[index_++] : nullptr;
/external/parameter-framework/asio/include/asio/ip/
H A Dbasic_resolver_iterator.hpp65 : index_(0)
182 if (++index_ == values_->size())
186 index_ = 0;
196 return index_ == other.index_;
201 return (*values_)[index_];
206 std::size_t index_; member in class:asio::ip::basic_resolver_iterator
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dbasic_resolver_iterator.hpp65 : index_(0)
182 if (++index_ == values_->size())
186 index_ = 0;
196 return index_ == other.index_;
201 return (*values_)[index_];
206 std::size_t index_; member in class:asio::ip::basic_resolver_iterator
/external/v8/src/interpreter/
H A Dbytecode-register.h21 explicit Register(int index = kInvalidIndex) : index_(index) {}
23 int index() const { return index_; }
25 bool is_valid() const { return index_ != kInvalidIndex; }
60 int32_t ToOperand() const { return kRegisterFileStartOffset - index_; }
99 int index_; member in class:v8::internal::interpreter::final
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkBinaryRegistry.hpp196 deUint32 index_)
198 , index (index_)
195 ProgramIdentifierIndex(const ProgramIdentifier& id_, deUint32 index_) argument
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationFractionalSpacingTests.cpp84 Segment (int index_, float length_) : index(index_), length(length_) {} argument
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h240 : file_(a_file), line_(a_line), index_(an_index),
250 int index() const { return index_; }
256 int index_; member in class:testing::internal::InternalRunDeathTestFlag
/external/googletest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h240 : file_(a_file), line_(a_line), index_(an_index),
250 int index() const { return index_; }
256 int index_; member in class:testing::internal::InternalRunDeathTestFlag
/external/libchrome/base/containers/
H A Dmru_cache.h89 typename KeyIndex::iterator index_iter = index_.find(key);
90 if (index_iter != index_.end()) {
101 index_.insert(std::make_pair(key, ordering_.begin()));
111 typename KeyIndex::iterator index_iter = index_.find(key);
112 if (index_iter == index_.end())
124 typename KeyIndex::const_iterator index_iter = index_.find(key);
125 if (index_iter == index_.end())
131 typename KeyIndex::const_iterator index_iter = index_.find(key);
132 if (index_iter == index_.end())
140 index_
201 KeyIndex index_; member in class:base::MRUCacheBase
[all...]
/external/libchrome/base/trace_event/
H A Dheap_profiler_allocation_register.h273 AllocationIndex index_; member in class:base::trace_event::AllocationRegister::ConstIterator
/external/libcxx/test/support/
H A Dtest_iterators.h345 : begin_(nullptr), end_(nullptr), current_(nullptr), action_(TADereference), index_(0) {}
347 : begin_(first), end_(last), current_(first), action_(action), index_(index) {}
349 : begin_(rhs.begin_), end_(rhs.end_), current_(rhs.current_), action_(rhs.action_), index_(rhs.index_) {}
354 if (index_ == 0)
362 --index_;
368 index_ = rhs.index_;
377 if (index_ == 0)
384 --index_;
461 mutable size_t index_; member in struct:ThrowingIterator
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-death-test-internal.h240 : file_(a_file), line_(a_line), index_(an_index),
250 int index() const { return index_; }
256 int index_; member in class:testing::internal::InternalRunDeathTestFlag
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h227 : file_(a_file), line_(a_line), index_(an_index),
237 int index() const { return index_; }
243 int index_; member in class:testing::internal::InternalRunDeathTestFlag
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h240 : file_(a_file), line_(a_line), index_(an_index),
250 int index() const { return index_; }
256 int index_; member in class:testing::internal::InternalRunDeathTestFlag

Completed in 1570 milliseconds

12345