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

1 2 3

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
IntArray.java 82 int[] newData = new int[newSize];
83 System.arraycopy(data, 0, newData, 0, data.length);
84 data = newData;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
IntArray.m 82 int[] newData = new int[newSize];
83 System.arraycopy(data, 0, newData, 0, data.length);
84 data = newData;
IntArray.h 82 int[] newData = new int[newSize];
83 System.arraycopy(data, 0, newData, 0, data.length);
84 data = newData;
  /external/fonttools/Lib/fontTools/ttLib/tables/
M_E_T_A_.py 76 dummy, newData = sstruct.unpack2(METAHeaderFormat, data, self)
79 glyphRecord, newData = sstruct.unpack2(METAGlyphRecordFormat, newData, GlyphRecord())
81 [glyphRecord.offset] = struct.unpack(">H", newData[:2])
82 newData = newData[2:]
84 [glyphRecord.offset] = struct.unpack(">H", newData[:4])
85 newData = newData[4:]
89 newData = data[glyphRecord.offset:
    [all...]
D_S_I_G_.py 45 dummy, newData = sstruct.unpack2(DSIG_HeaderFormat, data, self)
50 sigrec, newData = sstruct.unpack2(DSIG_SignatureFormat, newData, SignatureRecord())
54 dummy, newData = sstruct.unpack2(DSIG_SignatureBlockFormat, data[sigrec.ulOffset:], sigrec)
57 sigrec.pkcs7 = newData[:sigrec.cbSignature]
G_M_A_P_.py 81 dummy, newData = sstruct.unpack2(GMAPFormat, data, self)
82 self.psFontName = tostr(newData[:self.fontNameLength])
84 newData = data[self.recordsOffset:]
87 gmapRecord, newData = sstruct.unpack2(GMAPRecordFormat1, newData, GMAPRecord())
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/javassist/src/main/javassist/bytecode/
InnerClassesAttribute.java 184 byte[] newData = new byte[len + 8];
186 newData[i] = data[i];
189 ByteArray.write16bit(n + 1, newData, 0);
191 ByteArray.write16bit(inner, newData, len);
192 ByteArray.write16bit(outer, newData, len + 2);
193 ByteArray.write16bit(name, newData, len + 4);
194 ByteArray.write16bit(flags, newData, len + 6);
196 set(newData);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCString.cpp 65 char* newData;
67 WTF::CString::newUninitialized(length, newData).buffer();
68 memcpy(newData, data, length);
  /external/chromium_org/third_party/icu/source/test/perf/usetperf/
bitset.cpp 53 int32_t* newData = (int32_t*) uprv_malloc(newLen * BYTES_PER_WORD);
54 uprv_memcpy(newData, data, len * BYTES_PER_WORD);
56 data = newData;
  /external/icu/icu4c/source/test/perf/usetperf/
bitset.cpp 53 int32_t* newData = (int32_t*) uprv_malloc(newLen * BYTES_PER_WORD);
54 uprv_memcpy(newData, data, len * BYTES_PER_WORD);
56 data = newData;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
BitArray.java 95 long[] newData = new long[size];
97 System.arraycopy(data, 0, newData, 0, data.length);
99 data = newData;
141 long[] newData = new long[data.length + arrayShift];
142 System.arraycopy(data, 0, newData, arrayShift, data.length);
143 data = newData;
  /external/chromium_org/third_party/skia/gm/
etc1bitmap.cpp 51 etc1_byte *newData = reinterpret_cast<etc1_byte *>(am.get());
53 etc1_pkm_format_header(newData, newWidth, newHeight);
54 newData += ETC_PKM_HEADER_SIZE;
58 memcpy(newData, origData, (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE);
60 newData += (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE;
  /external/chromium_org/third_party/skia/bench/
ETCBitmapBench.cpp 52 etc1_byte* newData = reinterpret_cast<etc1_byte *>(
54 etc1_pkm_format_header(newData, newWidth, newHeight);
56 etc1_byte* copyInto = newData;
73 return newData;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ContentData.cpp 61 OwnPtr<ContentData> newData = contentData->cloneInternal();
62 lastNewData->setNext(newData.release());
  /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/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)
  /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;
  /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);

Completed in 576 milliseconds

1 2 3