Home
last modified time | relevance | path

Searched refs:opAssign (Results 1 – 25 of 67) sorted by relevance

123

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/thread/
H A Dcontext.d28 void opAssign(void function() fn) pure nothrow @nogc @safe in opAssign() function
33 void opAssign(void delegate() dg) pure nothrow @nogc @safe in opAssign() function
/netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.lifetime/
H A Dlarge_aggregate_destroy_21097.d34 void opAssign(typeof(this)) {} // hasElaborateAssign == true in test_largestruct_w_opassign() function
61 void opAssign(typeof(this)) {} // hasElaborateAssign == true in test_largearray_w_opassign() function
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/root/
H A Dlongdouble.d40 extern (D) longdouble opAssign(T)(T r)
47 extern (D) longdouble opAssign(T)(T r)
H A Dbitarray.d46 void opAssign(const ref BitArray b) nothrow pure in opAssign() function
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/
H A Dlifetime.d400 void opAssign(S2);
473 void opAssign(S){assert(0);}
524 void opAssign();
581 void opAssign(int){assert(0);}
582 void opAssign(S){assert(0);}
641 void opAssign(const SS)
949 @disable void opAssign(S);
1347 void opAssign(const scope ref S rhs) @safe pure nothrow @nogc
2544 @disable void opAssign(typeof(this));
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdcpp/
H A Dmemory.d59 ref unique_ptr opAssign(typeof(null)) in opAssign() function
H A Dvector.d73 …ref vector opAssign(U)(auto ref vector!(U, Alloc) s) { opAssign(s.as_array); re… in vector()
75 ref vector opAssign(T[] array) in vector()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dtypecons.d211 void opAssign(U)(Unique!U u) in Unique()
850 void opAssign(R)(auto ref R rhs) in Tuple()
1473 void opAssign(S rhs) { count = rhs.count; }
1928 void opAssign(T another)
1933 void opAssign(typeof(this) another)
1941 void opAssign(This!(immutable U) another)
1949 opAssign(initializer);
2485 void opAssign()(T value)
2776 void opAssign(S2 other)
3013 void opAssign()(T value)
[all …]
H A Dbigint.d151 opAssign(x);
166 opAssign(x);
178 BigInt opAssign(T)(T x) pure nothrow if (isIntegral!T)
194 BigInt opAssign(T:BigInt)(T x) pure @nogc
H A Dtraits.d1166 ref Foo opAssign(ref Foo rhs) return { return this; }
3446 enum hasElaborateAssign = is(typeof(S.init.opAssign(rvalueOf!S))) ||
3447 is(typeof(S.init.opAssign(lvalueOf!S))) ||
3461 static struct S { void opAssign(S) {} }
3465 static struct S1 { void opAssign(ref S1) {} }
3466 static struct S2 { void opAssign(int) {} }
3477 static struct S { void opAssign(S) {} }
3480 void opAssign(U)(U u) {}
3481 @disable void opAssign(U)(ref U u);
3487 void opAssign(U)(ref U u) {}
[all …]
H A Dvariant.d559 opAssign(value); in VariantN()
566 opAssign(value); in VariantN()
588 VariantN opAssign(T)(T rhs) in VariantN()
651 VariantN opAssign(T : VariantN!(tsize, Types), size_t tsize, Types...)(T rhs) in VariantN()
2626 @disable S opAssign();
H A Darray.d165 void opAssign(Foo foo) in opAssign() function
240 void opAssign(T)(T rhs) { this.num = rhs.num; } in opAssign() function
300 ref S opAssign(S)(const ref S rhs) in opAssign() function
320 @disable void opAssign(S);
H A Dcomplex.d193 ref Complex opAssign(R : T)(Complex!R z)
201 ref Complex opAssign(R : T)(R r)
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dtypecons.d215 void opAssign(U)(Unique!U u) in Unique()
947 ref Tuple opAssign(R)(auto ref R rhs)
1805 void opAssign(S rhs) { count = rhs.count; }
2248 void opAssign(return scope T another) pure nothrow @nogc
2260 void opAssign(typeof(this) another) @trusted pure nothrow @nogc
2268 void opAssign(This!(immutable U) another) @trusted pure nothrow @nogc
2277 opAssign(initializer);
3039 Nullable opAssign()(T value)
3392 void opAssign(ref S2 other)
3569 void opAssign(Test rhs) @safe { assert(false); }
[all …]
H A Dtraits.d1300 ref Foo opAssign(ref Foo rhs) return { return this; }
3685 enum hasElaborateAssign = is(typeof(S.init.opAssign(rvalueOf!S))) ||
3686 is(typeof(S.init.opAssign(lvalueOf!S))) ||
3700 static struct S { void opAssign(S) {} }
3704 static struct S1 { void opAssign(ref S1) {} }
3705 static struct S2 { void opAssign(int) {} }
3716 static struct S { void opAssign(S) {} }
3719 void opAssign(U)(U u) {}
3720 @disable void opAssign(U)(ref U u);
3726 void opAssign(U)(ref U u) {}
[all …]
H A Dsumtype.d580 ref SumType opAssign(T rhs); in version()
620 ref SumType opAssign(T rhs)
661 ref SumType opAssign(ref SumType rhs) in opAssign() function
669 @disable ref SumType opAssign(ref SumType rhs);
677 ref SumType opAssign(SumType rhs) in opAssign() function
H A Dbigint.d187 opAssign(x);
201 opAssign(x);
213 BigInt opAssign(T)(T x) pure nothrow @safe if (isIntegral!T)
229 BigInt opAssign(T:BigInt)(T x) pure @nogc @safe
H A Dvariant.d656 opAssign(value); in VariantN()
663 opAssign(value); in VariantN()
693 VariantN opAssign(T)(T rhs) in VariantN()
737 VariantN opAssign(T : VariantN!(tsize, Types), size_t tsize, Types...)(T rhs) in VariantN()
3017 @disable S opAssign();
H A Duuid.d722 @safe pure nothrow @nogc UUID opAssign(const UUID s)
732 @safe pure nothrow @nogc UUID opAssign(ref const scope UUID s)
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sync/
H A Devent.d133 @disable void opAssign(Event);
/netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.aa/
H A Dtest_aa.d468 void opAssign(Json) {} in issue9052() function
702 auto opAssign(S s) {
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
H A Dmutation.d683 void opAssign(int){} in opAssign() function
689 void opAssign(ER8638_2){} in opAssign() function
690 void opAssign(int){} in opAssign() function
2604 void opAssign(NoAssign) @disable;
2683 void opAssign(B) { x = new int; }
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/
H A Dmutation.d725 void opAssign(int){} in opAssign() function
731 void opAssign(ER8638_2){} in opAssign() function
732 void opAssign(int){} in opAssign() function
2965 void opAssign(NoAssign) @disable;
3045 void opAssign(B) { x = new int; }
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dtraits.d332 enum hasElaborateAssign = is(typeof(S.init.opAssign(rvalueOf!S))) || in hasElaborateAssign()
333 is(typeof(S.init.opAssign(lvalueOf!S))) || in hasElaborateAssign()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/common/
H A Dfile.d201 @disable void opAssign(const ref FileMapping!Datum rhs); in FileMapping()

123