Searched defs:functions (Results 26 - 50 of 52) sorted by relevance

123

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncSubstringAfter.java23 package com.sun.org.apache.xpath.internal.functions;
H A DFuncSubstringBefore.java23 package com.sun.org.apache.xpath.internal.functions;
H A DFuncSum.java23 package com.sun.org.apache.xpath.internal.functions;
H A DFuncSystemProperty.java23 package com.sun.org.apache.xpath.internal.functions;
H A DFuncTranslate.java23 package com.sun.org.apache.xpath.internal.functions;
H A DFuncTrue.java23 package com.sun.org.apache.xpath.internal.functions;
H A DFuncUnparsedEntityURI.java23 package com.sun.org.apache.xpath.internal.functions;
H A DFuncId.java23 package com.sun.org.apache.xpath.internal.functions;
H A DFuncLast.java23 package com.sun.org.apache.xpath.internal.functions;
H A DFuncPosition.java23 package com.sun.org.apache.xpath.internal.functions;
87 // functions. Shouldn't be a problem for last(), and it shouldn't be
H A DFunctionDef1Arg.java23 package com.sun.org.apache.xpath.internal.functions;
33 * Base class for functions that accept one argument that can be defaulted if
H A DFunction.java23 package com.sun.org.apache.xpath.internal.functions;
34 * This is a superclass of all XPath functions. This allows two
140 * and Last(). See respective functions for more detail.
H A DFunction2Args.java23 package com.sun.org.apache.xpath.internal.functions;
31 * Base class for functions that accept two arguments.
H A DFunction3Args.java23 package com.sun.org.apache.xpath.internal.functions;
31 * Base class for functions that accept three arguments.
H A DFunctionOneArg.java23 package com.sun.org.apache.xpath.internal.functions;
31 * Base class for functions that accept one argument.
H A DFunctionMultiArgs.java23 package com.sun.org.apache.xpath.internal.functions;
32 * Base class for functions that accept an undetermined number of multiple
H A DFuncExtFunction.java23 package com.sun.org.apache.xpath.internal.functions;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvFill.java62 List<Function> functions = new ArrayList<Function>(); field in class:SourceFile
175 functions.add(func);
215 error("only comments and blank lines allowed between functions");
232 // file in functions
233 Iterator it = functions.iterator();
240 System.err.println("Warning: the following functions were present in the " +
254 it = functions.iterator();
H A Djni.h157 * possible return values for JNI functions.
771 * We use inlined functions for C++ so that programmers can write:
783 const struct JNINativeInterface_ *functions; member in struct:JNIEnv_
787 return functions->GetVersion(this);
791 return functions->DefineClass(this, name, loader, buf, len);
794 return functions->FindClass(this, name);
797 return functions->FromReflectedMethod(this,method);
800 return functions->FromReflectedField(this,field);
804 return functions->ToReflectedMethod(this, cls, methodID, isStatic);
808 return functions
1907 const struct JNIInvokeInterface_ *functions; member in struct:JavaVM_
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWindowAttributesData.java57 int functions; // MWM_FUNC_* field in class:XWindowAttributesData
69 functions = 0;
H A DXWM.java850 * to be subtracted from the functions. Normalize function spec
854 static int normalizeMotifFunc(int functions) { argument
855 if ((functions & MWMConstants.MWM_FUNC_ALL) == 0) {
856 return functions;
863 f &= ~functions;
901 * Set MWM decorations. Set MWM functions depending on resizability.
903 static void setMotifDecor(XWindow window, boolean resizable, int decorations, int functions) { argument
910 if ((functions & MWMConstants.MWM_FUNC_ALL) != 0
911 && (functions != MWMConstants.MWM_FUNC_ALL))
913 functions
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DFramework.java80 public List<Function> functions; field in class:Framework
166 functions = getNodesFor(rootNode, "function", Function.class, this);
/openjdk7/jdk/src/share/javavm/export/
H A DjdwpTransport.h128 * JDWP functions called by the transport.
193 * Use inlined functions so that C++ code can use syntax such as
201 const struct jdwpTransportNativeInterface_ *functions; member in struct:_jdwpTransportEnv
205 return functions->GetCapabilities(this, capabilities_ptr);
210 return functions->Attach(this, address, attach_timeout, handshake_timeout);
215 return functions->StartListening(this, address, actual_address);
219 return functions->StopListening(this);
223 return functions->Accept(this, accept_timeout, handshake_timeout);
227 return functions->IsOpen(this);
231 return functions
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c639 this functions sets olwm, mwm and EWMH hints for undecorated window at once
661 unsigned long functions; member in struct:PROPMOTIFWMHINTS
682 /* flags for decoration and functions */
685 mwm_hints.functions = 0;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c370 * Utility functions ...
1505 * Set MWM decorations. Infer MWM functions from decorations.
1510 int functions; local
1519 DTRACE_PRINT("WM: setMotifDecor functions = {");
1520 functions = 0;
1524 functions |= MWM_FUNC_ALL;
1529 * descendants not only hide disabled functions away from
1534 functions |= (MWM_FUNC_CLOSE | MWM_FUNC_MOVE | MWM_FUNC_MINIMIZE);
1538 functions |= MWM_FUNC_RESIZE | MWM_FUNC_MAXIMIZE;
1546 XmNmwmFunctions, functions,
[all...]

Completed in 49 milliseconds

123