HomeSort by relevance Sort by last modified time
    Searched refs:newInfo (Results 1 - 25 of 32) 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);
  /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...]
  /frameworks/base/core/java/android/view/
Display.java 569 DisplayInfo newInfo = mGlobal.getDisplayInfo(mDisplayId);
570 if (newInfo == null) {
580 mDisplayInfo = newInfo;
  /external/llvm/utils/TableGen/
X86DisassemblerTables.cpp 663 InstructionSpecifier &newInfo =
668 if(newInfo.filtered)
671 if(previousInfo.name == "NOOP" && (newInfo.name == "XCHG16ar" ||
672 newInfo.name == "XCHG32ar" ||
673 newInfo.name == "XCHG32ar64" ||
674 newInfo.name == "XCHG64ar"))
677 if (outranks(previousInfo.insnContext, newInfo.insnContext))
680 if (previousInfo.insnContext == newInfo.insnContext &&
683 errs() << newInfo.name << " would overwrite " << previousInfo.name;
687 errs() << "Context " << stringForContext(newInfo.insnContext) << "\n"
    [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;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
UpdateHandler.java     [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtils.java 696 final CharGroupInfo newInfo = new CharGroupInfo(newGroupOrigin, newGroupOrigin + size,
700 moveCharGroup(destination, buffer, newInfo, oldNodeOrigin, oldGroupOrigin, formatOptions);
    [all...]
  /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;
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp     [all...]
  /dalvik/vm/compiler/codegen/mips/
RallocUtil.cpp 733 RegisterInfo *newInfo = getRegInfo(cUnit, newReg);
735 *newInfo = *oldInfo;
736 newInfo->reg = newReg;
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageViewFragmentBase.java     [all...]
  /frameworks/base/services/java/com/android/server/
WallpaperManagerService.java     [all...]
  /packages/apps/Phone/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 

Completed in 1474 milliseconds

1 2