| /frameworks/compile/slang/BitWriter_3_2/ |
| ValueEnumerator.cpp | 43 EnumerateAttributes(cast<Function>(I)->getAttributes()); 72 // Enumerate types used by function bodies and argument lists. 75 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); 79 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) 85 // These will get enumerated during function-incorporation. 230 /// EnumerateMDNodeOperands - Enumerate all non-function-local values 252 // In the module-level pass, skip function-local nodes themselves, but 269 // Enumerate all non-function-local operands. 274 /// EnumerateFunctionLocalMetadataa - Incorporate function-local metadata 278 "EnumerateFunctionLocalMetadata called on non-function-local mdnode!") [all...] |
| /external/guava/guava/src/com/google/common/util/concurrent/ |
| Futures.java | 31 import com.google.common.base.Function; 69 * and a {@link Function} that maps from {@link Exception} instances into the 72 * <p>The given mapping function will be applied to an 80 ListenableFuture<V> future, Function<Exception, X> mapper) { 108 return Futures.makeChecked(future, new Function<Exception, X>() { 151 new Function<Exception, X>() { 163 * applying the given {@code Function} to the result of the original {@code 168 * Function<RowKey, ListenableFuture<QueryResult>> queryFunction = 169 * new Function<RowKey, ListenableFuture<QueryResult>>() { 188 * chain} function, all other registered but unexecuted listeners ar [all...] |
| /external/llvm/lib/Analysis/IPA/ |
| InlineCost.cpp | 51 // The called function. 52 Function &F; 72 // this call through the inlinable section of the function, and account for 75 // can cause dramatic shifts in the cost of inlining a function. 78 // Keep track of the values which map back (through function arguments) to 103 bool simplifyCallSite(Function *F, CallSite CS); 112 void visit(Function *); void visit(Function &); 138 Function &Callee, int Threshold) 170 /// \brief Test whether the given value is an Alloca-derived function argument [all...] |
| CallGraphSCCPass.cpp | 13 // call-graph in SCC order: that is, they process function bottom-up, except for 23 #include "llvm/IR/Function.h" 145 if (Function *F = (*I)->getFunction()) { 152 // The function pass(es) modified the IR, they may have clobbered the 168 /// This function returns true if it devirtualized an existing function call, 170 /// a function pass like GVN optimizes away stuff feeding the indirect call. 192 Function *F = CGN->getFunction(); 195 // Walk the function body looking for call sites. Sync up the call sites in 196 // CGN with those actually in the function [all...] |
| /ndk/build/core/ |
| definitions-utils.mk | 39 # Function : remove-duplicates 43 # Note : This is equivalent to the 'uniq' function provided by GMSL, 64 # Function : clear-vars 74 # Function : filter-by 76 # 2: predicate function, will be called as $(call $2,<name>) 79 # Returns : elements of $1 that satisfy the predicate function $2 98 # Function : filter-out-by 100 # 2: predicate function, will be called as $(call $2,<name>) 103 # Returns : elements of $1 that do not satisfy the predicate function $2 122 # Function : find-firs [all...] |
| /packages/apps/Calculator/ |
| arity-2.1.2.jar | |
| /external/chromium/testing/gmock/include/gmock/ |
| gmock-generated-function-mockers.h | 2 // pump.py gmock-generated-function-mockers.h.pump 38 // This file implements function mockers of various arities. 65 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 85 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 106 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 127 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 149 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 172 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 196 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 221 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple [all...] |
| /external/clang/lib/CodeGen/ |
| CGCXX.cpp | 204 llvm::Function *fn = 205 cast<llvm::Function>(GetAddrOfCXXConstructor(ctor, ctorType, &fnInfo)); 228 return cast<llvm::Function>(GetOrCreateLLVMFunction(name, fnType, GD, 268 llvm::Function *fn = 269 cast<llvm::Function>(GetAddrOfCXXDestructor(dtor, dtorType, &fnInfo)); 291 return cast<llvm::Function>(GetOrCreateLLVMFunction(name, fnType, GD, 362 // Compute the function type we're calling.
|
| /external/llvm/lib/Transforms/IPO/ |
| StripSymbols.cpp | 153 else if (!isa<Function>(C)) 244 if (Function *Declare = M.getFunction("llvm.dbg.declare")) { 253 if (Function *DbgVal = M.getFunction("llvm.dbg.value")) { 273 for (Function::iterator FI = MI->begin(), FE = MI->end(); FI != FE; 300 Function *Declare = M.getFunction("llvm.dbg.declare"); 392 if (Function *F = DISubprogram(*I).getFunction()) 401 // to hold debug info for dead function's local variables.
|
| ArgumentPromotion.cpp | 13 // argument is *only* loaded, then it can pass the value into the function 18 // This pass also handles aggregate arguments that are passed into a function, 21 // more than three operands to the function, because passing thousands of 79 CallGraphNode *DoPromotion(Function *F, 117 /// PromoteArguments - This method checks the specified function to see if there 118 /// are any promotable arguments and if it is safe to promote the function (for 123 Function *F = CGN->getFunction(); 131 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); 138 // transform functions that have indirect callers. Also see if the function 168 << " than " << maxElements << " arguments to the function.\n") [all...] |
| /external/v8/test/mjsunit/ |
| mirror-function.js | 31 function MirrorRefCache(json_refs) { 39 MirrorRefCache.prototype.lookup = function(handle) { 43 function testFunctionMirror(f) { 59 assertEquals('function', mirror.type()); 61 assertEquals("Function", mirror.className()); 74 assertEquals('function', fromJSON.type); 75 assertEquals('Function', fromJSON.className); 76 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type); 77 assertEquals('Function', refs.lookup(fromJSON.constructorFunction.ref).name); 88 testFunctionMirror(function(){}); [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/ |
| FrameSummaryViewPage.java | 19 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 84 "Function", 156 l.setText("Per OpenGL Function Statistics:"); 262 final Map<Function, PerCallStats> cumulativeStats = 263 new EnumMap<Function, PerCallStats>(Function.class); 322 /** Cumulative stats maintained for each type of OpenGL Function in a particular frame. */ 356 Function f = (Function) ((Map.Entry<?, ?>) element).getKey(); 429 case 0: // function nam [all...] |
| /external/llvm/lib/Analysis/ |
| Lint.cpp | 48 #include "llvm/IR/Function.h" 70 void visitFunction(Function &F); 117 virtual bool runOnFunction(Function &F); 174 // function. 176 bool Lint::runOnFunction(Function &F) { 188 void Lint::visitFunction(Function &F) { 190 // fairly common mistake to neglect to name a function. 192 "Unusual: Unnamed function with non-local linkage", &F); 204 if (Function *F = dyn_cast<Function>(findValue(Callee, /*OffsetOk=*/false))) [all...] |
| AliasDebugger.cpp | 61 for (Function::arg_iterator AI = I->arg_begin(), AE = I->arg_end(); 64 for (Function::const_iterator FI = I->begin(), FE = I->end();
|
| DomPrinter.cpp | 11 // a dom.<fnname>.dot or postdom.<fnname>.dot file for each function in the 13 // function. 43 return DOTGraphTraits<const Function*> 46 return DOTGraphTraits<const Function*> 121 "View dominance tree of function", false, false) 125 "View dominance tree of function (with no function bodies)", 130 "View postdominance tree of function", false, false) 134 "View postdominance tree of function " 135 "(with no function bodies)" [all...] |
| /external/guava/guava-tests/test/com/google/common/util/concurrent/ |
| FuturesTest.java | 31 import com.google.common.base.Function; 188 Function<Foo, BarChild> function = new Function<Foo, BarChild>() { local 193 Bar bar = Futures.transform(future, function).get(); 208 // This function adds the holder's value to the input value. 209 Function<Integer, Integer> adder = new Function<Integer, Integer>() { 224 // Repeated calls yield the same value even though the function's behavior 304 private static <I, O> Function<I, O> newOneTimeValueReturner(final O output) [all...] |
| /external/llvm/lib/IR/ |
| Core.cpp | 297 /*--.. Operations on function types ........................................--*/ [all...] |
| /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/ |
| binaryajax.js | 9 var BinaryFile = function(strData, iDataOffset, iDataLength) { 14 this.getRawData = function() { 21 this.getByteAt = function(iOffset) { 27 this.getByteAt = function(iOffset) { 32 this.getLength = function() { 36 this.getSByteAt = function(iOffset) { 44 this.getShortAt = function(iOffset, bBigEndian) { 51 this.getSShortAt = function(iOffset, bBigEndian) { 58 this.getLongAt = function(iOffset, bBigEndian) { 70 this.getSLongAt = function(iOffset, bBigEndian) [all...] |
| /external/guava/guava-tests/test/com/google/common/collect/ |
| ConcurrentHashMultisetBasherTest.java | 19 import com.google.common.base.Function; 86 new Function<String, Integer>() {
|
| ForwardingTestCase.java | 19 import com.google.common.base.Function; 98 new Function<Class<?>, String>() {
|
| /external/guava/guava-tests/test/com/google/common/io/ |
| LineBufferTest.java | 19 import com.google.common.base.Function; 66 new Function<String, String>() {
|
| /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/llvm/include/llvm/CodeGen/ |
| SelectionDAGISel.h | 99 /// FIXME: This is a static member function because the MSP430/X86 209 /// CheckPatternPredicate - This function is generated by tblgen in the 217 /// CheckNodePredicate - This function is generated by tblgen in the target. 253 /// \brief Perform instruction selection on all basic blocks in the function. 254 void SelectAllBasicBlocks(const Function &Fn); 270 /// given function. 271 void LowerArguments(const Function &F);
|