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/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderView.cpp758 RenderSelectionInfo* newInfo = newSelectedObjects.get(obj); in setSelection() local
760 … if (!newInfo || oldInfo->rect() != newInfo->rect() || oldInfo->state() != newInfo->state() || in setSelection()
764 if (newInfo) { in setSelection()
765 newInfo->repaint(); in setSelection()
780 RenderBlockSelectionInfo* newInfo = newSelectedBlocks.get(block); in setSelection() local
782 … if (!newInfo || oldInfo->rects() != newInfo->rects() || oldInfo->state() != newInfo->state()) { in setSelection()
784 if (newInfo) { in setSelection()
785 newInfo->repaint(); in setSelection()
/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.cpp794 InstructionSpecifier &newInfo = in setTableFields() local
805 if (previousInfo.name + "_16" == newInfo.name) in setTableFields()
808 if(previousInfo.name == "NOOP" && (newInfo.name == "XCHG16ar" || in setTableFields()
809 newInfo.name == "XCHG32ar" || in setTableFields()
810 newInfo.name == "XCHG32ar64" || in setTableFields()
811 newInfo.name == "XCHG64ar")) in setTableFields()
814 if (outranks(previousInfo.insnContext, newInfo.insnContext)) in setTableFields()
817 if (previousInfo.insnContext == newInfo.insnContext) { in setTableFields()
819 errs() << newInfo.name << " would overwrite " << previousInfo.name; in setTableFields()
823 errs() << "Context " << stringForContext(newInfo.insnContext) << "\n"; in setTableFields()
/external/chromium_org/chrome/browser/resources/chromeos/
Duser_images_grid.js643 var newInfo = this.addItem(
651 if (!(k in newInfo))
652 newInfo[k] = imageInfo[k];
655 this.selectedItem = newInfo;
656 return newInfo;
/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_Note.cpp220 PWL_CARET_INFO newInfo = *pInfo; in OnNotify() local
221 newInfo.bVisible = TRUE; in OnNotify()
222 newInfo.ptHead = this->ChildToParent(pInfo->ptHead); in OnNotify()
223 newInfo.ptFoot = this->ChildToParent(pInfo->ptFoot); in OnNotify()
227 pParent->OnNotify(this, PNM_SETCARETINFO, (FX_INTPTR)&newInfo, 0); in OnNotify()
582 PWL_CARET_INFO newInfo = *pInfo; in OnNotify() local
583 newInfo.bVisible = TRUE; in OnNotify()
584 newInfo.ptHead = this->ChildToParent(pInfo->ptHead); in OnNotify()
585 newInfo.ptFoot = this->ChildToParent(pInfo->ptFoot); in OnNotify()
589 pParent->OnNotify(this, PNM_SETCARETINFO, (FX_INTPTR)&newInfo, 0); in OnNotify()
[all …]
/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.cpp104 OwnPtr<Digest> newInfo = createDigest(newDocument->documentElement(), &m_unusedNodesMap); in patchDocument() local
106 if (!innerPatchNode(oldInfo.get(), newInfo.get(), IGNORE_EXCEPTION)) { in patchDocument()
/external/clang/lib/AST/
DASTContext.cpp2810 FunctionProtoType::ExtInfo newInfo = Info.withCallingConv(CallConv); in getFunctionNoProtoType() local
2812 FunctionNoProtoType(ResultTy, Canonical, newInfo); in getFunctionNoProtoType()