Searched defs:operator (Results 1 - 25 of 81) sorted by relevance

1234

/openjdk7/hotspot/src/share/vm/utilities/
H A Dsizes.hpp78 friend ByteSize operator + (ByteSize x, ByteSize y) { return ByteSize(in_bytes(x) + in_bytes(y)); }
79 friend ByteSize operator - (ByteSize x, ByteSize y) { return ByteSize(in_bytes(x) - in_bytes(y)); }
80 friend ByteSize operator * (ByteSize x, int y) { return ByteSize(in_bytes(x) * y ); }
83 friend bool operator == (ByteSize x, ByteSize y) { return in_bytes(x) == in_bytes(y); }
84 friend bool operator != (ByteSize x, ByteSize y) { return in_bytes(x) != in_bytes(y); }
85 friend bool operator < (ByteSize x, ByteSize y) { return in_bytes(x) < in_bytes(y); }
86 friend bool operator <= (ByteSize x, ByteSize y) { return in_bytes(x) <= in_bytes(y); }
87 friend bool operator > (ByteSize x, ByteSize y) { return in_bytes(x) > in_bytes(y); }
88 friend bool operator >= (ByteSize x, ByteSize y) { return in_bytes(x) >= in_bytes(y); }
110 friend WordSize operator
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DoopsHierarchy.hpp106 oopDesc* operator->() const { return obj(); }
107 bool operator==(const oop o) const { return obj() == o.obj(); }
108 bool operator==(void *p) const { return obj() == p; }
109 bool operator!=(const oop o) const { return obj() != o.obj(); }
110 bool operator!=(void *p) const { return obj() != p; }
111 bool operator==(intptr_t p) const { return obj() == (oopDesc*)p; }
112 bool operator!=(intptr_t p) const { return obj() != (oopDesc*)p; }
114 bool operator<(oop o) const { return obj() < o.obj(); }
115 bool operator>(oop o) const { return obj() > o.obj(); }
116 bool operator<
[all...]
/openjdk7/hotspot/src/share/vm/libadt/
H A Dset.hpp129 virtual Set &operator =(const Set &s)=0;
136 virtual Set &operator <<=(uint elem)=0;
137 // virtual Set operator << (uint elem);
140 virtual Set &operator >>=(uint elem)=0;
141 // virtual Set operator >> (uint elem);
144 virtual int operator [](uint elem) const=0;
147 virtual Set &operator &=(const Set &s)=0;
148 // virtual Set operator & (const Set &s) const;
151 virtual Set &operator |=(const Set &s)=0;
152 // virtual Set operator | (cons
[all...]
H A Dvectset.hpp59 Set &operator =(const Set &s); // Set clone; deep-copy guts
60 VectorSet &operator =(const VectorSet &s) // Set clone; deep-copy guts
65 Set &operator <<=(uint elem); // Add member to set
66 VectorSet operator << (uint elem) // Add member to new set
68 Set &operator >>=(uint elem); // Delete member from set
69 VectorSet operator >> (uint elem) // Delete member from new set
72 VectorSet &operator &=(const VectorSet &s); // Intersect sets into first set
73 Set &operator &=(const Set &s); // Intersect sets into first set
74 VectorSet operator & (const VectorSet &s) const
77 VectorSet &operator |
[all...]
H A Dvectset.cpp73 //------------------------------operator=--------------------------------------
74 Set &VectorSet::operator = (const Set &set)
104 //------------------------------operator<<=------------------------------------
106 Set &VectorSet::operator <<= (uint elem)
117 //------------------------------operator>>=------------------------------------
119 Set &VectorSet::operator >>= (uint elem)
129 //------------------------------operator&=-------------------------------------
131 VectorSet &VectorSet::operator &= (const VectorSet &s)
142 //------------------------------operator&=-------------------------------------
143 Set &VectorSet::operator
[all...]
H A Dport.cpp114 ostream &ostream::operator << (const void *ptr)
119 /*ostream &operator << (ostream &os, const void *ptr)
H A Ddict.cpp188 Dict &Dict::operator =( const Dict &d ) {
271 void *Dict::operator [](const void *key) const {
284 int32 Dict::operator ==(const Dict &d2) const {
373 void DictI::operator ++(void) {
H A Dport.hpp166 inline void *operator new( size_t size ) { return malloc(size); }
167 inline void operator delete( void *ptr ) { free(ptr); }
/openjdk7/hotspot/src/share/vm/memory/
H A Dwatermark.hpp53 inline bool operator==(const WaterMark& x, const WaterMark& y) {
57 inline bool operator!=(const WaterMark& x, const WaterMark& y) {
H A Dallocation.inline.hpp84 template <MEMFLAGS F> void* CHeapObj<F>::operator new(size_t size,
95 template <MEMFLAGS F> void* CHeapObj<F>::operator new (size_t size,
106 template <MEMFLAGS F> void CHeapObj<F>::operator delete(void* p){
H A DmemRegion.hpp102 void* operator new(size_t size, ResourceObj::allocation_type type, MEMFLAGS flags) {
103 return ResourceObj::operator new(size, type, flags);
105 void* operator new(size_t size, Arena *arena) {
106 return ResourceObj::operator new(size, arena);
108 void* operator new(size_t size) {
109 return ResourceObj::operator new(size);
112 void operator delete(void* p) {} // nothing to do
/openjdk7/hotspot/src/share/vm/runtime/
H A Dpark.cpp136 // Override operator new and delete so we can ensure that the
143 void * ParkEvent::operator new (size_t sz) {
147 void ParkEvent::operator delete (void * a) {
H A Dhandles.hpp95 oop operator () () const { return obj(); }
96 oop operator -> () const { return non_null_obj(); }
97 bool operator == (oop o) const { return obj() == o; }
98 bool operator == (const Handle& h) const { return obj() == h.obj(); }
156 klassOop operator () () const { return obj(); }
157 Klass* operator -> () const { return as_klass(); }
185 type##Oop operator () () const { return obj(); } \
186 type##Oop operator -> () const { return non_null_obj(); } \
218 type* operator -> () const { return (type*)obj()->klass_part(); } \
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DCHolder.h48 operator HDC()
56 operator HBITMAP()
H A DDevices.h51 Devices* operator->() { return devices; }
55 InstanceAccess& operator=(const InstanceAccess&);
56 InstanceAccess* operator&();
H A Dawt.h266 operator bool() const { return NULL!=m_env; }
267 bool operator !() const { return NULL==m_env; }
268 operator JNIEnv*() const { return m_env; }
269 JNIEnv* operator ->() const { return m_env; }
294 operator T() { return m_localJRef; }
295 operator bool() { return NULL!=m_localJRef; }
296 bool operator !() { return NULL==m_localJRef; }
359 operator LPWSTR() { return getNonEmptyString(); }
360 operator LPARAM() { return (LPARAM)getNonEmptyString(); }
H A DDllUtil.h56 inline FunctionType operator () () {
H A Dawt_Debug.cpp41 void * operator new(size_t size, const char * filename, int linenumber) {
50 void * operator new[](size_t size, const char * filename, int linenumber) {
60 void operator delete(void *ptr, const char*, int) {
64 void operator delete(void *ptr) throw() {
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.hpp59 void operator=(const TempNewSymbol &s) {
71 Symbol* operator -> () const { return _temp; }
72 bool operator == (Symbol* o) const { return _temp == o; }
74 operator Symbol*() { return _temp; }
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddict2.cpp152 Dict &Dict::operator =( const Dict &d ) {
230 const void *Dict::operator [](const void *key) const {
243 int Dict::operator ==(const Dict &d2) const {
340 void DictI::operator ++(void) {
H A Darena.cpp27 void* Chunk::operator new(size_t requested_size, size_t length) {
28 return CHeapObj::operator new(requested_size + length);
31 void Chunk::operator delete(void* p, size_t length) {
32 CHeapObj::operator delete(p);
166 void* CHeapObj::operator new(size_t size){
170 void CHeapObj::operator delete(void* p){
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEGlyphStorage.h329 * This operator allows direct access to the glyph array
330 * using the index operator.
338 inline LEGlyphID &operator[](le_int32 glyphIndex) const;
563 inline LEGlyphID &LEGlyphStorage::operator[](le_int32 glyphIndex) const
H A DLETableReference.h344 const T& operator()(le_uint32 i, LEErrorCode &success) const {
412 LEReferenceTo<T>& operator=(const T* other) {
433 const T *operator->() const { return getAlias(); }
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DOperators.java42 public static final String getOpNames(int operator) { argument
43 return names[operator];
46 // Swap operator array
56 public static final int swapOp(int operator) { argument
57 return swapOpArray[operator];
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DExpression.java41 private Operator operator; field in class:Expression
74 System.out.println("Setting operator on " + ordinal + " to " + o);
76 this.operator = o;
80 return operator;
89 if (operator != null) {
90 b.append(operator.toString());

Completed in 149 milliseconds

1234