HomeSort by relevance Sort by last modified time
    Searched full:newdata (Results 76 - 100 of 320) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/selinux/libsepol/src/
genusers.c 293 const char *usersdir, void **newdata, size_t * newlen)
310 if (policydb_to_image(NULL, &policydb, newdata, newlen) < 0)
  /external/v8/src/
list.h 171 data_ = (capacity > 0) ? NewData(capacity, allocator) : NULL;
181 INLINE(T* NewData(int n, AllocationPolicy allocator)) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterDeleteSet.java 147 boolean newData = mBaseSet.reload() > mDataVersion;
149 if (!newData && mRequests.isEmpty()) {
  /external/lzma/CPP/7zip/Archive/7z/
7zHandlerOut.cpp 282 Int32 newData, newProps;
286 RINOK(updateCallback->GetUpdateItemInfo(i, &newData, &newProps, &indexInArchive));
289 ui.NewData = IntToBool(newData);
495 if (ui.NewData)
7zUpdate.cpp 817 if (updateIndex >= 0 && !updateItems[updateIndex].NewData)
855 if (ui.NewData)
900 if (!ui.NewData || !ui.HasStream())
993 if (ui.NewData)
1105 if (updateIndex >= 0 && !updateItems[updateIndex].NewData)
1164 if (ui.NewData)
    [all...]
  /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/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-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/icu/icu4c/source/data/
cldr-icu-readme.txt 189 make check 2>&1 | tee /tmp/icu4c-newData-makeCheck.txt
208 make check 2>&1 | tee /tmp/icu4c-newData-makeCheckEx.txt
230 ant check 2>&1 | tee /tmp/icu4j-newData-antCheck.txt
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
JsonReader.rl 48 char[] newData = new char[data.length * 2];
49 System.arraycopy(data, 0, newData, 0, data.length);
50 data = newData;
  /frameworks/base/core/java/android/text/
SpannableStringInternal.java 198 int[] newdata = new int[newtags.length * 3]; local
201 System.arraycopy(mSpanData, 0, newdata, 0, mSpanCount * 3);
204 mSpanData = 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;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
binhex.py 302 newdata = self.ifp.read(1)
303 if not newdata:
306 data = data + newdata
  /prebuilts/gdb/linux-x86/lib/python2.7/
binhex.py 302 newdata = self.ifp.read(1)
303 if not newdata:
306 data = data + newdata
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
binhex.py 302 newdata = self.ifp.read(1)
303 if not newdata:
306 data = data + newdata
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
binhex.py 302 newdata = self.ifp.read(1)
303 if not newdata:
306 data = data + newdata
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
ScopedDirectoryAccessClientTest.java 149 final Intent newData = assertActivitySucceeded("should have already granted "
151 assertEquals(grantedUri, newData.getData());
  /external/liblzf/cs/
CLZF.cs 106 public UInt32 crc32(UInt32 OldCRC,byte NewData)
108 return crc_32_tab[(OldCRC & 0xff) ^ NewData] ^ (OldCRC >> 8);
  /external/liblzf/src/org/liblzf/
CLZF.java 106 public int crc32(int OldCRC,byte NewData)
108 return crc_32_tab[(OldCRC & 0xff) ^ NewData] ^ (OldCRC >> 8);
  /external/chromium-trace/catapult/third_party/flot/
jquery.flot.pie.min.js 7 (function($){var REDRAW_ATTEMPTS=10;var REDRAW_SHRINK=.95;function init(plot){var canvas=null,target=null,options=null,maxRadius=null,centerLeft=null,centerTop=null,processed=false,ctx=null;var highlights=[];plot.hooks.processOptions.push(function(plot,options){if(options.series.pie.show){options.grid.show=false;if(options.series.pie.label.show=="auto"){if(options.legend.show){options.series.pie.label.show=false}else{options.series.pie.label.show=true}}if(options.series.pie.radius=="auto"){if(options.series.pie.label.show){options.series.pie.radius=3/4}else{options.series.pie.radius=1}}if(options.series.pie.tilt>1){options.series.pie.tilt=1}else if(options.series.pie.tilt<0){options.series.pie.tilt=0}}});plot.hooks.bindEvents.push(function(plot,eventHolder){var options=plot.getOptions();if(options.series.pie.show){if(options.grid.hoverable){eventHolder.unbind("mousemove").mousemove(onMouseMove)}if(options.grid.clickable){eventHolder.unbind("click").click(onClick)}}});plot.hooks.processDatapoints.push(function(plot,series,data,datapoints){var options=plot.getOptions();if(options.series.pie.show){processDatapoints(plot,series,data,datapoints)}});plot.hooks.drawOverlay.push(function(plot,octx){var options=plot.getOptions();if(options.series.pie.show){drawOverlay(plot,octx)}});plot.hooks.draw.push(function(plot,newCtx){var options=plot.getOptions();if(options.series.pie.show){draw(plot,newCtx)}});function processDatapoints(plot,series,datapoints){if(!processed){processed=true;canvas=plot.getCanvas();target=$(canvas).parent();options=plot.getOptions();plot.setData(combine(plot.getData()))}}function combine(data){var total=0,combined=0,numCombined=0,color=options.series.pie.combine.color,newdata=[];for(var i=0;i<data.length;++i){var value=data[i].data;if($.isArray(value)&&value.length==1){value=value[0]}if($.isArray(value)){if(!isNaN(parseFloat(value[1]))&&isFinite(value[1])){value[1]=+value[1]}else{value[1]=0}}else if(!isNaN(parseFloat(value))&&isFinite(value)){value=[1,+value]}else{value=[1,0]}data[i].data=[value]}for(var i=0;i<data.length;++i){total+=data[i].data[0][1]}for(var i=0;i<data.length;++i){var value=data[i].data[0][1];if(value/total<=options.series.pie.combine.threshold){combined+=value;numCombined++;if(!color){color=data[i].color}}}for(var i=0;i<data.length;++i){var value=data[i].data[0][1];if(numCombined<2||value/total>options.series.pie.combine.threshold){newdata.push($.extend(data[i],{data:[[1,value]],color:data[i].color,label:data[i].label,angle:value*Math.PI*2/total,percent:value/(total/100)}))}}if(numCombined>1){newdata.push({data:[[1,combined]],color:color,label:options.series.pie.combine.label,angle:combined*Math.PI*2/total,percent:combined/(total/100)})}return newdata}function draw(plot,newCtx){if(!target){return}var canvasWidth=plot.getPlaceholder().width(),canvas (…)
  /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 496 Int32 *newData, Int32 *newProperties, UInt32 *indexInArchive);
553 Int32 *newData, Int32 *newProperties, UInt32 *indexInArchive)
555 if (newData != NULL)
556 *newData = BoolToInt(true);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdatasetdatanomodificationallowederr.java 92 ((CharacterData) /*Node */entElementContent).setData("newData");
characterdatasetdatanomodificationallowederrEE.java 77 ((CharacterData) /*Node */entText).setData("newData");

Completed in 382 milliseconds

1 2 34 5 6 7 8 91011>>