HomeSort by relevance Sort by last modified time
    Searched refs:Function (Results 51 - 75 of 1083) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.3.1-1.js 24 ECMA Section: 15.3.3.1 Properties of the Function Constructor
25 Function.prototype
27 Description: The initial value of Function.prototype is the built-in
28 Function prototype object.
33 This test the value of Function.prototype.
42 var TITLE = "Function.prototype";
47 testcases[tc++] = new TestCase( SECTION, "Function.prototype == Function.proto", true, Function.__proto__ == Function.prototype )
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathFunctions.h 38 class Function : public Expression {
52 Function* createFunction(const String& name, const Vector<Expression*>& args = Vector<Expression*>());
  /external/guava/guava/src/com/google/common/base/
Functions.java 31 * Static utility methods pertaining to {@code Function} instances.
44 * Returns a function that calls {@code toString()} on its argument. The function does not accept
47 * <p><b>Warning:</b> The returned function may not be <i>consistent with equals</i> (as
48 * documented at {@link Function#apply}). For example, this function yields different results for
51 public static Function<Object, String> toStringFunction() {
56 private enum ToStringFunction implements Function<Object, String> {
71 * Returns the identity function.
74 public static <E> Function<E, E> identity()
    [all...]
Function.java 30 public interface Function<F, T> {
32 * Returns the result of applying this function to {@code input}. This method is <i>generally
38 * Objects.equal}{@code (a, b)} implies that {@code Objects.equal(function.apply(a),
39 * function.apply(b))}.
42 * @throws NullPointerException if {@code input} is null and this function does not accept null
48 * Indicates whether another object is equal to this function.
52 * {@link Function} that it considers <i>interchangeable</i> with this one. "Interchangeable"
  /external/llvm/lib/Transforms/IPO/
PartialInlining.cpp 11 // that surrounds the body of the function.
40 Function* unswitchFunction(Function* F);
50 Function* PartialInliner::unswitchFunction(Function* F) {
51 // First, verify that this function is an unswitching candidate...
71 // Clone the function, so that we can hack away on it.
73 Function* duplicateFunction = CloneFunction(F, VMap,
114 for (Function::iterator FI = duplicateFunction->begin(),
125 Function* extractedFunctio
    [all...]
  /external/compiler-rt/make/
util.mk 6 # Function: streq LHS RHS
13 # Function: strneq LHS RHS
18 # Function: contains list item
23 # Function: is_subset a b
27 # Function: set_difference a b
31 # Function: Set variable value
36 # Function: Append variable value
41 # Function: IsDefined variable
46 # Function: IsUndefined variable
51 # Function: VarOrDefault variable default-valu
    [all...]
  /external/llvm/lib/IR/
Function.cpp 1 //===-- Function.cpp - Implement the Global object classes ----------------===//
10 // This file implements the Function class for the IR library.
14 #include "llvm/IR/Function.h"
36 template class llvm::SymbolTableListTraits<Argument, Function>;
37 template class llvm::SymbolTableListTraits<BasicBlock, Function>;
45 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
49 // Make sure that we get added to a function
57 void Argument::setParent(Function *parent) {
66 /// function. For example in "void foo(int a, float b)" a is 0 and b is 1.
68 const Function *F = getParent()
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
EnumsTest.java 44 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
45 assertEquals(TestEnum.CHEETO, function.apply("CHEETO"));
46 assertEquals(TestEnum.HONDA, function.apply("HONDA"));
47 assertEquals(TestEnum.POODLE, function.apply("POODLE"));
51 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
52 assertNull(function.apply("cHEETO"));
53 assertNull(function.apply("Honda"));
54 assertNull(function.apply("poodlE"))
58 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
72 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
    [all...]
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 26 // function and return result to a driver, i.e. to a "host program".
32 // conflict of temporary function name with some real
33 // existing function name?
58 // Create some module to put our function into it.
61 // Create the add1 function entry and insert this entry into module M. The
62 // function will have a return type of "int" and take an argument of "int".
64 Function *Add1F =
65 cast<Function>(M->getOrInsertFunction("add1", Type::getInt32Ty(Context),
69 // Add a basic block to the function. As before, it automatically inserts
80 // Get pointers to the integer argument of the add1 function..
    [all...]
  /external/llvm/include/llvm/Analysis/
ConstantsScanner.h 39 inline constant_iterator(const Function *F) : InstI(inst_begin(F)), OpIdx(0) {
46 inline constant_iterator(const Function *F, bool) // end ctor
83 inline constant_iterator constant_begin(const Function *F) {
87 inline constant_iterator constant_end(const Function *F) {
  /external/llvm/include/llvm/CodeGen/
MachineFunctionAnalysis.h 39 return "Machine Function Analysis";
44 virtual bool runOnFunction(Function &F);
MachineFunctionPass.h 50 /// createPrinterPass - Get a machine function printer pass.
54 virtual bool runOnFunction(Function &F);
  /external/llvm/include/llvm/
GVMaterializer.h 25 class Function;
  /external/llvm/include/llvm/IR/
ValueSymbolTable.h 25 class Function;
36 friend class SymbolTableListTraits<Argument, Function>;
37 friend class SymbolTableListTraits<BasicBlock, Function>;
39 friend class SymbolTableListTraits<Function, Module>;
80 /// This function can be used from the debugger to display the
  /external/llvm/include/llvm/Support/
CFG.h 10 // This file defines specializations of GraphTraits that allow Function and
19 #include "llvm/IR/Function.h"
245 // Provide specializations of GraphTraits to be able to treat a function as a
275 // Provide specializations of GraphTraits to be able to treat a function as a
277 // a function is considered to be when traversing the predecessor edges of a BB
309 // GraphTraits specializations for function basic block graphs (CFGs)
312 // Provide specializations of GraphTraits to be able to treat a function as a
314 // except that the root node is implicitly the first node of the function.
316 template <> struct GraphTraits<Function*> : public GraphTraits<BasicBlock*> {
317 static NodeType *getEntryNode(Function *F) { return &F->getEntryBlock();
    [all...]
  /external/llvm/lib/Analysis/
PostDominators.cpp 34 bool PostDominatorTree::runOnFunction(Function &F) {
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 51 virtual void *getPointerToFunction(Function *F);
53 virtual void *recompileAndRelinkFunction(Function *F);
55 virtual void freeMachineCodeForFunction(Function *F);
57 virtual GenericValue runFunction(Function *F,
61 /// specified function by using the dlsym function call. As such it is only
64 /// If AbortOnFailure is false and no function with the given name is
65 /// found, this function silently returns a null pointer. Otherwise,
102 /// this function call is expected to be the contained module. The module
  /external/llvm/lib/Target/MBlaze/
MBlazeIntrinsicInfo.h 27 Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.h 35 virtual bool runOnFunction(Function &F);
NVPTXSplitBBatBar.h 31 virtual bool runOnFunction(Function &F);
  /external/llvm/tools/lli/
RecordingMemoryManager.h 70 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize);
73 void endFunctionBody(const Function *F, uint8_t *FunctionStart,
78 uint8_t* startExceptionTable(const Function* F, uintptr_t &ActualSize);
79 void endExceptionTable(const Function *F, uint8_t *TableStart,
  /external/llvm/tools/opt/
GraphPrinters.cpp 38 virtual bool runOnFunction(Function &F) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Expressions/
instanceof-003-n.js 21 function InstanceOf( object_1, object_2, expect ) {
31 function Gen3(value) {
34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" );
37 Gen3.__proto__.toString = new Function( "return \"(\"+this.name+\" object)\"");
39 function Gen2(value) {
46 function Gen1(value) {
53 function Gen0(value) {
61 function GenA(value) {
64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
70 function GenB(value)
    [all...]
instanceof-004-n.js 21 function InstanceOf( object_1, object_2, expect ) {
31 function Gen3(value) {
34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" );
37 Gen3.__proto__.toString = new Function( "return \"(\"+this.name+\" object)\"");
39 function Gen2(value) {
46 function Gen1(value) {
53 function Gen0(value) {
61 function GenA(value) {
64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
70 function GenB(value)
    [all...]
instanceof-005-n.js 21 function InstanceOf( object_1, object_2, expect ) {
31 function Gen3(value) {
34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" );
37 Gen3.__proto__.toString = new Function( "return \"(\"+this.name+\" object)\"");
39 function Gen2(value) {
46 function Gen1(value) {
53 function Gen0(value) {
61 function GenA(value) {
64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" );
70 function GenB(value)
    [all...]

Completed in 1999 milliseconds

1 23 4 5 6 7 8 91011>>