HomeSort by relevance Sort by last modified time
    Searched refs:stringIndex (Results 1 - 25 of 39) sorted by null

1 2

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/
DexBackedStringReference.java 41 public final int stringIndex;
44 int stringIndex) {
46 this.stringIndex = stringIndex;
51 return dexFile.getString(stringIndex);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
DexBackedStringEncodedValue.java 42 private final int stringIndex;
46 stringIndex = reader.readSizedSmallUint(valueArg + 1);
50 return dexFile.getString(stringIndex);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
StringIdItem.java 72 public static String getReferenceAnnotation(@Nonnull DexBackedDexFile dexFile, int stringIndex) {
73 return getReferenceAnnotation(dexFile, stringIndex, false);
77 public static String getReferenceAnnotation(@Nonnull DexBackedDexFile dexFile, int stringIndex, boolean quote) {
79 String string = dexFile.getString(stringIndex);
83 return String.format("string_id_item[%d]: %s", stringIndex, string);
87 return String.format("string_id_item[%d]", stringIndex);
92 public static String getOptionalReferenceAnnotation(@Nonnull DexBackedDexFile dexFile, int stringIndex) {
93 return getOptionalReferenceAnnotation(dexFile, stringIndex, false);
97 public static String getOptionalReferenceAnnotation(@Nonnull DexBackedDexFile dexFile, int stringIndex,
99 if (stringIndex == -1)
    [all...]
TypeIdItem.java 53 int stringIndex = dexFile.readSmallUint(out.getCursor());
54 out.annotate(4, StringIdItem.getReferenceAnnotation(dexFile, stringIndex));
EncodedValue.java 85 int stringIndex = reader.readSizedSmallUint(valueArg + 1);
87 StringIdItem.getReferenceAnnotation(reader.dexBuf, stringIndex, true));
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedDexFile.java 164 public int getStringIdItemOffset(int stringIndex) {
165 if (stringIndex < 0 || stringIndex >= stringCount) {
166 throw new InvalidItemIndex(stringIndex, "String index out of bounds: %d", stringIndex);
168 return stringStartOffset + stringIndex*StringIdItem.ITEM_SIZE;
211 public String getString(int stringIndex) {
212 int stringOffset = getStringIdItemOffset(stringIndex);
220 public String getOptionalString(int stringIndex) {
221 if (stringIndex == -1)
    [all...]
  /external/proguard/src/proguard/classfile/constant/
Utf8Constant.java 192 for (int stringIndex = 0; stringIndex < stringLength; stringIndex++)
194 char c = string.charAt(stringIndex);
208 for (int stringIndex = 0; stringIndex < stringLength; stringIndex++)
210 char c = string.charAt(stringIndex);
  /frameworks/base/tools/aapt/
printapk.cpp 107 for (size_t stringIndex=0; stringIndex<stringCount; stringIndex++) {
109 const char16_t* ch = strings->stringAt(stringIndex, &len);
111 printf(" [%3d] %s\n", (int)stringIndex, s.string());
  /dalvik/dx/src/com/android/dx/command/grep/
Grep.java 121 int stringIndex = 0;
124 stringIds.add(stringIndex);
126 stringIndex++;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
ComplexTextControllerCoreText.mm 39 CTLineRef CTLineCreateWithUniCharProvider(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void* context), void (*dispose)(const UniChar* chars, void* context), void* context);
173 static const UniChar* provideStringAndAttributes(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void* refCon)
176 if (stringIndex < 0 || static_cast<unsigned>(stringIndex) >= info->length)
179 *charCount = info->length - stringIndex;
181 return info->cp + stringIndex;
SimpleFontDataMac.mm 66 CTLineRef CTLineCreateWithUniCharProvider(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void* context), void (*dispose)(const UniChar* chars, void* context), void* context);
412 static const UniChar* provideStringAndAttributes(CFIndex stringIndex, CFIndex* count, CFDictionaryRef* attributes, void* context)
415 if (stringIndex < 0 || static_cast<size_t>(stringIndex) >= info->length)
418 *count = info->length - stringIndex;
420 return info->characters + stringIndex;
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 137 public int adjustString(int stringIndex) {
138 return stringIndex == ClassDef.NO_INDEX ? ClassDef.NO_INDEX : stringIds[stringIndex];
DexMerger.java 407 int stringIndex = in.readInt();
408 return indexMap.adjustString(stringIndex);
    [all...]
  /art/test/201-built-in-exception-detail-messages/src/
Main.java 30 stringIndex();
437 private static void stringIndex() throws Exception {
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 293 int stringIndex = bytes.getUnsignedShort(at + 1);
294 cst = parse0(stringIndex, wasUtf8);
  /external/chromium_org/third_party/icu/source/common/unicode/
ures.h 652 * @param stringIndex An index to the wanted string.
681 int32_t stringIndex,
    [all...]
  /external/icu/icu4c/source/common/unicode/
ures.h 660 * @param stringIndex An index to the wanted string.
689 int32_t stringIndex,
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cbiditst.c 92 static UBool checkMaps(UBiDi *pBiDi, int32_t stringIndex, const char *src,
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cbiditst.c 106 static UBool checkMaps(UBiDi *pBiDi, int32_t stringIndex, const char *src,
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp 689 for (unsigned stringIndex = 0; stringIndex != numCharacters; ++stringIndex) {
691 unsigned digitBitIndex = 4 * (numCharacters - stringIndex - 1);
704 buffer[stringIndex] = charForHex[hexDigit];
    [all...]
  /frameworks/base/core/jni/
android_util_AssetManager.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.repository.tools_2.1.0.v20130327-2119.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.repository.tools_2.1.0.v20130327-2119.jar 
  /prebuilts/sdk/tools/darwin/lib/
dx.jar 

Completed in 423 milliseconds

1 2