| /external/llvm/tools/llvm-nm/ |
| llvm-nm.cpp | 260 if (isa<Function>(GV) && GV.hasInternalLinkage()) return 't'; 261 if (isa<Function>(GV)) return 'T'; 266 if (isa<Function>(AliasedGV)) return 'T';
|
| /external/clang/lib/AST/ |
| Decl.cpp | 83 // the argument function 'compare'. That 'has_match' is a value 343 /// function template specialization. 488 // - an object, reference, function or function template that is 524 // A non-member function template can have internal linkage; any 526 const FunctionDecl *Function = 0; 529 Function = FunTmpl->getTemplatedDecl(); 531 Function = cast<FunctionDecl>(D); 534 if (Function->getStorageClass() == SC_Static) 608 // variable or function with external linkage unles [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
| GLProtoBuf.java | 29 public enum Function 517 public static final Function glGetnUniformivEXT = glGetnUniformfvEXT; 522 public static Function valueOf(int value) { [all...] |
| /prebuilts/tools/common/m2/internal/jaxen/jaxen/1.1.1/ |
| jaxen-1.1.1.jar | |
| /external/chromium/testing/ |
| gmock_mutant.h | 17 // DispatchToMethod/Function supports two sets of arguments: pre-bound (P) and 19 // DispatchToMethod/Function will also try to call the selected method or 20 // function even if provided pre-bound arguments does not match exactly with 21 // the function signature hence the X1, X2 ... XN parameters in CreateFunctor. 118 template <typename R, typename Function> 119 inline R DispatchToFunction(Function function, 122 return (*function)(); 132 template <typename R, typename Function, typename C1> 133 inline R DispatchToFunction(Function function [all...] |
| /external/apache-xml/src/main/java/org/apache/xpath/functions/ |
| FuncExtFunction.java | 43 public class FuncExtFunction extends Function 48 * The namespace for the extension function, which should not normally 69 * function. 75 * This function is used to fixup variables from QNames to stack frame 102 * Return the namespace of the extension function. 104 * @return The namespace of the extension function. 112 * Return the name of the extension function. 114 * @return The name of the extension function. 122 * Return the method key of the extension function. 124 * @return The method key of the extension function [all...] |
| /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/ |
| sorttable.js | 30 init: function() { 31 // quit if this function has already been called 33 // flag this function so we don't do the same thing twice 42 forEach(document.getElementsByTagName('table'), function(table) { 50 makeSortable: function(table) { 92 if (mtch && typeof sorttable["sort_"+override] == 'function') { 100 dean_addEvent(headrow[i],"click", function(e) { 131 forEach(theadrow.childNodes, function(cell) { 185 guessType: function(table, column) { 218 getInnerText: function(node) [all...] |
| /external/clang/examples/clang-interpreter/ |
| main.cpp | 32 // This function isn't referenced outside its translation unit, but it 36 // without being given the address of a function in the main executable). 55 llvm::Function *EntryFn = Mod->getFunction("main"); 57 llvm::errs() << "'main' function not found in module.\n";
|
| /external/clang/include/clang/Sema/ |
| Initialization.h | 46 /// \brief The entity being initialized is a function parameter. 48 /// \brief The entity being initialized is the result of a function call. 148 /// function, throwing an object, performing an explicit cast, or 218 /// \brief Create the initialization entity for the result of a function. 342 /// the result of a function call. 571 /// \brief Resolve the address of an overloaded function to a specific 572 /// function declaration. 589 /// function or via a constructor. 634 /// \brief Passing zero to a function where OpenCL event_t is expected. 649 FunctionDecl *Function; [all...] |
| /external/clang/lib/CodeGen/ |
| CGBlocks.h | 33 class Function; 190 /// True if the block needs a custom copy or dispose function.
|
| CodeGenFunction.h | 1 //===-- CodeGenFunction.h - Per-Function state for LLVM CodeGen -*- C++ -*-===// 10 // This is the internal per-function state used for llvm translation. 126 /// arbitrary position in a function. 543 /// CodeGenFunction - This class organizes the per-function state that is used 577 /// CurFuncDecl - Holds the Decl for the current function or ObjC method. 584 llvm::Function *CurFn; 586 /// CurGD - The GlobalDecl for the current function being compiled. 597 /// iff the function has no return value. 612 /// \brief Sanitizer options to use for this function. 669 /// A function to call to enter the catch [all...] |
| /external/guava/guava/src/com/google/common/base/ |
| Equivalence.java | 119 * {@code function} to the argument, then evaluating using {@code this}. That is, for any pair of 121 * equivalence.onResultOf(function).equivalent(a, b)} is true if and only if {@code 122 * equivalence.equivalent(function.apply(a), function.apply(b))} is true. 129 * <p>{@code function} will never be invoked with a null value. 131 * <p>Note that {@code function} must be consistent according to {@code this} equivalence 132 * relation. That is, invoking {@link Function#apply} multiple times for a given value must return 140 public final <F> Equivalence<F> onResultOf(Function<F, ? extends T> function) { 141 return new FunctionalEquivalence<F, T>(function, this) [all...] |
| /external/guava/guava/src/com/google/common/collect/ |
| Iterables.java | 25 import com.google.common.base.Function; 691 * Returns an iterable that applies {@code function} to each element of {@code 703 final Function<? super F, ? extends T> function) { 705 checkNotNull(function); 709 return Iterators.transform(fromIterable.iterator(), function); [all...] |
| /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
| Iterables.java | 24 import com.google.common.base.Function; 649 * Returns an iterable that applies {@code function} to each element of {@code 661 final Function<? super F, ? extends T> function) { 663 checkNotNull(function); 667 return Iterators.transform(fromIterable.iterator(), function); [all...] |
| /external/guava/guava-tests/test/com/google/common/base/ |
| EquivalenceTest.java | 53 private enum LengthFunction implements Function<String, Integer> {
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
| parser.ml | 143 raise (Stream.Error "expected function name in prototype") 148 Ast.Function (p, e) 154 Ast.Function (Ast.Prototype ("", [||]), e)
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
| parser.ml | 180 raise (Stream.Error "expected function name in prototype") 185 Ast.Function (p, e) 191 Ast.Function (Ast.Prototype ("", [||]), e)
|
| /external/llvm/include/llvm/Analysis/ |
| DominanceFrontier.h | 11 // dominance frontier for a function. 29 /// dominance frontiers for a function. 170 virtual bool runOnFunction(Function &) {
|
| /external/llvm/include/llvm/IR/ |
| Metadata.h | 88 /// FunctionLocalBit - This bit is set if this MDNode is function local. 90 /// something in a function, like an argument, basicblock, or instruction. 121 // getWhenValsUnresolved - Construct MDNode determining function-localness 147 /// isFunctionLocal - Return whether MDNode is local to a function. 152 // getFunction - If this metadata is function-local and recursively has a 153 // function-local operand, return the first such operand's parent function. 156 const Function *getFunction() const;
|
| /external/llvm/include/llvm/ |
| LinkAllPasses.h | 31 #include "llvm/IR/Function.h" 169 ((llvm::Function*)0)->viewCFGOnly();
|
| /external/llvm/lib/ExecutionEngine/JIT/ |
| JITMemoryManager.cpp | 283 /// sections, one for function stubs, one for the functions themselves. We 284 /// have to do this because we may need to emit a function stub while in the 285 /// middle of emitting a function, and we don't know how large the function we 334 /// specified function by using the dlsym function call. 349 /// startFunctionBody - When a function starts, allocate a block of free 351 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize) { 374 DEBUG(dbgs() << "JIT: Allocating another slab of memory for function."); 422 /// endFunctionBody - The function F is now allocated, and takes the memor [all...] |
| /external/llvm/lib/MC/ |
| MCStreamer.cpp | 230 Frame.Function = LastSymbol; 231 // If the function is externally visible, we need to create a local 394 report_fatal_error("No open Win64 EH frame function!"); 400 report_fatal_error("Starting a function before ending the previous one!"); 403 Frame->Function = Symbol; 422 Frame->Function = CurFrame->Function;
|
| /external/llvm/lib/Target/Hexagon/ |
| HexagonISelLowering.h | 72 bool CanReturnSmallStruct(const Function* CalleeFn, 81 /// optimization should implement this function.
|
| /external/llvm/lib/Target/NVPTX/ |
| NVPTXISelLowering.h | 100 /// getFunctionAlignment - Return the Log2 alignment of this function. 101 virtual unsigned getFunctionAlignment(const Function *F) const;
|
| /external/llvm/lib/Target/ |
| TargetMachine.cpp | 16 #include "llvm/IR/Function.h" 66 /// \brief Reset the target options based on the function's attributes. 68 const Function *F = MF->getFunction();
|