HomeSort by relevance Sort by last modified time
    Searched defs:Function (Results 26 - 50 of 830) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/util/function/
Function.java 25 package java.util.function;
30 * Represents a function that accepts one argument and produces a result.
35 * @param <T> the type of the input to the function
36 * @param <R> the type of the result of the function
41 public interface Function<T, R> {
44 * Applies this function to the given argument.
46 * @param t the function argument
47 * @return the function result
52 * Returns a composed function that first applies the {@code before}
53 * function to its input, and then applies this function to the result
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Function.java 23 * <code>Function&lt;String,Integer&gt;</code> and transform integers in
29 * <code>Function&lt;Float,Float&gt;</code>.
34 * @param <F> the type of the function input
35 * @param <T> the type of the function output
40 public interface Function<F, T> {
43 * Applies the function to an object of type {@code F}, resulting in an object
53 * Indicates whether some other object is equal to this {@code Function}.
55 * also a {@code Function} and, for every input object {@code o}, it returns
  /external/deqp/framework/randomshaders/
rsgShader.cpp 44 Function::Function (void)
48 Function::Function (const char* name)
53 Function::~Function (void)
121 // \todo [2011-03-08 pyry] Proper function calls
125 void Function::tokenize (GeneratorState& state, TokenStream& str) const
130 // Function name
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D03/Drivers/PciPlatform/
PciPlatform.h 39 UINTN Function;
98 The PlatformPrepController() function can be used to notify the platform driver so that
105 This member function may not perform any error checking on the input parameters. It also
106 does not return any error codes. If this member function detects any error condition, it
121 EFI_SUCCESS - The function completed successfully.
145 EFI_UNSUPPORTED - Function not supported.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pyclbr.py 6 The interface consists of a single function:
34 A function is described by the class Function in this module.
48 __all__ = ["readmodule", "readmodule_ex", "Class", "Function"]
68 class Function:
69 '''Class to represent a top-level Python function'''
174 # it's a function
175 dict[meth_name] = Function(fullmodule, meth_name,
338 elif isinstance(obj, Function):
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/EdkDxeSalLib/Ipf/
EsalServiceLib.c 43 // The protocol contains a function pointer, which is an indirect procedure call.
44 // An indirect procedure call goes through a plabel, and pointer to a function is
70 IN SAL_INTERNAL_EXTENDED_SAL_PROC Function,
77 Register ESAL Class Function and it's asociated global.
78 This function is boot service only!
81 FunctionId - ID of function to register
82 ClassGuid - GUID of function class
83 Function - Function to register under ClassGuid/FunctionId pair
84 ModuleGlobal - Module global for Function.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UfsPciHcPei/
UfsPciHcPei.c 63 The user code starts with this function.
83 UINT16 Function;
117 for (Function = 0; Function < 8; Function++) {
118 SubClass = PciRead8 (PCI_LIB_ADDRESS (Bus, Device, Function, 0x0A));
119 BaseClass = PciRead8 (PCI_LIB_ADDRESS (Bus, Device, Function, 0x0B));
125 PciAnd16 (PCI_LIB_ADDRESS (Bus, Device, Function, PCI_COMMAND_OFFSET), (UINT16)~(EFI_PCI_COMMAND_BUS_MASTER | EFI_PCI_COMMAND_MEMORY_SPACE));
126 PciWrite32 (PCI_LIB_ADDRESS (Bus, Device, Function, PCI_BASE_ADDRESSREG_OFFSET), 0xFFFFFFFF);
127 Size = PciRead32 (PCI_LIB_ADDRESS (Bus, Device, Function, PCI_BASE_ADDRESSREG_OFFSET));
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Pci/Dxe/PciPlatform/
PciPlatform.h 47 UINTN Function;
  /device/linaro/bootloader/edk2/SecurityPkg/Library/OpalPasswordSupportLib/
OpalPasswordSupportNotify.h 38 UINTN Function;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PciPlatform/
PciPlatform.h 52 UINTN Function;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformDxe/
SlotConfig.h 54 UINT8 Function;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
Function.java 19 * $Id: Function.java 468655 2006-10-28 07:12:06Z minchau $
41 public abstract class Function extends Expression
46 * Set an argument expression for a function. This method is called by the
53 * is specified for this function.
63 * Check that the number of arguments passed to this function is correct.
65 * the number of arguments for a specific function type. This method is
68 * @param argNum The number of arguments that is being passed to the function.
80 * message for this function object. This method is meant to be overloaded
90 * Execute an XPath function object. The function must retur
    [all...]
  /external/google-breakpad/src/processor/
module_serializer.h 100 typedef BasicSourceLineResolver::Function Function;
117 RangeMapSerializer<MemAddr, linked_ptr<Function> > functions_serializer_;
simple_serializer-inl.h 32 // Line, Function, PublicSymbol, WindowsFrameInfo and their linked pointers.
168 // Line, Function, PublicSymbol, WindowsFrameInfo.
185 class SimpleSerializer<BasicSourceLineResolver::Function> {
187 typedef BasicSourceLineResolver::Function Function;
190 static size_t SizeOf(const Function &func) {
200 static char *Write(const Function &func, char *dest) {
214 class SimpleSerializer< linked_ptr<BasicSourceLineResolver::Function> > {
215 typedef BasicSourceLineResolver::Function Function;
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/builders/
EnumDeclarationBuildersTest.java 30 import java.util.function.Function;
41 testEnum.addImplementedType(Function.class);
43 assertEquals("import " + Function.class.getName() + ";" + EOL,
46 assertEquals(Function.class.getSimpleName(), testEnum.getImplementedTypes(0).getNameAsString());
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 16 (* variant for function calls. *)
25 (* proto - This type represents the "prototype" for a function, which captures
27 * function takes). *)
30 (* func - This type represents a function definition itself. *)
31 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 19 (* variant for function calls. *)
28 (* proto - This type represents the "prototype" for a function, which captures
30 * function takes). *)
35 (* func - This type represents a function definition itself. *)
36 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 19 (* variant for function calls. *)
31 (* proto - This type represents the "prototype" for a function, which captures
33 * function takes). *)
38 (* func - This type represents a function definition itself. *)
39 type func = Function of proto * expr
  /external/perf_data_converter/src/
builder.h 46 // Adds a function with these attributes to the profile function
48 // this function.
90 // managed by the builder. The fields function and string_table
96 // Holds the information about a function to facilitate deduplication.
97 typedef std::tuple<int64, int64, int64, int64> Function;
100 size_t operator()(const Function &f) const {
111 std::unordered_map<Function, int64, FunctionHasher> functions_;
  /external/python/cpython2/Lib/
pyclbr.py 6 The interface consists of a single function:
34 A function is described by the class Function in this module.
48 __all__ = ["readmodule", "readmodule_ex", "Class", "Function"]
68 class Function:
69 '''Class to represent a top-level Python function'''
176 # it's a function
177 dict[meth_name] = Function(fullmodule, meth_name,
340 elif isinstance(obj, Function):
  /external/python/cpython2/Mac/Modules/fm/
fmsupport.py 3 # The function specifications are generated by scanning the mamager's header file,
69 Function = OSErrWeakLinkFunctionGenerator
  /external/python/cpython2/Mac/Modules/folder/
foldersupport.py 3 # The function specifications are generated by scanning the mamager's header file,
44 Function = OSErrFunctionGenerator
  /external/python/cpython2/Mac/Modules/help/
helpsupport.py 3 # The function specifications are generated by scanning the mamager's header file,
63 Function = OSErrFunctionGenerator
  /external/python/cpython3/Lib/
pyclbr.py 6 The interface consists of a single function:
34 A function is described by the class Function in this module.
48 __all__ = ["readmodule", "readmodule_ex", "Class", "Function"]
68 class Function:
69 '''Class to represent a top-level Python function'''
184 # it's a function
185 dict[meth_name] = Function(fullmodule, meth_name,
348 elif isinstance(obj, Function):
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 16 (* variant for function calls. *)
25 (* proto - This type represents the "prototype" for a function, which captures
27 * function takes). *)
30 (* func - This type represents a function definition itself. *)
31 type func = Function of proto * expr

Completed in 739 milliseconds

12 3 4 5 6 7 8 91011>>