代码搜索:assignment

找到约 8,196 项符合「assignment」的源代码

代码结果 8,196
www.eeworm.com/read/393163/2488529

m find_mpe.m

function mpe = find_mpe(engine, new_evidence, max_over) % FIND_MPE Find the most probable explanation of the data (assignment to the hidden nodes) % function mpe = find_mpe(engine, evidence, order)
www.eeworm.com/read/366702/2866336

c label3.c

// Bug: we were removing the p = q assignment in dce, and then reinserting // it *after* the try/catch in out-of-ssa. Oops. // testcase reduced from libjava/interpret.cc. // { dg-do run } // { dg-o
www.eeworm.com/read/366702/2870290

c crash20.c

// { dg-do compile } template struct A { // { dg-error "assignment" } const T x; A() : x(0) { } A(T x) : x(x) { } }; template void func () { B y; y = B(); // {
www.eeworm.com/read/366702/2876739

f90 nullify_3.f90

! { dg-do run } ! { dg-options "-O0 -fbounds-check" } ! Tests patch for PR29371, in which the null pointer ! assignment would cause a segfault with the bounds ! check on. ! ! Contributed by Tobias Bur
www.eeworm.com/read/366702/2883772

c lvalue-3.c

/* Test that assignment of a read-only variable that gets const-ness from a read-only field is diagnosed. */ /* Origin: Joseph Myers */ /* { dg-do compile } */ /* { dg-op
www.eeworm.com/read/160391/5571601

m find_mpe.m

function mpe = find_mpe(engine, new_evidence, max_over) % FIND_MPE Find the most probable explanation of the data (assignment to the hidden nodes) % function mpe = find_mpe(engine, evidence, order)
www.eeworm.com/read/414255/11123027

c statement.c

#include "error.h" #include "io.h" #include "salloc.h" #include "statement.h" #include Statement *new_assignment_statement(Expression *lvalue, Expression *rvalue) { Statement *stat =
www.eeworm.com/read/376037/9335408

f90 nutility.f90

module defoperator use typedef implicit none interface assignment(=) module procedure vector2i_assign_vector2f module procedure vector2f_assign_vector2i end interface interface o
www.eeworm.com/read/168857/9893607

html page97.html

Copy Constructor and Assignment Operator
www.eeworm.com/read/355030/10300220

cpp copymem.cpp

//: C12:Copymem.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Duplicate during assignment #in