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.cpp871 InstructionSpecifier &newInfo = in setTableFields() local
876 if(previousInfo.name == "NOOP" && (newInfo.name == "XCHG16ar" || in setTableFields()
877 newInfo.name == "XCHG32ar" || in setTableFields()
878 newInfo.name == "XCHG32ar64" || in setTableFields()
879 newInfo.name == "XCHG64ar")) in setTableFields()
882 if (outranks(previousInfo.insnContext, newInfo.insnContext)) in setTableFields()
885 if (previousInfo.insnContext == newInfo.insnContext) { in setTableFields()
887 errs() << newInfo.name << " would overwrite " << previousInfo.name; in setTableFields()
891 errs() << "Context " << stringForContext(newInfo.insnContext) << "\n"; in setTableFields()
/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_Note.cpp183 PWL_CARET_INFO newInfo = *pInfo; in OnNotify() local
184 newInfo.bVisible = TRUE; in OnNotify()
185 newInfo.ptHead = ChildToParent(pInfo->ptHead); in OnNotify()
186 newInfo.ptFoot = ChildToParent(pInfo->ptFoot); in OnNotify()
189 pParent->OnNotify(this, PNM_SETCARETINFO, (intptr_t)&newInfo, 0); in OnNotify()
497 PWL_CARET_INFO newInfo = *pInfo; in OnNotify() local
498 newInfo.bVisible = TRUE; in OnNotify()
499 newInfo.ptHead = ChildToParent(pInfo->ptHead); in OnNotify()
500 newInfo.ptFoot = ChildToParent(pInfo->ptFoot); in OnNotify()
503 pParent->OnNotify(this, PNM_SETCARETINFO, (intptr_t)&newInfo, 0); in OnNotify()
[all …]
/external/jetty/src/java/org/eclipse/jetty/servlets/
DPutFilter.java308 String newInfo = newPath; in handleMove() local
310 newInfo = newInfo.substring(contextPath.length()); in handleMove()
312 String new_resource = URIUtil.addPaths(_baseURI,newInfo); in handleMove()
/external/apache-harmony/security/src/test/resources/java/security/
DProvider.prop.dat7 Provider.id\ info=newInfo
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDecimalFormat.java3874 public void setCurrencyPluralInfo(CurrencyPluralInfo newInfo) {
3875 currencyPluralInfo = (CurrencyPluralInfo) newInfo.clone();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDecimalFormat.java3934 public void setCurrencyPluralInfo(CurrencyPluralInfo newInfo) {
3935 currencyPluralInfo = (CurrencyPluralInfo) newInfo.clone();
/external/clang/lib/AST/
DASTContext.cpp3004 FunctionProtoType::ExtInfo newInfo = Info.withCallingConv(CallConv); in getFunctionNoProtoType() local
3006 FunctionNoProtoType(ResultTy, Canonical, newInfo); in getFunctionNoProtoType()