HomeSort by relevance Sort by last modified time
    Searched refs:newData (Results 26 - 50 of 168) sorted by null

12 3 4 5 6 7

  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ByteVector.java 289 byte[] newData = new byte[length1 > length2 ? length1 : length2];
290 System.arraycopy(data, 0, newData, 0, length);
291 data = newData;
  /external/fonttools/Lib/fontTools/ttLib/tables/
G_P_K_G_.py 23 dummy, newData = sstruct.unpack2(GPKGFormat, data, self)
27 GMAPoffsets.fromstring(newData[:endPos])
38 glyphletOffsets.fromstring(newData[pos:endPos])
  /external/lzma/CPP/7zip/UI/Common/
UpdateCallback.cpp 71 Int32 *newData, Int32 *newProps, UInt32 *indexInArchive)
76 if (newData != NULL) *newData = BoolToInt(up.NewData);
162 if (!up.NewData)
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
AttributesImpl.java 596 String newData[] = new String[max];
598 System.arraycopy(data, 0, newData, 0, length*5);
600 data = newData;
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributesImpl.java 588 String newData[] = new String[max];
590 System.arraycopy(data, 0, newData, 0, length*5);
592 data = newData;
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArrayAnnotatedOutput.java 545 byte[] newData = new byte[desiredSize * 2 + 1000];
546 System.arraycopy(data, 0, newData, 0, cursor);
547 data = newData;
  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 541 byte[] newData = new byte[desiredSize * 2 + 1000];
542 System.arraycopy(data, 0, newData, 0, cursor);
543 data = newData;
  /external/chromium_org/third_party/skia/tools/
PictureResultsWriter.h 209 Json::Value newData = data->getJSON(timerTypes, result, numInnerLoops);
216 for(Json::ValueIterator iter = newData.begin(); iter != newData.end();
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayAnnotatedOutput.java 538 byte[] newData = new byte[desiredSize * 2 + 1000];
539 System.arraycopy(data, 0, newData, 0, cursor);
540 data = newData;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
Utils.java 221 ImageData newData = new ImageData(width, data.height, 8, palette);
223 newData.transparentPixel = rgbs.length - 1;
236 newData.setPixels(0, y, width, pixels, 0);
238 return newData;
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderWMV.cpp 532 uint8_t *newData = NULL;
534 status = updateConfigData(data, size, &newData, &newSize);
538 status = VideoDecoderBase::parseBuffer(newData, newSize, true, (void**)vbpData);
539 delete [] newData;
  /packages/apps/Camera2/src/com/android/camera/data/
CameraDataAdapter.java 178 public boolean addData(LocalData newData) {
179 final Uri uri = newData.getUri();
184 updateData(pos, newData);
188 insertData(newData);
  /sdk/dumpeventlog/src/com/android/dumpeventlog/
DumpEventLog.java 50 public void newData(byte[] data, int offset, int length) {
  /external/chromium_org/remoting/webapp/
xmpp_stream_parser.js 78 var newData = new Uint8Array(this.data_.byteLength + data.byteLength);
79 newData.set(new Uint8Array(this.data_), 0);
80 newData.set(new Uint8Array(data), this.data_.byteLength);
81 this.data_ = newData.buffer;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CharacterData.cpp 173 void CharacterData::setDataAndUpdate(const String& newData, unsigned offsetOfReplacedData, unsigned oldLength, unsigned newLength, RecalcStyleBehavior recalcStyleBehavior)
176 m_data = newData;
  /external/chromium_org/third_party/angle/tests/angle_tests/
BufferDataTest.cpp 316 unsigned char newData[] = { 0, 255, 0 };
317 glBufferSubData(GL_ARRAY_BUFFER, 3, 3, newData);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterDeleteSet.java 147 boolean newData = mBaseSet.reload() > mDataVersion;
149 if (!newData && mRequests.isEmpty()) {
  /libcore/luni/src/main/java/java/util/
IdentityHashMap.java 511 Object[] newData = newElementArray(newlength);
516 int index = findIndex(key, newData);
517 newData[index] = key;
518 newData[index + 1] = elementData[i + 1];
521 elementData = newData;
WeakHashMap.java 626 Entry<K, V>[] newData = newEntryArray(length);
633 entry.next = newData[index];
634 newData[index] = entry;
638 elementData = newData;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 312 byte[] newData = new byte[destBytesPerLine * srcData.width];
319 System.arraycopy(srcData.data, srcIndex, newData, destIndex, bytesPerPixel);
327 newData);
  /external/lzma/CPP/7zip/Archive/7z/
7zHandlerOut.cpp 211 Int32 newData, newProps;
215 RINOK(updateCallback->GetUpdateItemInfo(i, &newData, &newProps, &indexInArchive));
218 ui.NewData = IntToBool(newData);
315 if (ui.NewData)
  /external/chromium_org/third_party/icu/source/i18n/
ucol_cnt.cpp 31 uint32_t *newData = (uint32_t *)uprv_realloc(tbl->CEs, 2*tbl->size*sizeof(uint32_t));
32 if(newData == NULL) {
38 uprv_free(newData);
42 tbl->CEs = newData;
  /external/javassist/src/main/javassist/bytecode/
StackMapTable.java 417 int[] newData = new int[data.length];
420 newData[i] = srcPool.copy(data[i], destPool, null);
422 newData[i] = data[i];
424 return newData;
  /external/lzma/CPP/7zip/UI/Client7z/
Client7z.cpp 447 Int32 *newData, Int32 *newProperties, UInt32 *indexInArchive);
504 Int32 *newData, Int32 *newProperties, UInt32 *indexInArchive)
506 if (newData != NULL)
507 *newData = BoolToInt(true);
  /frameworks/base/libs/hwui/
RenderNode.h 107 ANDROID_API void setStagingDisplayList(DisplayListData* newData);

Completed in 2731 milliseconds

12 3 4 5 6 7