代码搜索:Assignment
找到约 8,196 项符合「Assignment」的源代码
代码结果 8,196
www.eeworm.com/read/217139/14977424
qmsg key.fit.qmsg
{ "Info" "IQEXE_SEPARATOR" "" "Info: *******************************************************************" { } { } 3}
{ "Info" "IQEXE_START_BANNER_PRODUCT" "Fitter Quartus II " "Info: Running Quartu
www.eeworm.com/read/213274/15138407
qmsg b8_adder.fit.qmsg
{ "Info" "IQEXE_SEPARATOR" "" "Info: *******************************************************************" { } { } 3}
{ "Info" "IQEXE_START_BANNER_PRODUCT" "Fitter Quartus II " "Info: Running Quartu
www.eeworm.com/read/212378/15156852
qmsg prev_cmp_mcu.fit.qmsg
{ "Info" "IQEXE_SEPARATOR" "" "Info: *******************************************************************" { } { } 3 0 "*******************************************************************" 0 0 "" 0}
www.eeworm.com/read/212378/15156873
qmsg mcu.fit.qmsg
{ "Info" "IQEXE_SEPARATOR" "" "Info: *******************************************************************" { } { } 3 0 "*******************************************************************" 0 0 "" 0}
www.eeworm.com/read/162614/5516833
c 20030218-1.c
/* { dg-do compile { target powerpc-*-eabi* } } */
/* { dg-options "-mspe=yes" } */
/* Test vectors that can interconvert without a cast. */
__ev64_opaque__ opp;
int vint __attribute__((vector_si
www.eeworm.com/read/162614/5518235
c aggr1.c
// Test that initializing an aggregate with complex copy constructor
// and assignment ops doesn't cause cp_expr_size to abort.
struct A
{
A();
A(const A&);
A& operator=(const A&);
};
struct B
www.eeworm.com/read/162614/5519739
c union1.c
// { dg-do assemble }
class A
{
private:
int myInt;
public:
A& operator = (int right) {myInt = right; return *this;}
};
union B
{
char f1;
A f2; // { dg-bogus "" } non-cop
www.eeworm.com/read/162614/5520491
c assign1.c
// { dg-do compile }
// Origin: Mark Mitchell
template
struct S { // { dg-error "assignment" }
S();
T t;
};
void f()
{
S s;
s = s; // { dg-error
www.eeworm.com/read/162614/5521174
c operators6.c
// { dg-do assemble }
// GROUPS passed operators
// opr-as file
// From: Klaus Ahrens
// Date: Fri, 26 Mar 93 12:50:37 mez
// Subject: no default assignment
// M
www.eeworm.com/read/162614/5522322
c rfg17.c
// { dg-do assemble }
// The default assignment operator for B uses array assignment, so we can't
// just disallow it...
struct A { A& operator=(const A&); };
struct B { A f[20]; };
int a1[20], a2[