HomeSort by relevance Sort by last modified time
    Searched refs:name_idx (Results 1 - 19 of 19) sorted by null

  /system/core/libvndksupport/
linker.c 33 int name_idx = 0; local
34 while (namespace_names[name_idx] != NULL) {
36 vendor_namespace = android_get_exported_namespace(namespace_names[name_idx]);
39 namespace_name = namespace_names[name_idx];
42 name_idx++;
  /test/suite_harness/tools/dex-tools/src/dex/reader/
DexFileReader.java 202 public int name_idx; // name of field : index into string id (or field in class:DexFileReader.FieldIdItem
216 item.name_idx = b.readUInt();
224 public int name_idx; // name of method : index into string id (or field in class:DexFileReader.MethodsIdItem
238 item.name_idx = b.readUInt();
DexFieldImpl.java 70 return stringPool[fieldIdItem.name_idx];
DexEncodedValueImpl.java 164 String constantName = stringPool[fieldIdItem.name_idx];
189 String fieldName = stringPool[fieldIdItem.name_idx];
DexMethodImpl.java 97 return stringPool[methodsIdItem.name_idx];
  /art/libdexfile/dex/
dex_file-inl.h 269 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
271 local_in_reg[arg_reg].name_ = index_to_string_data(name_idx);
316 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
329 local_in_reg[reg].name_ = index_to_string_data(name_idx);
468 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); local
469 entry.source_file_ = index_to_string_data(name_idx);
dex_file.cc 246 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
248 const dex::StringIndex name_idx = GetIndexForStringId(name); local
260 if (name_idx > field.name_idx_) {
262 } else if (name_idx < field.name_idx_) {
281 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
283 const dex::StringIndex name_idx = GetIndexForStringId(name); local
295 if (name_idx > method.name_idx_) {
297 } else if (name_idx < method.name_idx_) {
dex_file_verifier.cc     [all...]
  /tools/dexter/slicer/export/slicer/
dex_format.h 188 u4 name_idx; member in struct:dex::FieldId
195 u4 name_idx; member in struct:dex::MethodId
  /external/python/cpython3/Modules/
_operator.c 721 Py_ssize_t name_idx = 0, name_count; local
726 for (name_idx = 0; name_idx < name_count; ++name_idx) {
727 attr_name = PyTuple_GET_ITEM(attr, name_idx);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
string_format.h 355 Py_ssize_t *name_idx, SubString *name)
366 *name_idx = -1;
372 *name_idx = get_integer(name);
373 if (*name_idx == -1 && PyErr_Occurred())
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
string_format.h 358 Py_ssize_t *name_idx, SubString *name)
369 *name_idx = -1;
375 *name_idx = get_integer(name);
376 if (*name_idx == -1 && PyErr_Occurred())
    [all...]
  /external/python/cpython2/Objects/stringlib/
string_format.h 355 Py_ssize_t *name_idx, SubString *name)
366 *name_idx = -1;
372 *name_idx = get_integer(name);
373 if (*name_idx == -1 && PyErr_Occurred())
    [all...]
  /external/python/cpython3/Objects/stringlib/
unicode_format.h 274 Py_ssize_t *name_idx, SubString *name)
285 *name_idx = -1;
291 *name_idx = get_integer(name);
292 if (*name_idx == -1 && PyErr_Occurred())
    [all...]
  /tools/dexter/slicer/
reader.cc 805 ir_field->name = GetString(dex_field.name_idx);
817 ir_method->name = GetString(dex_method.name_idx);
writer.cc 586 dexFieldId->name_idx = ir_field->name->index;
598 dexMethodId->name_idx = ir_method->name->index;
    [all...]
  /art/dexdump/
dexdump.cc 524 const u4 name_idx = DecodeUnsignedLeb128(data); local
526 fputs(pDexFile->StringDataByIdx(dex::StringIndex(name_idx)), gOutFile);
    [all...]
  /art/runtime/interpreter/
interpreter_common.cc     [all...]
  /external/v8/src/interpreter/
interpreter.cc 2941 Node* name_idx = __ BytecodeOperandIdx(1); local
    [all...]

Completed in 1493 milliseconds