代码搜索:same
找到约 10,000 项符合「same」的源代码
代码结果 10,000
www.eeworm.com/read/340665/3266366
s shmix-3.s
! A SHcompact object, that we will link to a SHmedia object.
! We will be using .text for the SHmedia code and .text.compact for the
! SHcompact code, so we don't get two ISA in the same section.
.se
www.eeworm.com/read/340665/3274011
c lookup23.c
// Test for proper handling of type lookup if base class has field with the
// same name as the containing class.
// Build don't link:
struct a { int a; };
struct b : a {};
b x;
void foo ()
{
x.a
www.eeworm.com/read/340665/3274530
c instantiate5.c
// Build don't run:
// Additional sources: instantiate5.cc instantiate5-main.cc
// `global constructors' are given the same name, based on foo(), on
// both translation units, which is wrong, becaus
www.eeworm.com/read/340665/3275552
c nest19.c
// Build don't link:
// GROUPS passed nested-classes
// This is the first line of file ||t3.C||.
// This code demonstrates a variation of the same problem with nested
// types. In C++, nested typed
www.eeworm.com/read/340665/3275658
c p12306a.c
// prms-id: 12306
// a net report of the same problem as 12306
class a {
public:
int i;
};
class g : virtual public a {
};
class b : virtual public a {
int j;
};
class c : public g, public
www.eeworm.com/read/340665/3276224
c access16.c
// Bug: g++ uses the same binfo for the a subobject of c and the a subobject
// of b, so basetype_paths get bashed improperly.
// Build don't link:
class a {
protected:
virtual void foo() { } // get
www.eeworm.com/read/338546/3315220
g symtabtest.g
grammar SymtabTest;
options {
language=Python;
}
/* Scope of symbol names. Both globals and block rules need to push a new
* symbol table upon entry and they must use the same stack. So, I mu
www.eeworm.com/read/338438/3318046
m xylima.m
% Set XY-limits for all plots in current figure.
% Usage: xylima([xs xe],[ys ye])
% Note: xylima('auto') resets to autoscaling on all graphs
% Or: 'xylima' to set all curves to same as current
www.eeworm.com/read/338438/3318049
m ylima.m
% Set Y-limits for all plots in current figure.
% Usage: ylima([ys ye])
% Note: ylima('auto') resets to autoscaling on all graphs
% Or: 'ylima' to set all curves to same as current axis
% Wr
www.eeworm.com/read/338438/3318071
m xlima.m
% Set X-limits for all plots in current figure.
% Usage: xlima([xs xe])
% Note: xlima('auto') resets to autoscaling on all graphs
% Or: 'xlima' to set all curves to same as current axis
% Wri