代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/162614/5526453
f90 pr19467.f90
! { dg-do run }
! pr 19467
! test namelist with character arrays
! Based on example provided by paulthomas2@wanadoo.fr
program pr19467
implicit none
integer :: ier
character(len=2)
www.eeworm.com/read/162614/5526472
f90 array_constructor_8.f90
! Like array_constructor_6.f90, but check constructors that mix iterators
! and individual scalar elements.
! { dg-do run }
program main
implicit none
call build (42)
contains
subroutine build (
www.eeworm.com/read/162614/5529471
c assign-warn-1.c
/* Test diagnostics for bad implicit type conversions. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-pedantic" } */
#define TESTARG(ID, TL, TR) void
www.eeworm.com/read/346158/3189634
m plot_square_hhmm.m
function plot_square_hhmm(ev)
% Plot the square shape implicit in the evidence.
% ev{i,t} is the value of node i in slice t.
% The observed node contains a velocity (delta increment), which is conv
www.eeworm.com/read/346158/3189636
m plot_square_hhmm.m
function plot_square_hhmm(ev)
% Plot the square shape implicit in the evidence.
% ev{i,t} is the value of node i in slice t.
% The observed node contains a velocity (delta increment), which is conv
www.eeworm.com/read/344585/3207928
m lin_kernel.m
function x = lin_kernel(a,b,c)
% kernel function for implicit higher dimension mapping, based on
% the standard inner-product
%
% x = lin_kernel(a,b)
%
% 'a' can only contain one datapoint in a row,
www.eeworm.com/read/340665/3276720
c typedef2.c
// Build don't link:
// Testcase from Alexander Zvyagin
// Check implicit conversion from string constants into typedefs
typedef char CHAR;
void f2(CHAR *s="");
www.eeworm.com/read/326711/3470086
c fig17_12.c
// Fig 17.12: fig17_12.c
// Using implicit int return type in C89
#include
returnImplicitInt(); // prototype with unspecified return type
int demoImplicitInt(x); // prototype missing a
www.eeworm.com/read/324606/3500045
makefile
# Makefile - makefile for target/src/cplus/libstdcxx
#
# modification history
# --------------------
# 01f,23sep98,sn Compile cstrio.o with -fno-implicit-templates
# Added INST_OBJS t
www.eeworm.com/read/305277/3778581
scala bug1014.scala
import scala.xml.{NodeSeq, Elem}
class EO extends Application with Moo{
def cat = dog
implicit def nodeSeqToFlog(in: Elem): Flog = new Flog(in)
}
trait Moo {
def cat: Flog
}
class