/external/llvm/lib/Bitcode/Writer/ |
BitcodeWriter.cpp | 358 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 367 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 375 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 383 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array)); 474 // ARRAY: [numelts, eltty] [all...] |
/art/runtime/ |
java_vm_ext.h | 30 class Array;
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
TreeParser.as | 129 public override function getErrorMessage(e:RecognitionException, tokenNames:Array):String {
|
/external/autotest/client/site_tests/platform_CrosDisksDBus/ |
platform_CrosDisksDBus.py | 39 ('DeviceMountPaths', dbus.Array),
|
/external/chromium-trace/catapult/third_party/flot/ |
jquery.flot.threshold.js | 22 An array can be passed for multiple thresholding, like this: 119 if (s.threshold instanceof Array) {
|
jquery.flot.threshold.min.js | 7 (function($){var options={series:{threshold:null}};function init(plot){function thresholdData(plot,s,datapoints,below,color){var ps=datapoints.pointsize,i,x,y,p,prevp,thresholded=$.extend({},s);thresholded.datapoints={points:[],pointsize:ps,format:datapoints.format};thresholded.label=null;thresholded.color=color;thresholded.threshold=null;thresholded.originSeries=s;thresholded.data=[];var origpoints=datapoints.points,addCrossingPoints=s.lines.show;var threspoints=[];var newpoints=[];var m;for(i=0;i<origpoints.length;i+=ps){x=origpoints[i];y=origpoints[i+1];prevp=p;if(y<below)p=threspoints;else p=newpoints;if(addCrossingPoints&&prevp!=p&&x!=null&&i>0&&origpoints[i-ps]!=null){var interx=x+(below-y)*(x-origpoints[i-ps])/(y-origpoints[i-ps+1]);prevp.push(interx);prevp.push(below);for(m=2;m<ps;++m)prevp.push(origpoints[i+m]);p.push(null);p.push(null);for(m=2;m<ps;++m)p.push(origpoints[i+m]);p.push(interx);p.push(below);for(m=2;m<ps;++m)p.push(origpoints[i+m])}p.push(x);p.push(y);for(m=2;m<ps;++m)p.push(origpoints[i+m])}datapoints.points=newpoints;thresholded.datapoints.points=threspoints;if(thresholded.datapoints.points.length>0){var origIndex=$.inArray(s,plot.getData());plot.getData().splice(origIndex+1,0,thresholded)}}function processThresholds(plot,s,datapoints){if(!s.threshold)return;if(s.threshold instanceof Array){s.threshold.sort(function(a,b){return a.below-b.below});$(s.threshold).each(function(i,th){thresh (…)
|
/external/eigen/bench/btl/libs/blitz/ |
blitz_LU_solve_interface.hh | 23 #include "blitz/array.h" 37 typedef blitz::Array<int,1> Pivot_Vector;
|
/external/eigen/bench/btl/libs/gmm/ |
gmm_LU_solve_interface.hh | 23 #include "blitz/array.h" 37 typedef blitz::Array<int,1> Pivot_Vector;
|
/external/eigen/bench/btl/libs/mtl4/ |
mtl4_LU_solve_interface.hh | 23 #include "blitz/array.h" 37 typedef blitz::Array<int,1> Pivot_Vector;
|
/external/eigen/lapack/ |
clarf.f | 28 * .. Array Arguments .. 76 *> V is COMPLEX array, dimension 97 *> C is COMPLEX array, dimension (LDC,N) 106 *> The leading dimension of the array C. LDC >= max(1,M). 111 *> WORK is COMPLEX array, dimension 141 * .. Array Arguments ..
|
clarfg.f | 27 * .. Array Arguments .. 76 *> X is COMPLEX array, dimension 118 * .. Array Arguments ..
|
dlarf.f | 28 * .. Array Arguments .. 72 *> V is DOUBLE PRECISION array, dimension 93 *> C is DOUBLE PRECISION array, dimension (LDC,N) 102 *> The leading dimension of the array C. LDC >= max(1,M). 107 *> WORK is DOUBLE PRECISION array, dimension 137 * .. Array Arguments ..
|
dlarfg.f | 27 * .. Array Arguments .. 76 *> X is DOUBLE PRECISION array, dimension 118 * .. Array Arguments ..
|
slarf.f | 28 * .. Array Arguments .. 72 *> V is REAL array, dimension 93 *> C is REAL array, dimension (LDC,N) 102 *> The leading dimension of the array C. LDC >= max(1,M). 107 *> WORK is REAL array, dimension 137 * .. Array Arguments ..
|
zlarf.f | 28 * .. Array Arguments .. 76 *> V is COMPLEX*16 array, dimension 97 *> C is COMPLEX*16 array, dimension (LDC,N) 106 *> The leading dimension of the array C. LDC >= max(1,M). 111 *> WORK is COMPLEX*16 array, dimension 141 * .. Array Arguments ..
|
zlarfg.f | 27 * .. Array Arguments .. 76 *> X is COMPLEX*16 array, dimension 118 * .. Array Arguments ..
|
/external/eigen/test/ |
geo_eulerangles.cpp | 63 typedef Array<Scalar,3,1> Array3;
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
parser.ml | 42 Ast.Call (id, Array.of_list (List.rev args)) 140 Ast.Prototype (id, Array.of_list (List.rev args))
|
/external/mesa3d/src/mesa/main/ |
nvprogram.c | 352 * Get a vertex (or vertex array) attribute. 359 const struct gl_client_array *array; local 368 array = &ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_GENERIC(index)]; 372 params[0] = array->Size; 375 params[0] = array->Stride; 378 params[0] = array->Type; 396 * Get a vertex (or vertex array) attribute. 403 const struct gl_client_array *array; local 412 array = &ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_GENERIC(index)] 447 const struct gl_client_array *array; local [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_atom.c | 131 const struct gl_client_array **arrays = st->ctx->Array._DrawArrays;
|
/external/mesa3d/src/mesa/vbo/ |
vbo_primitive_restart.c | 74 * Scan the elements array to find restart indexes. Return an array 174 GLuint restart_index = ctx->Array.RestartIndex;
|
/external/mockito/src/org/mockito/internal/util/collections/ |
HashCodeAndEqualsSafeSet.java | 15 import static java.lang.reflect.Array.*; 98 private <T> T[] unwrapTo(T[] array) { 100 for (int i = 0, objectsLength = array.length; i < objectsLength; i++) { 102 array[i] = (T) iterator.next(); 105 return array; 110 T[] array = typedArray.length >= size() ? typedArray : local 112 return unwrapTo(array);
|
/external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/ |
Direct3DInterop.cpp | 145 void Direct3DInterop::CreateTexture(const Platform::Array<int>^ buffer,int width,int height, OCVFilterType filter)
|
/external/v8/src/js/ |
runtime.js | 20 var GlobalArray = global.Array; 163 // NOTE: Setting the prototype for Array must take place as early as 164 // possible due to code generation for array literals. When 165 // generating code for a array literal a boilerplate array is created
|
/external/v8/test/cctest/ |
test-api-interceptors.cc | 305 const v8::PropertyCallbackInfo<v8::Array>& info) { 315 const v8::PropertyCallbackInfo<v8::Array>& info) { [all...] |