| /libcore/luni/src/test/java/libcore/sqlite/ |
| QueryTimeoutTest.java | 21 import SQLite.Function; 59 database.create_function("DELAY", 2, new Function() { 60 @Override public void function(FunctionContext functionContext, String[] args) {
|
| /external/chromium/testing/gmock/include/gmock/ |
| gmock-generated-actions.h | 48 // function or method with the unpacked values, where F is a function 56 template <typename Function> 57 static R Invoke(Function function, const ::std::tr1::tuple<>&) { 58 return function(); 72 template <typename Function> 73 static R Invoke(Function function, const ::std::tr1::tuple<A1>& args) { 75 return function(get<0>(args)) [all...] |
| /external/llvm/lib/Target/R600/ |
| AMDILPeepholeOptimizer.cpp | 27 #include "llvm/IR/Function.h" 55 bool runOnFunction(Function &F); 61 // Function to initiate all of the instruction level optimizations. 66 bool dumpAllIntoArena(Function &F); 69 // it later. This function does the conversions if required. 70 void doAtomicConversionIfNeeded(Function &F); 74 // which should allow the __amdil_is_constant function to be 135 Function *mF; 137 SmallVector< std::pair<CallInst *, Function *>, 16> atomicFuncs; 142 // A template function that has two levels of looping before calling th [all...] |
| /external/llvm/lib/Transforms/Utils/ |
| LowerInvoke.cpp | 85 bool runOnFunction(Function &F); 94 bool insertCheapEHSupport(Function &F); 99 bool insertExpensiveEHSupport(Function &F); 171 bool LowerInvoke::insertCheapEHSupport(Function &F) { 173 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) 199 /// rewriteExpensiveInvoke - Insert code and hack the function to replace the 265 // First thing we need to do is scan the whole function for values that are 282 Function *F = Invokes.back()->getParent()->getParent(); 291 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); 323 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB [all...] |
| /external/llvm/lib/Linker/ |
| LinkModules.cpp | 351 /// function, which is the entrypoint for this file. 377 std::vector<Function*> LazilyLinkFunctions; 427 bool linkFunctionProto(Function *SrcF); 433 void linkFunctionBody(Function *Dst, Function *Src); 774 /// linkFunctionProto - Link the function in the source module into the 776 bool ModuleLinker::linkFunctionProto(Function *SF) { 796 // Track the function from the source module so we don't attempt to remap 806 Function *NewDF = Function::Create(TypeMap.get(SF->getFunctionType()) [all...] |
| /external/v8/test/mjsunit/harmony/ |
| collections.js | 32 function TestValidSetCalls(m) { 33 assertDoesNotThrow(function () { m.add(new Object) }); 34 assertDoesNotThrow(function () { m.has(new Object) }); 35 assertDoesNotThrow(function () { m.delete(new Object) }); 41 function TestValidMapCalls(m) { 42 assertDoesNotThrow(function () { m.get(new Object) }); 43 assertDoesNotThrow(function () { m.set(new Object) }); 44 assertDoesNotThrow(function () { m.has(new Object) }); 45 assertDoesNotThrow(function () { m.delete(new Object) }); 52 function TestInvalidCalls(m) [all...] |
| /external/apache-xml/src/main/java/org/apache/xpath/functions/ |
| FuncCurrent.java | 37 * Execute the current() function. 40 public class FuncCurrent extends Function 45 * Execute the function. The function must return
|
| FuncLast.java | 32 * Execute the Last() function. 35 public class FuncLast extends Function 84 * Execute the function. The function must return
|
| FuncPosition.java | 32 * Execute the Position() function. 35 public class FuncPosition extends Function 113 * Execute the function. The function must return
|
| 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...] |
| FunctionOneArg.java | 32 public class FunctionOneArg extends Function implements ExpressionOwner 36 /** The first argument passed to the function (at index 0). 41 * Return the first argument passed to the function (at index 0). 44 * function. 52 * Set an argument expression for a function. This method is called by the 74 * Check that the number of arguments passed to this function is correct. 77 * @param argNum The number of arguments that is being passed to the function. 89 * message for this function object. 109 * This function is used to fixup variables from QNames to stack frame
|
| /external/chromium/chrome/common/ |
| sqlite_utils.h | 207 // Sqlite3's sqlite3_finalize() function should not be called directly 251 typedef void (*Function)(void*); 255 int bind_blob(int index, const void* value, int value_len, Function dtor); 298 Function dtor); 313 Function dtor); 381 // function will check that the column is of the correct type (case-sensetive).
|
| /external/clang/test/SemaCXX/ |
| expression-traits.cpp | 37 // them in a member function instead. 66 // basic.lval/5: The result of calling a function that does not return 101 // Same tests with function-call notation 160 // which a nonstatic member function (9.3.2) is invoked. ...The 169 void Function(); 182 static void function(); 217 // qualified-id, or an operator-function-id is a primary- 219 // a function or variable. 220 ASSERT_LVALUE(::Function); // identifier: function [all...] |
| /external/compiler-rt/make/ |
| lib_util.mk | 5 # Function: GetCNAVar variable-name platform-key config arch 14 # Function: SelectFunctionDir config arch function-name optimized 16 # Choose the appropriate implementation directory to use for 'function-name' in 22 $(error SelectFunctionDir: invalid function name "$(3)" ($(strip\ 24 no such function,\ 25 function implemented in multiple directories!!!)))))) 27 # Helper functions that select the entire list of subdirs where a function is 46 # Helper function to select the right set of dirs in generic priority order. 53 # Helper function to select the right set of dirs in optimized priority order [all...] |
| /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
| MapMaker.java | 19 import com.google.common.base.Function; 42 private final Function<? super K, ? extends V> computer; 50 ExpiringComputingMap(long expirationMillis, Function<? super K, ? extends V> computer, 248 public <K, V> ConcurrentMap<K, V> makeComputingMap(Function<? super K, ? extends V> computer) {
|
| /external/guava/guava-tests/test/com/google/common/collect/ |
| FauxveridesTest.java | 25 import com.google.common.base.Function; 212 new Function<TypeVariable<?>, TypeParameterSignature>() { 278 private static final Function<Type, String> SIMPLE_NAME_GETTER = 279 new Function<Type, String>() {
|
| /external/llvm/bindings/ocaml/analysis/ |
| llvm_analysis.mli | 20 (** [verify_function f] returns [None] if the function [f] is valid, and 31 (** [verify_function f] returns if the function [f] is valid, but prints a 38 the current function with the code for each basic block inside. 39 See [llvm::Function::viewCFG]. *) 44 See [llvm::Function::viewCFGOnly]. *)
|
| /external/llvm/lib/Analysis/ |
| CodeMetrics.cpp | 17 #include "llvm/IR/Function.h" 35 if (const Function *F = CS.getCalledFunction()) { 36 // If a function is both internal and has a single use, then it is 42 // If this call is to function itself, then the function is recursive. 83 // for example) would be referring to the original function, and this indirect 84 // jump would jump from the inlined copy of the function into the original 85 // function which is extremely undefined behavior. 87 // with indirectbr's as long as no other function or global references the 88 // blockaddress of a block within the current function. And as a QOI issue [all...] |
| CostModel.cpp | 24 #include "llvm/IR/Function.h" 51 virtual bool runOnFunction(Function &F); 54 /// The function that we analyze. 55 Function *F; 77 CostModelAnalysis::runOnFunction(Function &F) { 213 for (Function::iterator B = F->begin(), BE = F->end(); B != BE; ++B) {
|
| /external/llvm/lib/CodeGen/ |
| UnreachableBlockElim.cpp | 34 #include "llvm/IR/Function.h" 44 virtual bool runOnFunction(Function &F); 65 bool UnreachableBlockElim::runOnFunction(Function &F) { 69 for (df_ext_iterator<Function*, SmallPtrSet<BasicBlock*, 8> > I = 76 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
|
| /external/llvm/lib/ExecutionEngine/Interpreter/ |
| Interpreter.cpp | 72 /// run - Start execution with the specified function and arguments. 75 Interpreter::runFunction(Function *F, 77 assert (F && "Function *F was null at entry to run()"); 79 // Try extra hard not to pass extra args to a function that isn't 82 // passed, and the interpreter barfs if you pass a function more 91 // Set up the function call. 94 // Start executing the function.
|
| /external/llvm/lib/ExecutionEngine/MCJIT/ |
| MCJIT.cpp | 19 #include "llvm/IR/Function.h" 69 /// this function call is expected to be the contained module. The module 147 void *MCJIT::getPointerToFunction(Function *F) { 176 void *MCJIT::recompileAndRelinkFunction(Function *F) { 180 void MCJIT::freeMachineCodeForFunction(Function *F) { 184 GenericValue MCJIT::runFunction(Function *F, 186 assert(F && "Function *F was null at entry to run()"); 195 "Wrong number of arguments passed into function!"); 210 // Call the function. 223 // Call the function [all...] |
| /external/llvm/lib/Target/ |
| Mangler.cpp | 19 #include "llvm/IR/Function.h" 160 const Function *F, const DataLayout &TD) { 163 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end(); 205 if (const Function *F = dyn_cast<Function>(GV)) {
|
| /external/llvm/lib/Target/NVPTX/ |
| NVPTXLowerAggrCopies.cpp | 17 #include "llvm/IR/Function.h" 39 LLVMContext &Context, Function &F) { 81 Function &F) { 108 bool NVPTXLowerAggrCopies::runOnFunction(Function &F) { 120 for (Function::iterator BI = F.begin(), BE = F.end(); BI != BE; ++BI) {
|
| /external/llvm/lib/Transforms/IPO/ |
| GlobalDCE.cpp | 105 std::vector<Function*> DeadFunctions; 174 // Otherwise this must be a function object. We have to scan the body of 175 // the function looking for constants and global values which are used as 178 Function *F = cast<Function>(G); 180 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
|