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

  /external/javassist/src/main/javassist/bytecode/
LocalVariableAttribute.java 82 byte[] newInfo = new byte[size + 10];
83 ByteArray.write16bit(tableLength() + 1, newInfo, 0);
85 newInfo[i] = info[i];
87 ByteArray.write16bit(startPc, newInfo, size);
88 ByteArray.write16bit(length, newInfo, size + 2);
89 ByteArray.write16bit(nameIndex, newInfo, size + 4);
90 ByteArray.write16bit(descriptorIndex, newInfo, size + 6);
91 ByteArray.write16bit(index, newInfo, size + 8);
92 info = newInfo;
AttributeInfo.java 161 public void set(byte[] newinfo) { info = newinfo; }
174 byte[] newInfo = new byte[s];
176 newInfo[i] = srcInfo[i];
178 return new AttributeInfo(newCp, getName(), newInfo);
StackMap.java 53 StackMap(ConstPool cp, byte[] newInfo) {
54 super(cp, tag, newInfo);
StackMapTable.java 45 StackMapTable(ConstPool cp, byte[] newInfo) {
46 super(cp, tag, newInfo);
840 byte[] newinfo = insertGap(info, pos, 2);
841 newinfo[pos] = (byte)entry;
842 ByteArray.write16bit(newDelta, newinfo, pos + 1);
843 updatedInfo = newinfo;
852 byte[] newinfo = new byte[len + gap];
854 newinfo[i + (i < where ? 0 : gap)] = info[i];
856 return newinfo;
  /external/webkit/Source/WebCore/platform/network/mac/
FormDataStreamMac.mm 232 FormStreamFields* newInfo = new FormStreamFields;
233 newInfo->currentStream = NULL;
235 newInfo->currentStreamRangeLength = BlobDataItem::toEndOfFile;
237 newInfo->currentData = 0;
238 newInfo->formStream = stream; // Don't retain. That would create a reference cycle.
239 newInfo->streamLength = formContext->streamLength;
240 newInfo->bytesSent = 0;
246 newInfo->remainingElements.reserveInitialCapacity(size);
248 newInfo->remainingElements.append(formData->elements()[size - i - 1]);
252 return newInfo;
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderView.cpp 524 RenderSelectionInfo* newInfo = newSelectedObjects.get(obj);
526 if (!newInfo || oldInfo->rect() != newInfo->rect() || oldInfo->state() != newInfo->state() ||
530 if (newInfo) {
531 newInfo->repaint();
533 delete newInfo;
542 RenderSelectionInfo* newInfo = i->second;
543 newInfo->repaint();
544 delete newInfo;
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WorkerFileSystemCallbacksBridge.cpp 57 struct WebKit::WebFileInfo newInfo;
58 newInfo.modificationTime = info.modificationTime;
59 newInfo.length = info.length;
60 newInfo.type = info.type;
61 newInfo.platformPath.assign(info.platformPath.data(), info.platformPath.length());
62 return newInfo;
  /external/llvm/utils/TableGen/
X86DisassemblerTables.cpp 611 InstructionSpecifier &newInfo =
616 if(newInfo.filtered)
622 if (outranks(previousInfo.insnContext, newInfo.insnContext))
625 if (previousInfo.insnContext == newInfo.insnContext &&
628 errs() << newInfo.name << " would overwrite " << previousInfo.name;
632 errs() << "Context " << stringForContext(newInfo.insnContext) << "\n";
  /dalvik/vm/compiler/codegen/
RallocUtil.cpp 661 RegisterInfo *newInfo = getRegInfo(cUnit, newReg);
663 *newInfo = *oldInfo;
664 newInfo->reg = newReg;
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp     [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageViewFragmentBase.java     [all...]
  /packages/apps/Phone/src/com/android/phone/
CallFeaturesSetting.java     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /prebuilt/common/ecj/
ecj.jar 

Completed in 282 milliseconds