代码搜索:Functionality
找到约 4,782 项符合「Functionality」的源代码
代码结果 4,782
www.eeworm.com/read/190666/5182279
txt filebuf_virtuals-1.txt
// 990117 bkoz
// test functionality of basic_filebuf for char_type == char
// this is a data file for 27filebuf.cc
// Copyright (C) 1997-1999 Cygnus Solutions
//
// This file is part of the GNU ISO
www.eeworm.com/read/190666/5182283
tst ostream_inserter_other-2.tst
// 990117 bkoz
// test functionality of basic_filebuf for char_type == char
// this is a data file for 27filebuf.cc
// Copyright (C) 1997-1999 Cygnus Solutions
//
// This file is part of the GNU ISO
www.eeworm.com/read/190666/5182290
cc stringbuf_members.cc
// 981208 bkoz test functionality of basic_stringbuf for char_type == char
// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO
www.eeworm.com/read/190666/5182309
tst ostream_inserter_other-1.tst
// 990117 bkoz
// test functionality of basic_filebuf for char_type == char
// this is a data file for 27filebuf.cc
// Copyright (C) 1997-1999 Cygnus Solutions
//
// This file is part of the GNU ISO
www.eeworm.com/read/190666/5182328
tst filebuf_virtuals-1.tst
// 990117 bkoz
// test functionality of basic_filebuf for char_type == char
// this is a data file for 27filebuf.cc
// Copyright (C) 1997-1999 Cygnus Solutions
//
// This file is part of the GNU ISO
www.eeworm.com/read/190346/5185587
in makefile.in
VPATH = @srcdir@
INCLUDES = @APRUTIL_PRIV_INCLUDES@ @APR_INCLUDES@ @APRUTIL_INCLUDES@
TARGETS = apr_hooks.lo
# bring in rules.mk for standard functionality
@INCLUDE_RULES@
www.eeworm.com/read/190346/5185605
in makefile.in
VPATH = @srcdir@
INCLUDES = @APRUTIL_PRIV_INCLUDES@ @APR_INCLUDES@ @APRUTIL_INCLUDES@
TARGETS = apr_strmatch.lo
# bring in rules.mk for standard functionality
@INCLUDE_RULES@
www.eeworm.com/read/183001/5258950
sql plpython_test.sql
-- first some tests of basic functionality
--
-- better succeed
--
select stupid();
-- check static and global data
--
SELECT static_test();
SELECT static_test();
SELECT global_test_one();
SELECT glo
www.eeworm.com/read/182103/5269893
doc spec.doc
#
# $Id: Spec.doc,v 1.2 1998/01/16 16:56:26 joel Exp $
#
2-28-1995 GK
In order to provide more functionality to the boot rom code I c
www.eeworm.com/read/173141/5378846
sql select.sql
--
-- this test shows the current supported select functionality
--
create table t(i int, s smallint);
insert into t (i,s) values (1956,475);
-- select a subset of the columns
select i from t;
--