/system/tools/aidl/ |
generate_java.h | 54 int index_; member in class:android::aidl::VariableFactory
|
/external/libchrome/base/json/ |
json_parser.cc | 194 index_(0), 219 index_ = 0; 355 ++index_; 362 index_ += n; 414 index_last_line_ = index_; 628 pos_ = start_pos_ + index_; // CBU8_NEXT is postcrement. 629 CBU8_NEXT(start_pos_, index_, length, next_char); 722 --index_; // Rewind by one because of CBU8_NEXT. 826 const int start_index = index_; 836 end_index = index_; [all...] |
json_parser.h | 211 // |index_| and |index_last_line_|, with an optional positive/negative 227 // |start_pos_ + index_|. 234 int index_; member in class:base::internal::JSONParser 242 // The last value of |index_| on the previous line.
|
/external/libweave/third_party/chromium/base/json/ |
json_parser.cc | 189 index_(0), 214 index_ = 0; 350 ++index_; 357 index_ += n; 409 index_last_line_ = index_; 623 pos_ = start_pos_ + index_; // CBU8_NEXT is postcrement. 624 CBU8_NEXT(start_pos_, index_, length, next_char); 717 --index_; // Rewind by one because of CBU8_NEXT. 821 const int start_index = index_; 831 end_index = index_; [all...] |
/external/v8/src/compiler/ |
instruction.h | 852 return index_; 856 return static_cast<size_t>(index_); 858 bool IsValid() const { return index_ >= 0; } 864 return other.index_ == this->index_ + 1; 868 bool operator==(RpoNumber other) const { return index_ == other.index_; } 869 bool operator!=(RpoNumber other) const { return index_ != other.index_; } 870 bool operator>(RpoNumber other) const { return index_ > other.index_; [all...] |
node-matchers.h | 193 : NodeMatcher(node), object_(InputAt(0)), index_(InputAt(1)) {} 198 IntPtrMatcher const& index() const { return index_; } 202 IntPtrMatcher const index_; member in struct:v8::internal::compiler::LoadMatcher 387 index_(nullptr), 396 index_(nullptr), 404 Node* index() const { return index_; } 411 Node* index_; member in struct:v8::internal::compiler::BaseWithIndexAndDisplacementMatcher 554 index_ = index;
|
schedule.h | 47 int ToInt() const { return static_cast<int>(index_); } 48 size_t ToSize() const { return index_; } 53 explicit Id(size_t index) : index_(index) {} 54 size_t index_; member in class:v8::internal::compiler::final::Id
|
common-operator.h | 106 : index_(index), debug_name_(debug_name) {} 108 int index() const { return index_; } 112 int index_; member in class:v8::internal::compiler::final
|
/external/ImageMagick/Magick++/lib/ |
Statistic.cpp | 88 double Magick::ChannelMoments::huInvariants(const size_t index_) const 90 if (index_ > 7) 93 return(_huInvariants.at(index_)); 246 double Magick::ChannelPerceptualHash::srgbHuPhash(const size_t index_) const 248 if (index_ > 6) 251 return(_srgbHuPhash.at(index_)); 254 double Magick::ChannelPerceptualHash::hclpHuPhash(const size_t index_) const 256 if (index_ > 6) 259 return(_hclpHuPhash.at(index_));
|
/external/jsoncpp/src/lib_json/ |
json_value.cpp | 164 // Notes: index_ indicates if the string was allocated when 167 Value::CZString::CZString(ArrayIndex index) : cstr_(0), index_(index) {} 171 index_(allocate) {} 174 : cstr_(other.index_ != noDuplication && other.cstr_ != 0 177 index_(other.cstr_ 178 ? static_cast<ArrayIndex>(other.index_ == noDuplication 180 : other.index_) {} 183 if (cstr_ && index_ == duplicate) 189 std::swap(index_, other.index_); [all...] |
/external/opencv3/modules/flann/include/opencv2/ |
flann.hpp | 345 Index_ { 350 Index_(const Mat& features, const ::cvflann::IndexParams& params); 352 ~Index_(); 399 class FLANN_DEPRECATED Index_; 405 Index_<T>::Index_(const Mat& dataset, const ::cvflann::IndexParams& params) 407 printf("[WARNING] The cv::flann::Index_<T> class is deperecated, use cv::flann::GenericIndex<Distance> instead\n"); 422 printf("[ERROR] cv::flann::Index_<T> only provides backwards compatibility for the L1 and L2 distances. " 431 Index_<T>::~Index_() [all...] |
/external/opencv3/modules/flann/include/opencv2/flann/ |
result_set.h | 293 dist_(dist), index_(index) 298 return (dist_ < dist_index.dist_) || ((dist_ == dist_index.dist_) && index_ < dist_index.index_); 301 unsigned int index_; member in struct:cvflann::UniqueResultSet::DistIndex 332 *indices = dist_index->index_; 340 *indices = dist_index->index_;
|
/external/v8/src/interpreter/ |
bytecodes.cc | 411 DCHECK_GE(index_, kMinInt8); 412 DCHECK_LE(index_, kMaxInt8); 413 return static_cast<uint8_t>(-index_); 423 DCHECK_GE(index_, kMinInt16); 424 DCHECK_LE(index_, kMaxInt16); 425 return static_cast<uint16_t>(-index_);
|
bytecodes.h | 271 Register() : index_(kIllegalIndex) {} 273 explicit Register(int index) : index_(index) {} 276 DCHECK(index_ != kIllegalIndex); 277 return index_; 280 bool is_valid() const { return index_ != kIllegalIndex; } 328 int index_; member in class:v8::internal::interpreter::OperandType::Bytecode::Register
|
/external/webrtc/webrtc/system_wrappers/source/ |
sort.cc | 66 ptr_sort_key[i].index_ = i; \ 77 uint32_t index_; member in struct:webrtc::SortKey 83 uint32_t index_; 217 ptr_sort_key[i].index_ = i; 237 ptr_sort_key[i].index_ * size_of_element, size_of_element); 441 ptr_sort_key[i].index_ * size_of_element, size_of_element);
|
/art/runtime/base/ |
hash_set.h | 67 BaseIterator(HashSetType* hash_set, size_t index) : index_(index), hash_set_(hash_set) { 73 return hash_set_ == other.hash_set_ && this->index_ == other.index_; 81 this->index_ = this->NextNonEmptySlot(this->index_, hash_set_); 87 this->index_ = this->NextNonEmptySlot(this->index_, hash_set_); 92 DCHECK(!hash_set_->IsFreeSlot(this->index_)); 93 return hash_set_->ElementForIndex(this->index_); 103 size_t index_; member in class:art::HashSet::BaseIterator [all...] |
/external/google-breakpad/src/processor/ |
static_map_iterator.h | 55 StaticMapIterator(): index_(-1), base_(NULL) { } 93 int32_t index_; member in class:google_breakpad::StaticMapIterator
|
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
fast_marching.hpp | 97 int& indexOf(const DXY &dxy) { return index_(dxy.y, dxy.x); } 109 cv::Mat_<int> index_; // index of point in the narrow band member in class:cv::videostab::FastMarchingMethod
|
fast_marching_inl.hpp | 65 index_.create(mask.size()); 106 index_(y,x) = size_++; 142 int i = index_(yn,xn);
|
/external/ImageMagick/Magick++/lib/Magick++/ |
Statistic.h | 56 double huInvariants(const size_t index_) const; 111 double srgbHuPhash(const size_t index_) const; 114 double hclpHuPhash(const size_t index_) const;
|
/external/sfntly/cpp/src/sfntly/table/truetype/ |
loca_table.cc | 76 : PODIterator<int32_t, LocaTable>(table), index_(-1) { 80 return index_ <= container()->num_glyphs_; 84 return container()->Loca(index_++);
|
/external/v8/src/ast/ |
variables.h | 121 int index() const { return index_; } 128 index_ = index; 170 int index_; member in class:v8::internal::Variable
|
/external/protobuf/src/google/protobuf/ |
descriptor_database.cc | 264 return index_.AddFile(*file, file); 270 return MaybeCopy(index_.FindFile(filename), output); 276 return MaybeCopy(index_.FindSymbol(symbol_name), output); 283 return MaybeCopy(index_.FindExtension(containing_type, field_number), output); 289 return index_.FindAllExtensionNumbers(extendee_type, output); 313 return index_.AddFile(file, make_pair(encoded_file_descriptor, size)); 332 return MaybeParse(index_.FindFile(filename), output); 338 return MaybeParse(index_.FindSymbol(symbol_name), output); 344 pair<const void*, int> encoded_file = index_.FindSymbol(symbol_name); 374 return MaybeParse(index_.FindExtension(containing_type, field_number) [all...] |
/external/v8/src/ |
utils.h | 565 : index_(0), size_(0) { 579 if (index_ >= current_chunk_.length()) { 582 current_chunk_[index_] = value; 583 index_++; 593 if (size > current_chunk_.length() - index_) { 596 T* position = current_chunk_.start() + index_; 597 index_ += size; 611 if (source.length() > current_chunk_.length() - index_) { 614 T* position = current_chunk_.start() + index_; 615 index_ += source.length() 668 int index_; \/\/ Current index in current chunk. member in class:v8::internal::Collector [all...] |
/external/libchrome/base/metrics/ |
sample_vector.h | 99 size_t index_; member in class:base::SampleVectorIterator
|