Searched refs:operator (Results 1 - 25 of 39) sorted by relevance

12

/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());
/openjdk7/jdk/src/windows/native/sun/windows/
H A DDevices.h51 Devices* operator->() { return devices; }
55 InstanceAccess& operator=(const InstanceAccess&);
56 InstanceAccess* operator&();
H A Dawt_DCHolder.h48 operator HDC()
56 operator HBITMAP()
H A Dawt_Debug.h50 extern void * operator new(size_t size, const char * filename, int linenumber);
51 extern void * operator new[](size_t size, const char * filename, int linenumber);
55 extern void operator delete(void *ptr, const char*, int);
58 extern void operator delete(void *ptr) throw();
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 () () {
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DCharSubstitutionFilter.h66 * The replacement operator. Not allowed!
70 CharSubstitutionFilter &operator=(const CharSubstitutionFilter &other); // forbid copying of this class
H A DGDEFMarkFilter.h52 GDEFMarkFilter &operator=(const GDEFMarkFilter &other); // forbid copying of this class
H A DGlyphPosnLookupProc.h73 GlyphPositioningLookupProcessor &operator=(const GlyphPositioningLookupProcessor &other); // forbid copying of this class
H A DGlyphSubstLookupProc.h76 GlyphSubstitutionLookupProcessor &operator=(const GlyphSubstitutionLookupProcessor &other); // forbid copying of this class
H A DNonContextualGlyphSubstProc.h64 NonContextualGlyphSubstitutionProcessor &operator=(const NonContextualGlyphSubstitutionProcessor &other); // forbid copying of this class
H A DNonContextualGlyphSubstProc2.h64 NonContextualGlyphSubstitutionProcessor2 &operator=(const NonContextualGlyphSubstitutionProcessor2 &other); // forbid copying of this class
H A DSubtableProcessor.h66 SubtableProcessor &operator=(const SubtableProcessor &other); // forbid copying of this class
H A DSubtableProcessor2.h66 SubtableProcessor2 &operator=(const SubtableProcessor2 &other); // forbid copying of this class
H A DStateTableProcessor.h80 StateTableProcessor &operator=(const StateTableProcessor &other); // forbid copying of this class
H A DStateTableProcessor2.h81 StateTableProcessor2 &operator=(const StateTableProcessor2 &other); // forbid copying of this class
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 DGlyphIterator.h123 GlyphIterator &operator=(const GlyphIterator &other); // forbid copying of this class
H A DLookupProcessor.h106 LookupProcessor &operator=(const LookupProcessor &other); // forbid copying of this class
/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/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DParticleBinder.java213 String operator;
214 if(mg.getCompositor()==XSModelGroup.CHOICE) operator = "Or";
215 else operator = "And";
226 if(i!=size-1) name.append(operator);
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DResourceManager.h82 IManagedResource& operator=(const IManagedResource&);
118 D3DResource& operator=(const D3DResource&);
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArea.java189 AreaOp operator;
191 operator = new AreaOp.EOWindOp();
193 operator = new AreaOp.NZWindOp();
195 return operator.calculate(curves, EmptyCurves);
/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) {

Completed in 97 milliseconds

12