HomeSort by relevance Sort by last modified time
    Searched defs:class_idx (Results 1 - 7 of 7) sorted by null

  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 200 public int class_idx; // defining class : index of type_ids field in class:DexFileReader.FieldIdItem
214 item.class_idx = b.readUShort();
222 public int class_idx; // defining class : index of typeIds field in class:DexFileReader.MethodsIdItem
236 item.class_idx = b.readUShort();
244 public int class_idx; field in class:DexFileReader.ClassDefItem
262 item.class_idx = b.readUInt();
  /external/opencv/ml/src/
mlrtrees.cpp 413 votes.data.i[predicted_node->class_idx]++;
553 int class_idx = predicted_node->class_idx; local
554 CV_ASSERT( 0 <= class_idx && class_idx < nclasses );
556 nvotes = ++votes[class_idx];
  /art/runtime/
dex_file.cc 684 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
685 const dex::TypeIndex class_idx = GetIndexForTypeId(declaring_klass); local
693 if (class_idx > field.class_idx_) {
695 } else if (class_idx < field.class_idx_) {
719 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
720 const dex::TypeIndex class_idx = GetIndexForTypeId(declaring_klass); local
728 if (class_idx > method.class_idx_) {
730 } else if (class_idx < method.class_idx_) {
    [all...]
  /art/runtime/mirror/
class-inl.h 423 dex::TypeIndex class_idx = referrer_dex_cache->GetDexFile()->GetFieldId(field_idx).class_idx_; local
429 class_idx,
461 dex::TypeIndex class_idx = referrer_dex_cache->GetDexFile()->GetMethodId(method_idx).class_idx_; local
466 class_idx,
    [all...]
  /external/opencv/cxcore/src/
cxdatastructs.cpp 2604 int class_idx = 0; local
    [all...]
  /art/runtime/verifier/
method_verifier.cc 4041 const dex::TypeIndex class_idx = dex_file_->GetMethodId(method_idx).class_idx_; local
4298 dex::TypeIndex class_idx = dex_file_->GetMethodId(method_idx).class_idx_; local
    [all...]
  /external/opencv/ml/include/
ml.h 673 int class_idx; member in struct:CvDTreeNode
    [all...]

Completed in 482 milliseconds