Home
last modified time | relevance | path

Searched defs:Array (Results 1 – 25 of 149) sorted by relevance

123456

/external/libcxx/test/libcxx/utilities/function.objects/func.require/
Dinvoke.pass.cpp18 struct Array struct
25 Array<char, 1>::type& f1(); argument
/external/libmojo/mojo/public/cpp/bindings/
Darray.h39 Array() : is_null_(false) {} in Array() function
41 Array(std::nullptr_t null_pointer) : is_null_(true) {} in Array() function
46 explicit Array(size_t size) : vec_(size), is_null_(false) {} in Array() function
50 Array(const std::vector<T>& other) : vec_(other), is_null_(false) {} in Array() function
53 Array(std::vector<T>&& other) : vec_(std::move(other)), is_null_(false) {} in Array() function
54 Array(Array&& other) : is_null_(true) { Take(&other); } in Array() function
/external/clang/test/SemaTemplate/
Dinstantiate-member-initializers.cpp39 template<typename T> struct Array { struct
41 Array() : a() {} in Array() argument
Dtemp_arg_type.cpp47 struct Array { struct
52 A1<Array<int, 17>::type> ax; argument
Dinstantiate-array.cpp25 template<typename T, int N> class Array { class
/external/llvm/include/llvm/DebugInfo/CodeView/
DStreamWriter.h53 template <typename T> Error writeArray(ArrayRef<T> Array) { in writeArray()
66 Error writeArray(VarStreamArray<T, U> Array) { in writeArray()
70 template <typename T> Error writeArray(FixedStreamArray<T> Array) { in writeArray()
DStreamReader.h57 Error readArray(ArrayRef<T> &Array, uint32_t NumElements) { in readArray()
74 Error readArray(VarStreamArray<T, U> &Array, uint32_t Size) { in readArray()
83 Error readArray(FixedStreamArray<T> &Array, uint32_t NumItems) { in readArray()
/external/deqp/framework/common/
DtcuArray.hpp35 class Array class
38 Array (void) {} in Array() function in tcu::Array
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
Dp2.cpp6 template<class T> class Array { void mf() { } }; in mf() class
8 template class Array<char>; variable
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
Dp11.cpp4 template<class T> class Array { /* ... */ }; class
/external/webrtc/webrtc/system_wrappers/include/
Daligned_array.h42 T* const* Array() { in Array() function
46 const T* const* Array() const { in Array() function
/external/libcxxabi/test/
Dcatch_array_02.pass.cpp17 typedef char Array[4]; in main() typedef
Dcatch_array_01.pass.cpp21 typedef char Array[4]; in main() typedef
Dtest_vector3.pass.cpp55 typedef test1::A Array[10]; in main() typedef
/external/clang/test/Frontend/
Doptimization-remark-analysis.c7 double foo(int N, int *Array) { in foo()
/external/clang/test/Sema/
Doffsetof.c66 typedef struct Array { int array[1]; } Array; typedef
/external/liblzf/cs/
DCLZF.cs129 UInt32 FRST(byte[] Array,UInt32 ptr) in FRST()
134 UInt32 NEXT(UInt32 v,byte[] Array,UInt32 ptr) in NEXT()
/external/clang/test/CodeGen/
D2002-01-24-ComplexSpaceInType.c9 struct { int X, Y; } Array[10]; variable
D2002-03-12-ArrayInitialization.c17 struct Test Array[10] = { { 2, 12.0 }, { 3, 24.0 } }; variable
/external/v8/tools/turbolizer/
Dmonkey.js5 Array.prototype.getStaggeredFromMiddle = function(i) { class
/external/clang/test/CodeGenCXX/
Dpr20897.cpp32 int Array[1]; member
Dexception-spec-decay.cpp2 typedef int Array[10]; typedef
/external/swiftshader/third_party/LLVM/lib/Analysis/
DLibCallSemantics.cpp52 const LibCallFunctionInfo *Array = getFunctionInfoArray(); in getFunctionInfo() local
/external/liblzf/src/org/liblzf/
DCLZF.java129 static int FRST(byte[] Array,int ptr) in FRST()
134 static int NEXT(int v,byte[] Array,int ptr) in NEXT()
/external/libcxx/test/std/utilities/meta/meta.rel/
Dis_convertible.pass.cpp49 typedef char Array[1]; typedef

123456