/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | arraytypes.h | 16 typedef Array<class TemplateParameter *> TemplateParameters; 18 typedef Array<class Expression *> Expressions; 20 typedef Array<class Statement *> Statements; 22 typedef Array<struct BaseClass *> BaseClasses; 24 typedef Array<class ClassDeclaration *> ClassDeclarations; 26 typedef Array<class Dsymbol *> Dsymbols; 28 typedef Array<class RootObject *> Objects; 30 typedef Array<class DtorDeclaration *> DtorDeclarations; 32 typedef Array<class FuncDeclaration *> FuncDeclarations; 34 typedef Array<class Parameter *> Parameters; [all …]
|
H A D | arraytypes.d | 28 alias Strings = Array!(const(char)*); 29 alias Identifiers = Array!(Identifier); 30 alias TemplateParameters = Array!(TemplateParameter); 31 alias Expressions = Array!(Expression); 32 alias Statements = Array!(Statement); 33 alias BaseClasses = Array!(BaseClass*); 34 alias ClassDeclarations = Array!(ClassDeclaration); 35 alias Dsymbols = Array!(Dsymbol); 36 alias Objects = Array!(RootObject); 37 alias DtorDeclarations = Array!(DtorDeclaration); [all …]
|
H A D | globals.h | 20 template <typename TYPE> struct Array; 181 Array<const char *> modFileAliasStrings; // array of char*'s of -I module filename alias strings 182 Array<const char *> *imppath; // array of char*'s of where to look for import modules 183 Array<const char *> *fileImppath; // array of char*'s of where to look for file import modules 191 Array<const char *> ddocfiles; // macro include files for Ddoc 211 Array<const char *> *debugids; // debug identifiers 214 Array<const char *> *versionids; // version identifiers 225 Array<const char *> makeDeps; // dependencies for makedeps 233 Array<const char *> objfiles; 234 Array<const char *> linkswitches; [all …]
|
H A D | globals.d | 203 … Array!(const(char)*) modFileAliasStrings; // array of char*'s of -I module filename alias strings 204 Array!(const(char)*)* imppath; // array of char*'s of where to look for import modules 205 Array!(const(char)*)* fileImppath; // array of char*'s of where to look for file import modules 213 Array!(const(char)*) ddocfiles; // macro include files for Ddoc 233 Array!(const(char)*)* debugids; // debug identifiers 236 Array!(const(char)*)* versionids; // version identifiers 247 Array!(const(char)*) makeDeps; // dependencies for makedeps 255 Array!(const(char)*) objfiles; 256 Array!(const(char)*) linkswitches; 257 Array!bool linkswitchIsForCC; [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | arraytypes.h | 15 typedef Array<class TemplateParameter *> TemplateParameters; 17 typedef Array<class Expression *> Expressions; 19 typedef Array<class Statement *> Statements; 21 typedef Array<struct BaseClass *> BaseClasses; 23 typedef Array<class ClassDeclaration *> ClassDeclarations; 25 typedef Array<class Dsymbol *> Dsymbols; 27 typedef Array<class RootObject *> Objects; 29 typedef Array<class FuncDeclaration *> FuncDeclarations; 31 typedef Array<class Parameter *> Parameters; 33 typedef Array<class Identifier *> Identifiers; [all …]
|
H A D | globals.h | 20 template <typename TYPE> struct Array; 145 … Array<const char *> *modFileAliasStrings; // array of char*'s of -I module filename alias strings 146 Array<const char *> *imppath; // array of char*'s of where to look for import modules 147 Array<const char *> *fileImppath; // array of char*'s of where to look for file import modules 155 Array<const char *> *ddocfiles; // macro include files for Ddoc 166 Array<const char *> *debugids; // debug identifiers 169 Array<const char *> *versionids; // version identifiers 190 Array<const char *> *objfiles; 191 Array<const char *> *linkswitches; 192 Array<const char *> *libfiles; [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
H A D | BinaryStreamArray.h | 161 VarStreamArrayIterator(const ArrayType &Array, const Extractor &E, in VarStreamArrayIterator() argument 163 : IterRef(Array.Stream.drop_front(Offset)), Extract(E), in VarStreamArrayIterator() 164 Array(&Array), AbsOffset(Offset), HadError(HadError) { in VarStreamArrayIterator() 181 if (Array && R.Array) { 183 assert(Array == R.Array); 188 if (!Array && !R.Array) 196 assert(Array && !HasError); 201 assert(Array && !HasError); 235 Array = nullptr; in moveToEnd() 248 const ArrayType *Array{nullptr}; [all …]
|
H A D | BinaryStreamWriter.h | 151 template <typename T> Error writeArray(ArrayRef<T> Array) { in writeArray() argument 152 if (Array.empty()) in writeArray() 154 if (Array.size() > UINT32_MAX / sizeof(T)) in writeArray() 159 ArrayRef<uint8_t>(reinterpret_cast<const uint8_t *>(Array.data()), in writeArray() 160 Array.size() * sizeof(T))); in writeArray() 168 Error writeArray(VarStreamArray<T, U> Array) { in writeArray() argument 169 return writeStreamRef(Array.getUnderlyingStream()); in writeArray() 176 template <typename T> Error writeArray(FixedStreamArray<T> Array) { in writeArray() argument 177 return writeStreamRef(Array.getUnderlyingStream()); in writeArray()
|
H A D | BinaryStreamReader.h | 187 Error readArray(ArrayRef<T> &Array, uint32_t NumElements) { in readArray() argument 190 Array = ArrayRef<T>(); in readArray() 204 Array = ArrayRef<T>(reinterpret_cast<const T *>(Bytes.data()), NumElements); in readArray() 217 Error readArray(VarStreamArray<T, U> &Array, uint32_t Size, 222 Array.setUnderlyingStream(S, Skew); 235 Error readArray(FixedStreamArray<T> &Array, uint32_t NumItems) { in readArray() argument 237 Array = FixedStreamArray<T>(); in readArray() 249 Array = FixedStreamArray<T>(View); in readArray()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/ |
H A D | array.d | 42 auto a1 = Array!float(a0); 65 Array!float a1; 73 Array!float a1 = a0; 85 auto arr = Array!int(0, 2, 3); 113 auto arr = Array!int(1, 2, 3); 116 auto b = Array!int(11, 12, 13); 131 auto arr = Array!bool([true, true, false, true, false]); 348 auto a = Array!S (S(0), S(1), S(2), S(3)); 385 struct Array(T) 609 bool opEquals(const Array rhs) const [all …]
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/ |
H A D | segmented_array_test.cc | 27 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST() 29 Array<TestData> Data(A); in TEST() 34 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST() 36 Array<TestData> data(A); in TEST() 43 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST() 45 Array<TestData> data(A); in TEST() 53 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST() 55 Array<TestData> data(A); in TEST() 68 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST() 70 Array<TestData> data(A); in TEST() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/ |
H A D | array.d | 30 auto arr = Array!int(0, 2, 3); 58 auto arr = Array!int(1, 2, 3); 61 auto b = Array!int(11, 12, 13); 76 Array!bool arr; 251 struct Array(T) 453 bool opEquals(const Array rhs) const in opEquals() 459 bool opEquals(ref const Array rhs) const in opEquals() 472 alias Range = RangeT!Array; 475 alias ConstRange = RangeT!(const Array); 478 alias ImmutableRange = RangeT!(immutable Array); [all …]
|
H A D | util.d | 60 auto arr = make!(Array!int)([4, 2, 3, 1]); 76 auto arr1 = make!(Array!dchar)(); 78 auto arr2 = make!(Array!dchar)("hello"d); 128 import std.container.array : Array; 131 static assert(__traits(compiles, { auto arr = make!Array(only(5)); })); 132 static assert(!__traits(compiles, { auto arr = make!Array(repeat(5)); })); 142 auto arr = make!Array(iota(5)); 175 auto array1 = make!(Array!int)();
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
H A D | CoverageExporterJson.cpp | 80 json::Array renderSegment(const coverage::CoverageSegment &Segment) { in renderSegment() 81 return json::Array({Segment.Line, Segment.Col, in renderSegment() 86 json::Array renderRegion(const coverage::CountedRegion &Region) { in renderRegion() 87 return json::Array({Region.LineStart, Region.ColumnStart, Region.LineEnd, in renderRegion() 93 json::Array renderBranch(const coverage::CountedRegion &Region) { in renderBranch() 94 return json::Array( in renderBranch() 101 json::Array renderRegions(ArrayRef<coverage::CountedRegion> Regions) { in renderRegions() 102 json::Array RegionArray; in renderRegions() 108 json::Array renderBranchRegions(ArrayRef<coverage::CountedRegion> Regions) { in renderBranchRegions() 109 json::Array RegionArray; in renderBranchRegions() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/ |
H A D | array.h | 15 struct Array struct 21 Array(const Array&); argument 28 Array() in Array() argument 35 ~Array() in ~Array() argument 178 void insert(d_size_t index, Array *a) in insert() argument 191 void append(Array *a) in append() argument 202 Array *copy() in copy() argument 204 Array *a = new Array(); in copy()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/root/ |
H A D | array.h | 16 struct Array struct 25 Array(const Array&); argument 28 Array() in Array() argument 35 ~Array() in ~Array() argument 74 void append(Array *a) in append() argument 124 void insert(d_size_t index, Array *a) in insert() argument 182 Array *copy() in copy() argument 184 Array *a = new Array(); in copy()
|
H A D | array.d | 30 extern (C++) struct Array(T) in Array() function 61 static const(char)[] toStringImpl(alias toStringFunc, Array)(Array* a, bool quoted = false) in Array() 117 ref Array push(T ptr) return pure nothrow in Array() 124 extern (D) ref Array pushSlice(T[] a) return pure nothrow in Array() 132 ref Array append(typeof(this)* a) return pure nothrow in Array() 269 Array!T* copy() const pure nothrow in Array() 271 auto a = new Array!T(); in Array() 359 auto array = Array!S(4); 365 auto strarray = Array!(const(char)*)(2); 376 auto array = Array!double(4); [all …]
|
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/ |
H A D | js_objgc_example.txt | 49 browser.js 1 Array 51 popup.xml 1 Array 68 browser.js 1 Array 73 popup.xml 2 Array 105 browser.js 1 Array 113 tree.xml 1 Array 122 <null> 3 Array 124 nsUpdateService.js 3 Array 140 popup.xml 82 Array 155 <missed> -2 Array [all …]
|
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/ |
H A D | js_objgc_example.txt | 49 browser.js 1 Array 51 popup.xml 1 Array 68 browser.js 1 Array 73 popup.xml 2 Array 105 browser.js 1 Array 113 tree.xml 1 Array 122 <null> 3 Array 124 nsUpdateService.js 3 Array 140 popup.xml 82 Array 155 <missed> -2 Array [all …]
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
H A D | xray_segmented_array.h | 34 template <class T> class Array { 297 explicit Array(AllocatorType &A) XRAY_NEVER_INSTRUMENT in Array() function 304 Array() XRAY_NEVER_INSTRUMENT : Alloc(nullptr), in Array() function 310 Array(const Array &) = delete; 311 Array &operator=(const Array &) = delete; 313 Array(Array &&O) XRAY_NEVER_INSTRUMENT : Alloc(O.Alloc), in Array() function 325 Array &operator=(Array &&O) XRAY_NEVER_INSTRUMENT { 339 ~Array() XRAY_NEVER_INSTRUMENT { in ~Array() 646 typename Array<T>::Segment Array<T>::SentinelSegment{ 647 &Array<T>::SentinelSegment, &Array<T>::SentinelSegment, {'\0'}};
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/gcc/sections/ |
H A D | pecoff.d | 87 Array!(void[]) _gcRanges; 91 Array!(void[]) _codeSegments; // array of code segments in version() 92 Array!(DSO*) _deps; // D libraries needed by this DSO in version() 128 Array!(ThreadDSO)* initTLSRanges() @nogc nothrow in version() 133 void finiTLSRanges(Array!(ThreadDSO)* tdsos) @nogc nothrow in version() 141 void scanTLSRanges(Array!(ThreadDSO)* tdsos, scope ScanDG dg) nothrow in version() 153 auto res = cast(Array!(ThreadDSO)*)calloc(1, Array!(ThreadDSO).sizeof); in version() 174 auto pary = cast(Array!(ThreadDSO)*)p; in version() 195 _loadedDSOs.swap(*cast(Array!(ThreadDSO)*)p); in version() 222 Array!(void[])* initTLSRanges() nothrow @nogc [all …]
|
H A D | macho.d | 88 Array!(void[]) _gcRanges; 92 Array!(void[]) _codeSegments; // array of code segments in version() 93 Array!(DSO*) _deps; // D libraries needed by this DSO in version() 129 Array!(ThreadDSO)* initTLSRanges() @nogc nothrow in version() 134 void finiTLSRanges(Array!(ThreadDSO)* tdsos) @nogc nothrow in version() 142 void scanTLSRanges(Array!(ThreadDSO)* tdsos, scope ScanDG dg) nothrow in version() 154 auto res = cast(Array!(ThreadDSO)*)calloc(1, Array!(ThreadDSO).sizeof); in version() 173 auto pary = cast(Array!(ThreadDSO)*)p; in version() 194 _loadedDSOs.swap(*cast(Array!(ThreadDSO)*)p); in version() 221 Array!(void[])* initTLSRanges() nothrow @nogc [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/util/container/ |
H A D | array.d | 14 struct Array(T) in Array() function 123 void swap(ref Array other) in Array() 145 Array!size_t ary; 178 static assert(!__traits(compiles, { Array!size_t ary2 = ary; })); 179 Array!size_t ary2; 181 static void foo(Array!size_t copy) {} 195 Array!RC ary; 217 auto ary = Array!size_t(cast(size_t*)0xdeadbeef, -1); 226 auto ary = Array!size_t(cast(size_t*)0xdeadbeef, -2);
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/container/ |
H A D | array.d | 14 struct Array(T) in Array() function 123 void swap(ref Array other) in Array() 145 Array!size_t ary; 178 static assert(!__traits(compiles, { Array!size_t ary2 = ary; })); 179 Array!size_t ary2; 181 static void foo(Array!size_t copy) {} 195 Array!RC ary; 217 auto ary = Array!size_t(cast(size_t*)0xdeadbeef, -1); 226 auto ary = Array!size_t(cast(size_t*)0xdeadbeef, -2);
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
H A D | SarifDiagnostics.cpp | 126 {"roles", json::Array{"resultFile"}}, in createArtifact() 132 json::Array &Artifacts) { in createArtifactLocation() 201 json::Array &Artifacts) { in createPhysicalLocation() 258 json::Array &Artifacts) { in createThreadFlow() 260 json::Array Locations; in createThreadFlow() 276 json::Array &Artifacts) { in createCodeFlow() 278 {"threadFlows", json::Array{createThreadFlow(LO, Pieces, Artifacts)}}}; in createCodeFlow() 283 json::Array &Artifacts, in createResult() 293 {"codeFlows", json::Array{createCodeFlow(LO, Path, Artifacts)}}, in createResult() 295 json::Array{createLocation(createPhysicalLocation( in createResult() [all …]
|