Home
last modified time | relevance | path

Searched refs:newInfo (Results 1 – 12 of 12) sorted by relevance

/external/javassist/src/main/javassist/bytecode/
DLocalVariableAttribute.java82 byte[] newInfo = new byte[size + 10]; in addEntry()
83 ByteArray.write16bit(tableLength() + 1, newInfo, 0); in addEntry() local
85 newInfo[i] = info[i]; in addEntry()
87 ByteArray.write16bit(startPc, newInfo, size); in addEntry()
88 ByteArray.write16bit(length, newInfo, size + 2); in addEntry()
89 ByteArray.write16bit(nameIndex, newInfo, size + 4); in addEntry()
90 ByteArray.write16bit(descriptorIndex, newInfo, size + 6); in addEntry()
91 ByteArray.write16bit(index, newInfo, size + 8); in addEntry()
92 info = newInfo; in addEntry()
DAttributeInfo.java174 byte[] newInfo = new byte[s]; in copy()
176 newInfo[i] = srcInfo[i]; in copy()
178 return new AttributeInfo(newCp, getName(), newInfo); in copy()
DStackMap.java53 StackMap(ConstPool cp, byte[] newInfo) { in StackMap() argument
54 super(cp, tag, newInfo); in StackMap()
DStackMapTable.java45 StackMapTable(ConstPool cp, byte[] newInfo) { in StackMapTable() argument
46 super(cp, tag, newInfo); in StackMapTable()
/external/jmdns/src/javax/jmdns/impl/
DServiceEventImpl.java120 ServiceInfoImpl newInfo = new ServiceInfoImpl(this.getInfo()); in clone() local
121 … return new ServiceEventImpl((JmDNSImpl) this.getDNS(), this.getType(), this.getName(), newInfo); in clone()
/external/llvm/utils/TableGen/
DX86DisassemblerTables.cpp752 InstructionSpecifier &newInfo = in setTableFields() local
757 if(newInfo.filtered) in setTableFields()
760 if(previousInfo.name == "NOOP" && (newInfo.name == "XCHG16ar" || in setTableFields()
761 newInfo.name == "XCHG32ar" || in setTableFields()
762 newInfo.name == "XCHG32ar64" || in setTableFields()
763 newInfo.name == "XCHG64ar")) in setTableFields()
766 if (outranks(previousInfo.insnContext, newInfo.insnContext)) in setTableFields()
769 if (previousInfo.insnContext == newInfo.insnContext && in setTableFields()
772 errs() << newInfo.name << " would overwrite " << previousInfo.name; in setTableFields()
776 errs() << "Context " << stringForContext(newInfo.insnContext) << "\n"; in setTableFields()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderView.cpp887 RenderSelectionInfo* newInfo = newSelectedObjects.get(obj); in setSelection() local
889 … if (!newInfo || oldInfo->rect() != newInfo->rect() || oldInfo->state() != newInfo->state() || in setSelection()
893 if (newInfo) { in setSelection()
894 newInfo->repaint(); in setSelection()
909 RenderBlockSelectionInfo* newInfo = newSelectedBlocks.get(block); in setSelection() local
911 … if (!newInfo || oldInfo->rects() != newInfo->rects() || oldInfo->state() != newInfo->state()) { in setSelection()
913 if (newInfo) { in setSelection()
914 newInfo->repaint(); in setSelection()
DRenderFlowThread.cpp633 RenderBoxRegionInfo* newInfo = block->renderBoxRegionInfo(region); in logicalWidthChangedInRegionsForBlock() local
634 if (!newInfo || newInfo->logicalWidth() != oldLogicalWidth) in logicalWidthChangedInRegionsForBlock()
/external/chromium_org/chrome/browser/resources/chromeos/
Duser_images_grid.js692 var newInfo = this.addItem(
700 if (!(k in newInfo))
701 newInfo[k] = imageInfo[k];
704 this.selectedItem = newInfo;
705 return newInfo;
/external/apache-harmony/security/src/test/resources/java/security/
DProvider.prop.dat7 Provider.id\ info=newInfo
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DDOMPatchSupport.cpp107 OwnPtr<Digest> newInfo = createDigest(newDocument->documentElement(), &m_unusedNodesMap); in patchDocument() local
109 if (!innerPatchNode(oldInfo.get(), newInfo.get(), IGNORE_EXCEPTION)) { in patchDocument()
/external/clang/lib/AST/
DASTContext.cpp2766 FunctionProtoType::ExtInfo newInfo = Info.withCallingConv(CallConv); in getFunctionNoProtoType() local
2768 FunctionNoProtoType(ResultTy, Canonical, newInfo); in getFunctionNoProtoType()