代码搜索:Assignment
找到约 8,196 项符合「Assignment」的源代码
代码结果 8,196
www.eeworm.com/read/233448/4671868
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/233448/4675790
c lvalue3.c
// { dg-do assemble }
// Bug: C++ semantics for assignment don't match the backend semantics for
// MODIFY_EXPR.
void
foo (int j)
{
(j = 1)++; // causes compiler segfault
}
www.eeworm.com/read/190666/5175581
c lvalue3.c
// Bug: C++ semantics for assignment don't match the backend semantics for
// MODIFY_EXPR.
// Build don't link:
void
foo (int j)
{
(j = 1)++; // causes compiler segfault
}
www.eeworm.com/read/162614/5526138
f90 nesting_3.f90
! check to make the nested function dawsonseries_v gets the correct
! fake return decl and that the outer (dawson_v) has an assignment of
! just the fake return decl for real and not the inner's retur
www.eeworm.com/read/162614/5526284
f90 nesting_2.f90
! check to make the nested function dawsonseries_v gets the correct
! fake return decl and that the outer (dawson_v) has an assignment of
! just the fake return decl for real and not the inner's retur
www.eeworm.com/read/341356/3252847
rfc1066-mib
-- Changes to rfc1066 (The obsolete MIB-I definition):
-- Fixed module header to remove OID assignment.
-- Changed ACCESS for all tables and rows to not-accessable.
-- Added INDEX claus
www.eeworm.com/read/340665/3273043
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/340665/3276235
c lvalue3.c
// Bug: C++ semantics for assignment don't match the backend semantics for
// MODIFY_EXPR.
// Build don't link:
void
foo (int j)
{
(j = 1)++; // causes compiler segfault
}
www.eeworm.com/read/281827/4112396
old makefile.old
#
# Makefile for precise-costs codes implementing the cost scaling
# push-relabel assignment algorithm.
# Filenames of executable images are derived from compile-time macro
# definitions as follows (f
www.eeworm.com/read/440906/1774648
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