Searched defs:operator (Results 26 - 50 of 81) sorted by relevance

1234

/openjdk7/hotspot/src/share/vm/adlc/
H A Dforms.cpp148 const char *NameAndList::operator[](int index) {
324 const Form *FormDict::operator [](const char *name) const {
329 // Disable public use of constructor, copy-ctor, operator =, operator ==
335 FormDict &FormDict::operator =( const FormDict &rhs) {
343 bool FormDict::operator ==(const FormDict &d) const {
H A Dmain.cpp490 void *operator new( size_t size, int, const char *, int ) {
491 return ::operator new( size );
H A Dfilebuff.cpp226 //std::ostream& operator<< ( std::ostream& os, FileBuffRegion &br ) {
227 ostream& operator<< ( ostream& os, FileBuffRegion &br ) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DSimpleContentModel.java142 * @param operator The content model operator.
147 public SimpleContentModel(short operator, QName firstChild, QName secondChild) { argument
161 fOperator = operator;
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.hpp193 Node &operator=(const Node &rhs);
210 // be the "new" New operator.
211 inline void* operator new( size_t x, Compile* C) {
221 void operator delete( void *ptr ) {}
1119 void operator++(int dummy_to_specify_postfix_op)
1122 void operator--()
1128 void operator=(const DUIterator& that)
1181 void operator++(int dummy_to_specify_postfix_op)
1184 void operator--()
1187 void operator
[all...]
H A DcallGenerator.hpp262 void *operator new( size_t x, Compile* C ) { return C->comp_arena()->Amalloc(x); }
263 void operator delete( void * ) { } // fast deallocation
/openjdk7/hotspot/src/share/vm/services/
H A DmemTrackWorker.cpp66 void* MemTrackWorker::operator new(size_t size) {
71 void* MemTrackWorker::operator new(size_t size, const std::nothrow_t& nothrow_constant) {
H A DmemRecorder.hpp56 void* operator new(size_t size, const std::nothrow_t& nothrow_constant) {
62 void* operator new(size_t size) {
67 void operator delete(void* p) {
H A DmemPtr.hpp105 inline operator address() const {
109 inline bool operator == (const MemPointer& other) const {
113 inline MemPointer& operator = (const MemPointer& other) {
229 MemPointerRecord& operator= (const MemPointerRecord& ptr) {
230 MemPointer::operator=(ptr);
345 MemPointerRecord::operator=(*mpe);
350 MemPointerRecord::operator=(*mp);
368 VMMemRegion& operator=(const VMMemRegion& other) {
369 MemPointerRecord::operator=(other);
439 VMMemRegionEx& operator
[all...]
H A DmemBaseline.cpp407 MemBaseline& MemBaseline::operator=(const MemBaseline& other) {
/openjdk7/hotspot/src/share/vm/oops/
H A Dsymbol.cpp39 void* Symbol::operator new(size_t sz, int len, TRAPS) {
46 void* Symbol::operator new(size_t sz, int len, Arena* arena, TRAPS) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.hpp39 operator const char *() const { return _buf; }
H A Dtaskqueue.cpp55 TaskQueueStats & TaskQueueStats::operator +=(const TaskQueueStats & addend)
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_new.cpp62 // use new handler for operator new and malloc
65 // set the function which will be called when operator new or
70 // Called when malloc or operator new runs out of memory. We try to
73 // (1) to indicate that malloc or operator new should retry the
119 // Standard C++ specification which requires that operator new throw
123 void * CDECL operator new(size_t size) throw (std::bad_alloc) {
240 void * CDECL operator new(size_t size, const char *file, int line)
244 return operator new(size);
H A Dawt_ole.h190 operator bool() const { return S_OK==SUCCEEDED(m_hr); }
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDisabledAlgorithmConstraints.java324 KeySizeConstraint.Operator operator =
339 new KeySizeConstraint(operator, length);
371 // operator
405 public KeySizeConstraint(Operator operator, int length) { argument
406 switch (operator) {
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.cpp49 void* StackObj::operator new(size_t size) { ShouldNotCallThis(); return 0; };
50 void StackObj::operator delete(void* p) { ShouldNotCallThis(); };
51 void* _ValueObj::operator new(size_t size) { ShouldNotCallThis(); return 0; };
52 void _ValueObj::operator delete(void* p) { ShouldNotCallThis(); };
54 void* ResourceObj::operator new(size_t size, allocation_type type, MEMFLAGS flags) {
63 res = (address)operator new(size);
71 void ResourceObj::operator delete(void* p) {
87 // Called from operator new() and CollectionSetChooser(),
111 // an embedded or stack object (operator new() does not
138 ResourceObj& ResourceObj::operator
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DbcEscapeAnalyzer.cpp83 void operator=(const ArgumentMap &am) { _bits = am._bits; }
84 bool operator==(const ArgumentMap &am) { return _bits == am._bits; }
85 bool operator!=(const ArgumentMap &am) { return _bits != am._bits; }
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compilation.hpp269 void* operator new(size_t size) { return Compilation::current()->arena()->Amalloc(size); }
270 void* operator new(size_t size, Arena* arena) {
273 void operator delete(void* p) {} // nothing to do
/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.cpp247 void* BufferBlob::operator new(size_t s, unsigned size) {
349 void* RuntimeStub::operator new(size_t s, unsigned size) {
355 // operator new shared by all singletons:
356 void* SingletonBlob::operator new(size_t s, unsigned size) {
H A DvtableStubs.cpp52 void* VtableStub::operator new(size_t size, int code_size) {
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcUtil.hpp147 void* operator new(size_t ignored, void* p) { return p; }
149 void* operator new(size_t size) { return CHeapObj<mtGC>::operator new(size); }
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DgcCause.hpp119 operator const char*() {
/openjdk7/hotspot/agent/src/os/win32/windbg/
H A Dsawindbg.cpp86 operator const char* () {
858 T* operator->() {
/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.hpp256 bool operator ==(const VerificationType& t) const {
260 bool operator !=(const VerificationType& t) const {

Completed in 337 milliseconds

1234