HomeSort by relevance Sort by last modified time
    Searched refs:get (Results 651 - 675 of 4953) sorted by null

<<21222324252627282930>>

  /build/tools/apicheck/src/com/android/apicheck/
ApiInfo.java 31 return mAllClasses.get(name);
45 if (!pInfo.isConsistent(otherApi.getPackages().get(pInfo.name()))) {
87 ClassInfo superclass = mAllClasses.get(scName);
  /cts/tools/host/src/com/android/cts/
CommandHistory.java 52 * Get the number of commands recorded.
61 * Get command by index from command history cache.
66 public String get(final int index) { method in class:CommandHistory
67 return mCmdRecords.get(index);
88 String cmdLine = mCmdRecords.get(start);
  /dalvik/dx/src/com/android/dx/dex/code/
CatchTable.java 49 public Entry get(int n) { method in class:CatchTable
75 Entry thisEntry = get(i);
76 Entry otherEntry = other.get(i);
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form11n.java 49 return regs.get(0).regString() + ", " + literalBitsString(value);
72 unsignedFitsInNibble(regs.get(0).getReg()))) {
102 opcodeUnit(insn, makeByte(regs.get(0).getReg(), value & 0xf)));
Form21s.java 49 return regs.get(0).regString() + ", " + literalBitsString(value);
71 unsignedFitsInByte(regs.get(0).getReg()))) {
101 opcodeUnit(insn, regs.get(0).getReg()),
Form31i.java 49 return regs.get(0).regString() + ", " + literalBitsString(value);
71 unsignedFitsInByte(regs.get(0).getReg()))) {
99 opcodeUnit(insn, regs.get(0).getReg()),
Form51l.java 50 return regs.get(0).regString() + ", " + literalBitsString(value);
72 unsignedFitsInByte(regs.get(0).getReg()))) {
96 opcodeUnit(insn, regs.get(0).getReg()),
  /dalvik/dx/src/com/android/dx/dex/file/
ProtoIdsSection.java 56 public IndexedItem get(Constant cst) { method in class:ProtoIdsSection
97 ProtoIdItem result = protoIds.get(prototype);
121 ProtoIdItem item = protoIds.get(prototype);
  /dalvik/dx/src/com/android/dx/ssa/
InterferenceRegisterMapper.java 88 IntSet existing = newRegInterference.get(newReg);
128 oldReg, newRegInterference.get(newReg));
148 RegisterSpec oldSpec = oldSpecs.get(i);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceRandomScript.java 99 mCurrentSource = mScriptSources.get(0);
102 mCurrentSource = mScriptSources.get(mRandom.nextInt(numSources));
104 mCurrentSource = mScriptSources.get(mScriptCount % numSources);