代码搜索:operators
找到约 8,993 项符合「operators」的源代码
代码结果 8,993
www.eeworm.com/read/375190/2737826
cpp test_operators.cpp
/*
*
* Copyright (c) 2004
* John Maddock
*
* Use, modification and distribution are subject to the
* Boost Software License, Version 1.0. (See accompanying file
* LICENSE_1_0.txt or copy at h
www.eeworm.com/read/375190/2737938
cpp object_operators.cpp
// Copyright David Abrahams 2002.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include
www.eeworm.com/read/375190/2738059
py operators_wrapper.py
from operators_wrapper_ext import *
class D2(vector): pass
d2 = D2()
for lhs in (v,d,d2):
-lhs
for rhs in (v,d,d2):
lhs + rhs
lhs += rhs
www.eeworm.com/read/375190/2738084
cpp operators_wrapper.cpp
#include "boost/python.hpp"
#include
struct vector
{
virtual ~vector() {}
vector operator+( const vector& ) const
{ return vector(); }
vector& operator+=( const vector&
www.eeworm.com/read/366702/2870640
c operators3.c
// { dg-do assemble }
// GROUPS passed operators
// opr-pl file
// Message-Id:
// From: grahamd@zeus.research.otca.oz.au (Graham Dumpleton)
// Subject: F
www.eeworm.com/read/366702/2870651
c operators24.c
// { dg-do assemble }
// GROUPS passed operators
// opr-new file
// From: rwave!myersn%rwave.roguewave@cs.orst.edu (Nathan Myers)
// Date: Wed, 16 Dec 92 11:55 PST
// Subject: 2.3.2: friend decl
www.eeworm.com/read/366702/2870657
c operators15.c
// { dg-do run }
// GROUPS passed operators
// opr-del file
// Message-Id:
// From: kol@world.std.com (Nikolay Yatsenko)
// Subject: bug report
// Date: Wed, 27 J
www.eeworm.com/read/366702/2870660
c operators32.c
// { dg-do assemble }
// GROUPS passed operators
#include
//
// ffrees space allocated for N-D array
//
template
void ffree(long rows, T** array)
{
for( long i = 0; i < rows; i
www.eeworm.com/read/366702/2870673
c operators25.c
// { dg-do assemble }
// GROUPS passed operators
// opr-new file
// From: gparker@world.std.com (Glenn P Parker)
// Date: Mon, 25 Jan 1993 20:43:43 -0500
// Subject: gcc bug
// Message-ID:
www.eeworm.com/read/366702/2870675
c operators28.c
// { dg-do assemble }
// GROUPS passed operators
#include
#include
class new_test
{
int type;
public:
void* operator new(size_t sz, int count, int type);
};
void* new_te