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

1 2

  /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/jmdns/src/javax/jmdns/impl/
ServiceEventImpl.java 120 ServiceInfoImpl newInfo = new ServiceInfoImpl(this.getInfo());
121 return new ServiceEventImpl((JmDNSImpl) this.getDNS(), this.getType(), this.getName(), newInfo);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DynamicBinaryDictIOUtils.java 210 final PtNodeInfo newInfo = new PtNodeInfo(newPtNodeOrigin, newPtNodeOrigin + size,
214 movePtNode(destination, dictUpdater, newInfo, oldPtNodeArrayOrigin, oldPtNodeOrigin,
373 final PtNodeInfo newInfo = new PtNodeInfo(
378 new PtNodeInfo[] { suffixInfo, newInfo });
395 final PtNodeInfo newInfo = new PtNodeInfo(newNodeAddress + 1,
399 movePtNode(destination, dictUpdater, newInfo, nodeOriginAddress, address,
426 final PtNodeInfo newInfo = new PtNodeInfo(newNodeAddress, -1, flags,
429 BinaryDictIOUtils.writeNodes(destination, new PtNodeInfo[] { newInfo });
470 final PtNodeInfo newInfo = new PtNodeInfo(newNodeAddress + 1,
473 BinaryDictIOUtils.writeNodes(destination, new PtNodeInfo[]{ newInfo });
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderView.cpp     [all...]
RenderFlowThread.cpp 602 RenderBoxRegionInfo* newInfo = block->renderBoxRegionInfo(region, offsetFromLogicalTopOfFirstPage);
603 if (!newInfo || newInfo->logicalWidth() != oldLogicalWidth)
    [all...]
  /frameworks/base/core/java/android/view/
Display.java 657 DisplayInfo newInfo = mGlobal.getDisplayInfo(mDisplayId);
658 if (newInfo == null) {
668 mDisplayInfo = newInfo;
  /external/llvm/utils/TableGen/
X86DisassemblerTables.cpp 752 InstructionSpecifier &newInfo =
757 if(newInfo.filtered)
760 if(previousInfo.name == "NOOP" && (newInfo.name == "XCHG16ar" ||
761 newInfo.name == "XCHG32ar" ||
762 newInfo.name == "XCHG32ar64" ||
763 newInfo.name == "XCHG64ar"))
766 if (outranks(previousInfo.insnContext, newInfo.insnContext))
769 if (previousInfo.insnContext == newInfo.insnContext &&
772 errs() << newInfo.name << " would overwrite " << previousInfo.name;
776 errs() << "Context " << stringForContext(newInfo.insnContext) << "\n"
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
UpdateHandler.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WorkerFileSystemCallbacksBridge.cpp 59 struct WebKit::WebFileInfo newInfo;
60 newInfo.modificationTime = info.modificationTime;
61 newInfo.length = info.length;
62 newInfo.type = info.type;
63 newInfo.platformPath.assign(info.platformPath);
64 return newInfo;
  /frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
ProcessErrorsTest.java 310 public ProcessError(ProcessErrorStateInfo newInfo) {
311 info = newInfo;
  /frameworks/testing/app-tests/AppLaunchTest/src/com/android/applaunchtest/
AppLaunchTest.java 254 public ProcessError(ProcessErrorStateInfo newInfo) {
255 info = newInfo;
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertService.java     [all...]
  /dalvik/vm/compiler/codegen/
RallocUtil.cpp 661 RegisterInfo *newInfo = getRegInfo(cUnit, newReg);
663 *newInfo = *oldInfo;
664 newInfo->reg = newReg;
  /dalvik/vm/compiler/codegen/mips/
RallocUtil.cpp 733 RegisterInfo *newInfo = getRegInfo(cUnit, newReg);
735 *newInfo = *oldInfo;
736 newInfo->reg = newReg;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMPatchSupport.cpp 109 OwnPtr<Digest> newInfo = createDigest(newDocument->documentElement(), &m_unusedNodesMap);
111 if (!innerPatchNode(oldInfo.get(), newInfo.get(), IGNORE_EXCEPTION)) {
  /frameworks/base/services/java/com/android/server/
WallpaperManagerService.java     [all...]
  /packages/services/Telephony/src/com/android/phone/
CallFeaturesSetting.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 
  /frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java     [all...]

Completed in 642 milliseconds

1 2