代码搜索:semantics

找到约 893 项符合「semantics」的源代码

代码结果 893
www.eeworm.com/read/173141/5378940

sql comparisons.sql

-- -- this test shows the current supported comparison operators -- -- first, do comparisons on the int type -- create a table with couple of int columns create table inttab (c1 int, c2 int); -- in
www.eeworm.com/read/162614/5530713

c winline-1.c

/* { dg-do compile } */ /* { dg-options "-Winline -O2" } */ void q(void); inline int t(void) { int ret; q(); ret = t(); /* We define sane semantics for inline keyword on recursive functi
www.eeworm.com/read/162614/5530834

c postincr-1.c

/* Simple test for proper postincrement semantics. */ /* { dg-do run } */ extern void abort (void); int i; int c; int *f () { ++c; return &i; } int main () { int r; r = (*f())++; if (!(r
www.eeworm.com/read/162614/5531028

c strify1.c

/* Copyright (C) 2000 Free Software Foundation, Inc. */ /* { dg-do preprocess } */ /* Test operator # semantics. */ #define OK1 # /* No problem. */ #define OK2(x) x#x /* No problem. */ #define
www.eeworm.com/read/158872/5590193

in makefile.in

# Makefile template for Configure for the mn10300 sim library. # Copyright (C) 1996, 1997, 2000, 2001 Free Software Foundation, Inc. # Written by Cygnus Support. # # This program is free sof
www.eeworm.com/read/158872/5590229

in makefile.in

# Makefile template for Configure for the V850 sim library. # Copyright (C) 1996, 1997 Free Software Foundation, Inc. # Written by Cygnus Support. # # This program is free software; you can
www.eeworm.com/read/141297/5773813

i shared_ptr.i

// // shared_ptr // // An enhanced relative of scoped_ptr with reference counted copy semantics. // The object pointed to is deleted when the last shared_ptr pointing to it // is destroyed or rese
www.eeworm.com/read/153764/12008509

h actions.h

////////////////////////////////////////////////////////////////////////////// // // case.{h,pre,post,cc} // // case.cc is the concatenation of case.pre, case, and case.post // case is generated au
www.eeworm.com/read/250756/12386501

c uxsignal.c

#include #include #include /* * Calling signal() is non-portable, as it varies in meaning * between platforms and depending on feature macros, and has * stup