HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 176 - 200 of 1046) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/v8/src/inspector/
v8-debugger-agent-impl.h 60 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations)
72 std::unique_ptr<protocol::Array<protocol::Debugger::SearchMatch>>*)
77 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations)
82 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames,
88 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>*
112 std::unique_ptr<protocol::Array<String16>> patterns) override;
115 std::unique_ptr<protocol::Array<protocol::Debugger::ScriptPosition>>
157 std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>*);
v8-profiler-agent-impl.cc 29 std::unique_ptr<protocol::Array<protocol::Profiler::PositionTickInfo>>
33 auto array = protocol::Array<protocol::Profiler::PositionTickInfo>::create();
42 array->addItem(std::move(line));
45 return array;
67 auto children = protocol::Array<int>::create();
83 std::unique_ptr<protocol::Array<int>> buildInspectorObjectForSamples(
85 auto array = protocol::Array<int>::create(); local
88 array->addItem(v8profile->GetSample(i)->GetNodeId())
94 auto array = protocol::Array<int>::create(); local
    [all...]
v8-value-copier.cc 29 v8::Local<v8::Array> array = object.As<v8::Array>(); local
30 v8::Local<v8::Array> result = v8::Array::New(m_isolate, array->Length());
33 for (uint32_t i = 0; i < array->Length(); ++i) {
35 if (!array->Get(m_from, i).ToLocal(&item))
49 v8::Local<v8::Array> properties;
113 v8::Local<v8::Array> array = value.As<v8::Array>() local
    [all...]
v8-runtime-agent-impl.h 73 Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments,
82 std::unique_ptr<protocol::Array<protocol::Runtime::PropertyDescriptor>>*
84 Maybe<protocol::Array<protocol::Runtime::InternalPropertyDescriptor>>*
  /frameworks/base/core/java/android/text/
SpanSet.java 19 import java.lang.reflect.Array;
52 spans = (E[]) Array.newInstance(classType, length);
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
JavaTypeUtil.java 21 import java.lang.reflect.Array;
79 if (Array.class.isAssignableFrom(klass)) {
80 return ARRAY + getDescription(klass.getComponentType());
  /frameworks/support/v7/recyclerview/src/android/support/v7/util/
TileList.java 21 import java.lang.reflect.Array;
94 mItems = (T[]) Array.newInstance(klass, size);
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
ocaml.i 30 | C_array a -> Swig.C_array (Array.map (swig_val t) a)
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 202 relative_list = Array.new( reference_list.length, '..' )
230 class Array
232 # Pad an array with a given <tt>value</tt> upto a given <tt>length</tt>.
237 # to the beginning of the array.
246 Array.new( ( len+size ).abs,val ) + self
248 self + Array.new( len-size,val )
252 # Like #pad but changes the array in place.
263 replace Array.new( ( len+size ).abs,val ) + self
265 concat Array.new( len-size,val )
  /external/deqp/framework/common/
tcuFormatUtil.hpp 172 // Array formatters.
175 class Array
181 Array (const Iterator& begin_, const Iterator& end_) : begin(begin_), end(end_) {}
195 std::ostream& operator<< (std::ostream& str, const Array<Iterator>& fmt)
212 return str << Array<const T*>(fmt.arr, fmt.arr+fmt.size);
268 /** Format array contents. */
270 inline Format::Array<Iterator> formatArray (const Iterator& begin, const Iterator& end)
272 return Format::Array<Iterator>(begin, end);
275 /** Format array contents. */
282 /** Format array contents. *
    [all...]
  /frameworks/base/tools/aapt2/
ResourceValues_test.cpp 56 Array a;
60 Array b;
64 Array c;
67 Array d;
80 Array a;
84 std::unique_ptr<Array> b(a.Clone(&pool));
  /prebuilts/go/darwin-x86/test/
typeswitch.go 20 Array
59 case Array:
85 assert(x[3] == 3 && i == Array, "array")
  /prebuilts/go/linux-x86/test/
typeswitch.go 20 Array
59 case Array:
85 assert(x[3] == 3 && i == Array, "array")
  /external/mesa3d/src/mesa/vbo/
vbo_exec_array.c 73 check_buffers_are_unmapped(exec->array.inputs);
93 const GLboolean restart = ctx->Array.PrimitiveRestart;
94 const GLuint restartIndex = ctx->Array.RestartIndex;
220 * Check that element 'j' of the array has reasonable data.
225 check_array_data(struct gl_context *ctx, struct gl_client_array *array,
228 if (array->Enabled) {
229 const void *data = array->Ptr;
230 if (_mesa_is_bufferobj(array->BufferObj)) {
231 if (!array->BufferObj->Pointer) {
233 array->BufferObj->Pointer
    [all...]
vbo_rebase.c 132 const struct gl_client_array **saved_arrays = ctx->Array._DrawArrays;
212 /* Just need to adjust the pointer values on each incoming array.
230 ctx->Array._DrawArrays = tmp_array_pointers;
242 ctx->Array._DrawArrays = saved_arrays;
  /external/libmojo/mojo/public/cpp/bindings/tests/
type_conversion_unittest.cc 26 bool AreEqualRectArrays(const Array<test::RectPtr>& rects1,
27 const Array<test::RectPtr>& rects2) {
73 region->rects = Array<test::RectPtr>::From(input.rects).PassStorage();
158 Array<RectPtr> rects;
168 Array<RectPtr> rects(10);
178 Array<RectPtr> rects2 = Array<RectPtr>::From(redmond_rects);
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 60 case BitCodeAbbrevOp::Array:
81 case BitCodeAbbrevOp::Array:
119 if (Op.getEncoding() != BitCodeAbbrevOp::Array &&
125 if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
126 // Array case. Read the number of elements as a vbr6.
130 assert(i+2 == e && "array op not second to last?");
137 report_fatal_error("Array element type can't be an Array or a Blob");
196 if (CodeOp.getEncoding() == BitCodeAbbrevOp::Array ||
198 report_fatal_error("Abbreviation starts with an Array or a Blob")
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
stl_converters.h 13 #include "mojo/public/cpp/bindings/array.h"
18 // mojo::Array/Map/String and std::vector/map/string: mojo::UnwrapToSTLType()
21 // mojo::Array<mojo::Map<mojo::String, mojo::Array<int32_t>>> mojo_obj;
32 // converts null mojo::Array/Map/String to empty.
34 // above. For example, unwrapping mojo::Array<StructContainingMojoMap> will
59 struct UnwrapTraits<Array<T>> {
63 static Type Unwrap(Array<T> input) {
74 static Type Run(Array<T> input) {
86 static Type Run(Array<T> input) { return input.PassStorage();
    [all...]
  /external/swiftshader/src/Shader/
PixelProgram.hpp 70 Array<Int, 4> aL;
71 Array<Int, 4> increment;
72 Array<Int, 4> iteration;
76 Array<UInt, 16> callStack;
80 Array<Int4, 1 + 24> enableStack;
VertexProgram.hpp 42 Array<Int, 4> aL;
45 Array<Int, 4> increment;
46 Array<Int, 4> iteration;
50 Array<UInt, 16> callStack;
53 Array<Int4, 1 + 24> enableStack;
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
Host.c 38 // This array gets filled in with information from EFI_FIRMWARE_VOLUMES
40 // The number of array elements is allocated base on parsing
47 // Array that supports seperate memory rantes.
49 // The number of array elements is allocated base on parsing
89 Argv - Array of command line argument strings
90 Envp - Array of environmemt variable strings
176 // Allocate space for gSystemMemory Array
185 // Allocate space for gSystemMemory Array
903 Store the ModHandle in an array indexed by the Pdb File name.
923 IMAGE_CONTEXT_TO_MOD_HANDLE *Array;
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersChecker.cpp 47 void addSizeInfo(const Expr *Array, const Expr *Size,
63 // ProgramState trait - a map from array symbol to its state.
66 void ObjCContainersChecker::addSizeInfo(const Expr *Array, const Expr *Size,
75 SVal ArrayRef = State->getSVal(Array, C.getLocationContext());
90 // Add array size information to the state.
113 // Check the array access.
117 // Find out if we saw this array symbol before and have information about
159 // When a symbol for a mutable array escapes, we can't reason precisely
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 9 int Array[12];
111 int SumArray(int Array[], int Num) {
114 Result += Array[i];
  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 186 // Array of LiveIntervalUnions.
187 class Array {
191 Array() : Size(0), LIUs(nullptr) {}
192 ~Array() { clear(); }
194 // Initialize the array to have Size entries.
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 23 static void appendToGlobalArray(const char *Array, Module &M, Function *F,
32 if (GlobalVariable *GVCtor = M.getNamedGlobal(Array)) {
35 // Upgrade a 2-field global array type to the new 3-field format if needed.
81 GlobalValue::AppendingLinkage, NewInit, Array);

Completed in 1411 milliseconds

1 2 3 4 5 6 78 91011>>