代码搜索:explicit
找到约 10,000 项符合「explicit」的源代码
代码结果 10,000
www.eeworm.com/read/256529/11990753
bas ddwordpad.bas
Attribute VB_Name = "modDDWordPad"
' Portions of the code are copyright 1995, Microsoft Corporation
Option Explicit
www.eeworm.com/read/153678/12013557
cpp statcast.cpp
//: C24:Statcast.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Examples of static_cast
www.eeworm.com/read/152747/12089730
vb application.designer.vb
'------------------------------------------------------------------------------
'
' This code was generated by a tool.
' Runtime Version:2.0.50727.42
'
' Changes to
www.eeworm.com/read/152747/12089755
vb application.designer.vb
'------------------------------------------------------------------------------
'
' This code was generated by a tool.
' Runtime Version:2.0.50727.42
'
' Changes to
www.eeworm.com/read/152747/12089797
vb application.designer.vb
'------------------------------------------------------------------------------
'
' This code was generated by a tool.
' Runtime Version:2.0.50727.42
'
' Changes to
www.eeworm.com/read/152747/12089858
vb application.designer.vb
'------------------------------------------------------------------------------
'
' This code was generated by a tool.
' Runtime Version:2.0.50727.42
'
' Changes to
www.eeworm.com/read/152747/12089873
vb application.designer.vb
'------------------------------------------------------------------------------
'
' This code was generated by a tool.
' Runtime Version:2.0.50727.42
'
' Changes to
www.eeworm.com/read/152447/12112778
fdo t_lcdclk.fdo
## NOTE: Do not edit this file.
## Autogenerated by ProjNav (creatfdo.tcl) on Mon Apr 26 17:48:38 中国标准时间 2004
##
vlib work
vcom -just e -93 -explicit lcdclk.vhd
vcom -skip e -93 -explicit lcdc
www.eeworm.com/read/150612/12282373
bas mmanipulatemsgbox.bas
Attribute VB_Name = "MManipulateMsgBox"
Option Explicit
' demo project showing how to use the API to manipulate a messagebox
' by Bryan Stafford of New Vision Software
www.eeworm.com/read/150547/12286891
asm expimp.asm
;
; Test of explicitly and implicitly sized operands
;
add esi,2 ; Implicit
add esi,123456h ; Implicit
add esi,byte 2 ; Explicit
add esi,dword 2 ; Explicit
add esi,dword 123456h ;