代码搜索:extend
找到约 5,569 项符合「extend」的源代码
代码结果 5,569
www.eeworm.com/read/288856/8598715
c extend.c
#include "bios.h"
#include "dos.h"
#include "stdio.h"
#define ATTDW 0x92
#define ATTDR 0x90
#define SELECTOR_1 8
#define SELECTOR_2 16
#define GDTNUM 3
asm .386p
struct descriptor
{
int
www.eeworm.com/read/288856/8598718
exe extend.exe
www.eeworm.com/read/287770/8670302
m extend.m
function y=extend(x)
% EXTEND Extend a spectrum object to cover the whole frequency range.
% $Id: extend.m 46 2004-08-26 11:48:36Z mairas $
% find out where the current spectrum points lie on the u
www.eeworm.com/read/184703/9084961
m extend.m
function Ae=extend(A, flag)
% extend.m extends data across the boundaries (to make other codes
% uniform and simple).
% Input : A is an nxmxk array.
% Output: an expanded image (acr
www.eeworm.com/read/183260/9173893
sql extend.sql
REM extend.sql
REM Chapter 8, Oracle9i PL/SQL Programming by Scott Urman
REM This block demonstrates the EXTEND collection method.
set serveroutput on
DECLARE
v_NumbersTab NumTab := NumTab(
www.eeworm.com/read/362855/9978583
texi extend.texi
@c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1996, 1998, 1999, 2000, 2001,
@c 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
@c This is part of the GCC manual.
@c For copyi
www.eeworm.com/read/278472/10533763
c extend.c
/***************************************************************
* *
* Copyright (c) 2001-2007 McObject LLC. All Right Reserved. *
*
www.eeworm.com/read/159990/10581252
class extend.class
www.eeworm.com/read/159990/10581258
java extend.java
//one interface can extebd another.
interface a {
void meth1();
void meth2();
}
//b now includes meth1() and meth2()-----it adds meth3().
interface b extends a {
void meth3();
}