代码搜索:Operator

找到约 10,000 项符合「Operator」的源代码

代码结果 10,000
www.eeworm.com/read/470720/1448029

c operator2.c

// PRMS Id: 6018 // Build don't link: class string { char *p; public: string(const char* s) ;// { p == s; } operator const char*() ;// { return s; } }; void f4(string& s) { *s;
www.eeworm.com/read/470693/1456314

c operator1.c

typedef struct _GdkDrawable GdkDrawable; typedef struct _GdkDrawable GdkBitmap; typedef struct _GdkDrawable GdkPixmap; class Drawable { public: operator GdkDrawable* () const; }; class
www.eeworm.com/read/470693/1456608

c operator1.c

// Tests whether g++ can handle large number of operators // { dg-do compile } #define OP0(n) struct I##n { int i; }; operator I##n (); #define OP1(n) OP0(n) #define OP2(n) OP1(n##0) OP1(n##1) OP1(n#
www.eeworm.com/read/470693/1456715

c operator1.c

// Test that conversions to base classes happen when calling // operators. // { dg-do run } extern "C" void abort (); struct B1; struct B2; B2* p; B1* p2; struct B1 { virtual void f () {} }; s
www.eeworm.com/read/470693/1458242

c operator1.c

// Build don't link: // Copyright (C) 2000 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 7 Nov 2000 // Origin: bug 510 wolfgang.bangerth@iwr.uni-heidelberg.
www.eeworm.com/read/470693/1459975

c operator2.c

// PRMS Id: 6018 // Build don't link: class string { char *p; public: string(const char* s) ;// { p == s; } operator const char*() ;// { return s; } }; void f4(string& s) { *s;
www.eeworm.com/read/463239/1538865

v operator_group.v

vti_encoding:SR|utf8-nl vti_timelastmodified:TR|12 Jun 2002 17:58:26 -0000 vti_extenderversion:SR|5.0.2.4330 vti_lineageid:SR|{A66C368B-EC13-43DF-9401-9840DEE6AD6E} vti_cacheddtm:TX|12 Jun 2002 17
www.eeworm.com/read/463239/1538892

v operator_group.v

module operator_group (sum1, sum2, a, b, c, d); output [4: 0] sum1, sum2; input [3: 0] a, b, c, d; assign sum1 = a + b + c + d; assign sum2 = (a + b) + (c + d); endmodule
www.eeworm.com/read/458626/1585333

java operator_end.java

/** * Decorator Pattern */ package cn.edu.nju.software.ruse; /** * @author spring * */ public class Operator_END extends Operator { /* (non-Javadoc) * @see main.Operator#getPRI()
www.eeworm.com/read/458626/1585334

java operator_filename.java

/** * */ package cn.edu.nju.software.ruse; import java.io.File; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.uti