| /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
| ExceptionExtensions.cs | 52 Array stackTrace = new StackTrace(true).GetFrames(); 53 Array.Copy(stackTrace, 1, frames, 0, stackTrace.Length);
|
| /external/capstone/bindings/ocaml/ |
| test_mips.ml | 11 for i = 0 to (Array.length str - 1) do 44 if (Array.length mips.operands) > 0 then ( 45 printf "\top_count: %d\n" (Array.length mips.operands); 46 Array.iteri (print_op handle) mips.operands;
|
| test_xcore.ml | 11 for i = 0 to (Array.length str - 1) do 47 if (Array.length xcore.operands) > 0 then ( 48 printf "\top_count: %d\n" (Array.length xcore.operands); 49 Array.iteri (print_op handle) xcore.operands;
|
| /external/libchrome/base/memory/ |
| ptr_util.h | 15 // std::unique_ptr<T[]>: do not use this helper for array allocations. 30 using Array = std::unique_ptr<T[]>; 53 // Overload for non-array types. Arguments are forwarded to T's constructor. 59 // Overload for array types of unknown bound, e.g. T[]. The array is allocated 63 typename internal::MakeUniqueResult<T>::Array MakeUnique(size_t size) { 67 // Overload to reject array types of known bound, e.g. T[n].
|
| /external/pdfium/third_party/base/ |
| ptr_util.h | 15 // std::unique_ptr<T[]>: do not use this helper for array allocations. 30 using Array = std::unique_ptr<T[]>; 53 // Overload for non-array types. Arguments are forwarded to T's constructor. 59 // Overload for array types of unknown bound, e.g. T[]. The array is allocated 63 typename internal::MakeUniqueResult<T>::Array MakeUnique(size_t size) { 67 // Overload to reject array types of known bound, e.g. T[n].
|
| /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/ |
| lstm_utils.h | 57 // Create optional array used for optional tensor in ExtendedLstmCell inputs. 61 // Create float array and get its buffer. 66 // Copy data from one array to the other one (supports 1D and 2D array), 67 // for 1D array, the 2nd dim's size is 1. 85 // Copy a subset of array data and create a smaller array, 89 int dim2_size, const Array& original_array, 92 // Copy array data to a large array's submatrix [all...] |
| /external/v8/src/inspector/ |
| v8-debugger-agent-impl.h | 53 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) 65 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*) 70 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) 75 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames, 81 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>* 105 std::unique_ptr<protocol::Array<String16>> patterns) override; 108 std::unique_ptr<protocol::Array<protocol::Debugger::ScriptPosition>> 152 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>*);
|
| v8-profiler-agent-impl.h | 43 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>* 46 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>*
|
| v8-profiler-agent-impl.cc | 30 std::unique_ptr<protocol::Array<protocol::Profiler::PositionTickInfo>> 34 auto array = protocol::Array<protocol::Profiler::PositionTickInfo>::create(); 43 array->addItem(std::move(line)); 46 return array; 68 auto children = protocol::Array<int>::create(); 84 std::unique_ptr<protocol::Array<int>> buildInspectorObjectForSamples( 86 auto array = protocol::Array<int>::create(); local 89 array->addItem(v8profile->GetSample(i)->GetNodeId()) 95 auto array = protocol::Array<int>::create(); local [all...] |
| /external/webrtc/webrtc/system_wrappers/include/ |
| aligned_array.h | 42 T* const* Array() { 46 const T* const* Array() const {
|
| /frameworks/base/core/java/com/android/internal/util/ |
| RingBuffer.java | 21 import java.lang.reflect.Array; 25 * A simple ring buffer structure with bounded capacity backed by an array. 32 // Array for storing events. 34 // Cursor keeping track of the logical end of the array. This cursor never 41 mBuffer = (T[]) Array.newInstance(c, capacity);
|
| /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
| FloatArrayToSizeFilter.java | 16 // Takes in an array, returns the size of the array 28 import java.lang.reflect.Array; 45 FrameType floatType = FrameType.array(float.class); 48 .addInputPort("array", Signature.PORT_REQUIRED, floatType) 58 FrameValue arrayFrame = getConnectedInputPort("array").pullFrame().asFrameValues(); 59 Object array = arrayFrame.getValue(); local 60 int size = Array.getLength(array);
|
| /frameworks/support/core/ktx/src/main/java/androidx/core/os/ |
| Bundle.kt | 63 is Array<*> -> { 68 putParcelableArray(key, value as Array<Parcelable>) 71 putStringArray(key, value as Array<String>) 74 putCharSequenceArray(key, value as Array<CharSequence>) 82 "Illegal value array type $valueType for key \"$key\"") 87 // Last resort. Also we must check this after Array<*> as all arrays are serializable.
|
| /libcore/luni/src/main/java/libcore/reflect/ |
| InternalNames.java | 19 import java.lang.reflect.Array; 31 return Array.newInstance(componentClass, 0).getClass();
|
| /prebuilts/jdk/jdk8/darwin-x86/sample/scripting/scriptpad/src/scripts/ |
| insertfile.js | 53 var arr = java.lang.reflect.Array.newInstance(
|
| /prebuilts/jdk/jdk8/linux-x86/sample/scripting/scriptpad/src/scripts/ |
| insertfile.js | 53 var arr = java.lang.reflect.Array.newInstance(
|
| /art/test/656-checker-simd-opt/src/ |
| Main.java | 16 import java.lang.reflect.Array; 73 Array.newInstance(int.class, 1).getClass(), 74 Array.newInstance(int.class, 1).getClass(), 86 Array.newInstance(int.class, 1).getClass(), 87 Array.newInstance(int.class, 1).getClass(),
|
| /external/tensorflow/tensorflow/compiler/xla/ |
| array4d.h | 29 #include "tensorflow/compiler/xla/array.h" 42 // Simple 4D array structure, similar in form to Array2D, for use primarily in 43 // testing and describing to XLA APIs values in the 4D array structures used 57 class Array4D : public Array<T> { 59 // Creates a 4D array, uninitialized values. 61 : Array<T>(std::vector<int64>{planes, depth, height, width}) {} 63 // Creates a 4D array, initialized to value. 65 : Array<T>(std::vector<int64>{planes, depth, height, width}, value) {} 67 // Creates a 4D array, filled with values. 83 : Array<T>(values) { [all...] |
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/ |
| ItsSerializer.java | 46 import java.lang.reflect.Array; 141 for (int fi = 0; fi < Array.getLength(fmts); fi++) { 144 for (int si = 0; si < Array.getLength(sizes); si++) { 157 for (int si = 0; si < Array.getLength(sizes); si++) { 381 int arrayLen = Array.getLength(keyValue); 389 jsonArray.put(serializeRational((Rational)Array.get(keyValue,i))); 395 jsonArray.put(serializeSize((Size)Array.get(keyValue,i))); 401 jsonArray.put(serializeRect((Rect)Array.get(keyValue,i))); 407 jsonArray.put(serializeFace((Face)Array.get(keyValue, i))); 414 (StreamConfigurationMap)Array.get(keyValue,i))) [all...] |
| /external/mesa3d/src/mesa/main/ |
| varray.c | 138 struct gl_array_attributes *array = &vao->VertexAttrib[attribIndex]; local 145 if (array->BufferBindingIndex != bindingIndex) { 150 vao->BufferBinding[array->BufferBindingIndex]._BoundArrays &= ~array_bit; 153 array->BufferBindingIndex = bindingIndex; 265 * \param attrib The index of the attribute array 285 struct gl_array_attributes *const array = &vao->VertexAttrib[attrib]; local 297 array->Size = size; 298 array->Type = type; 299 array->Format = format; 300 array->Normalized = normalized 476 struct gl_array_attributes *array; local 915 const struct gl_array_attributes *array; local 2379 const struct gl_array_attributes *array = &vao->VertexAttrib[i]; local [all...] |
| /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
| BaseTree.as | 36 protected var _children:Array; 55 public function get children():Array { 80 * t.children = child.children; i.e., without copying the array. 113 _children = new Array(); // create children list on demand 122 public function addChildren(kids:Array):void { 137 _children = new Array(); 166 var newChildren:Array = null; 172 newChildren = new Array(); 282 public function get ancestors():Array { 284 var ancestors:Array = new Array() [all...] |
| /external/libmojo/mojo/public/cpp/bindings/tests/ |
| serialization_warning_unittest.cc | 11 #include "mojo/public/cpp/bindings/array.h" 28 // Creates an array of arrays of handles (2 X 3) for testing. 29 Array<Array<ScopedHandle>> CreateTestNestedHandleArray() { 30 Array<Array<ScopedHandle>> array(2); 31 for (size_t i = 0; i < array.size(); ++i) { 32 Array<ScopedHandle> nested_array(3); 37 array[i] = std::move(nested_array) [all...] |
| wtf_types_unittest.cc | 114 size_t size = mojo::internal::PrepareToSerialize<Array<mojo::String>>( 118 typename mojo::internal::MojomTypeTraits<Array<mojo::String>>::Data* data; 121 mojo::internal::Serialize<Array<mojo::String>>(cloned_strs, &buf, &data, 125 mojo::internal::Deserialize<Array<mojo::String>>(data, &strs2, &context); 135 size_t size = mojo::internal::PrepareToSerialize<Array<mojo::String>>( 139 typename mojo::internal::MojomTypeTraits<Array<mojo::String>>::Data* data; 142 mojo::internal::Serialize<Array<mojo::String>>(cloned_strs, &buf, &data, 146 mojo::internal::Deserialize<Array<mojo::String>>(data, &strs2, &context); 156 mojo::internal::PrepareToSerialize<Array<mojo::String>>(strs, &context); 159 typename mojo::internal::MojomTypeTraits<Array<mojo::String>>::Data* data [all...] |
| /external/trappy/trappy/plotter/js/ |
| ILinePlot.js | 19 var graphs = new Array(); 20 var syncObjs = new Array(); 32 var syncGraphs = Array(); 86 var _decoy_elem = new Array(graph.rawData_[0].length); 93 var _decoy_elem = new Array(graph.rawData_[0].length);
|
| /external/pdfium/fxjs/ |
| cjs_v8.cpp | 38 v8::Local<v8::Array> val; 61 v8::Local<v8::Array> CJS_V8::NewArray() { 62 return v8::Array::New(m_isolate); 65 unsigned CJS_V8::PutArrayElement(v8::Local<v8::Array> pArray, 75 v8::Local<v8::Value> CJS_V8::GetArrayElement(v8::Local<v8::Array> pArray, 85 unsigned CJS_V8::GetArrayLength(v8::Local<v8::Array> pArray) { 202 v8::Local<v8::Array> CJS_V8::ToArray(v8::Local<v8::Value> pValue) { 204 return v8::Local<v8::Array>(); 206 return v8::Local<v8::Array>::Cast(pValue->ToObject(context).ToLocalChecked()); 209 void CJS_V8::SetConstArray(const WideString& name, v8::Local<v8::Array> array) [all...] |