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

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Expressions/
instanceof-006.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...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/instanceof/
regress-7635.js 37 * Calls to AddTestCase here. AddTestCase is a function that is defined
54 function Foo() {}
60 AddTestCase( "function Foo() {}; theproto = {}; Foo.prototype = theproto; theproto instanceof Foo",
64 var f = new Function();
66 AddTestCase( "var f = new Function(); f instanceof f", false, f instanceof f );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Regress/
function-004-n.js 23 * File Name: function-004.js
43 o.call = Function.prototype.call;
47 "var o = {}; o.call = Function.prototype.call; o.call()",
regress-7224.js 37 * Calls to AddTestCase here. AddTestCase is a function that is defined
54 var f = new Function( "return arguments.caller" );
62 "var f = new Function( 'return arguments.caller' ); f()",
toString-001-n.js 26 * Function.prototype.toString is not generic.
44 o.toString = Function.prototype.toString;
49 "var o = {}; o.toString = Function.prototype.toString; o.toString();",
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CustomXPathNSResolver.cpp 57 v8::Handle<v8::Function> lookupNamespaceURIFunc;
60 // Check if the resolver has a function property named lookupNamespaceURI.
64 lookupNamespaceURIFunc = v8::Handle<v8::Function>::Cast(lookupNamespaceURI);
81 v8::Handle<v8::Function> function = lookupNamespaceURIFunc.IsEmpty() ? v8::Handle<v8::Function>::Cast(m_resolver) : lookupNamespaceURIFunc; local
83 v8::Handle<v8::Value> retval = V8Proxy::callFunctionWithoutFrame(function, m_resolver, argc, argv);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.6.2-1.js 51 function test() {
64 function getTestCases() {
174 function MyProtoValuelessObject() {
175 this.valueOf = new Function ( "" );
178 function MyProtolessObject( value ) {
179 this.valueOf = new Function( "return this.value" );
183 function MyValuelessObject(value) {
186 function MyPrototypeObject(value) {
187 this.valueOf = new Function( "return this.value;" );
188 this.toString = new Function( "return (this.value + '');" )
    [all...]
  /external/llvm/include/llvm/Support/
InstIterator.h 11 // instructions in a function. This is effectively a wrapper around a two level
23 #include "llvm/IR/Function.h"
121 Function::iterator, BasicBlock::iterator,
124 Function::const_iterator,
128 inline inst_iterator inst_begin(Function *F) { return inst_iterator(*F); }
129 inline inst_iterator inst_end(Function *F) { return inst_iterator(*F, true); }
130 inline const_inst_iterator inst_begin(const Function *F) {
133 inline const_inst_iterator inst_end(const Function *F) {
136 inline inst_iterator inst_begin(Function &F) { return inst_iterator(F); }
137 inline inst_iterator inst_end(Function &F) { return inst_iterator(F, true);
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
MultiJITTest.cpp 34 void createModule1(LLVMContext &Context1, Module *&M1, Function *&FooF1) {
51 void createModule2(LLVMContext &Context2, Module *&M2, Function *&FooF2) {
74 Function *FooF1 = 0;
79 Function *FooF2 = 0;
88 // Call the `foo' function with no arguments:
104 Function *FooF1 = 0;
109 Function *FooF2 = 0;
118 // Call the `foo' function with no arguments:
138 Function *FooF1 = 0;
143 Function *FooF2 = 0
    [all...]
JITTest.cpp 20 #include "llvm/IR/Function.h"
38 Function *makeReturnGlobal(std::string Name, GlobalVariable *G, Module *M) {
42 Function *F = Function::Create(FTy, GlobalValue::ExternalLinkage, Name, M);
53 std::string DumpFunction(const Function *F) {
77 StartFunctionBodyCall(uint8_t *Result, const Function *F,
82 const Function *F;
88 virtual uint8_t *startFunctionBody(const Function *F,
103 EndFunctionBodyCall(const Function *F, uint8_t *FunctionStart,
107 const Function *F
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Types/
8.6.2.1-1.js 50 function test() {
63 function getTestCases() {
84 function MyProtoValuelessObject(value) {
85 this.valueOf = new Function ( "" );
89 function MyProtolessObject( value ) {
90 this.valueOf = new Function( "return this.value" );
94 function MyValuelessObject(value) {
97 function MyPrototypeObject(value) {
98 this.valueOf = new Function( "return this.value;" );
99 this.toString = new Function( "return (this.value + '');" )
    [all...]
  /external/llvm/include/llvm/Analysis/
CallGraph.h 13 // Every function in a module is represented as a node in the call graph. The
14 // callgraph node keeps track of which functions the are called by the function
17 // A call graph may contain nodes where the function that they correspond to is
31 // 1. The function is external, reflecting the fact that they could call
33 // 2. The function contains an indirect function call.
36 // function. These will be used when we can prove (through pointer analysis)
44 // CallGraph is, which it currently does by looking for a function named 'main'.
45 // If no function named 'main' is found, the external node is used as the entry
46 // node, reflecting the fact that any function without internal linkage coul
    [all...]
  /bootable/recovery/edify/
expr.h 57 typedef Value* (*Function)(const char* name, State* state,
61 Function fn;
68 // Take one of the Expr*s passed to the function as an argument,
73 // Take one of the Expr*s passed to the function as an argument,
76 // a convenience function for older functions that want to deal only
84 // ("concat" is also available as a builtin function, to concatenate
95 // Convenience function for building expressions with a fixed number
97 Expr* Build(Function fn, YYLTYPE loc, int count, ...);
106 // NULL from a function).
114 Function fn
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
FunctionRegistry.java 35 protected Map<String, Function> functions = new HashMap<String, Function>();
44 Function function = functions.get(name); local
45 if (function == null) {
46 throw new JSilverInterpreterException("Function not found " + name);
48 Value result = function.execute(args);
50 throw new JSilverInterpreterException("Function " + name + " did not return value");
70 Function function = functions.get(name) local
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
SoftLinking.h 69 static Class className##Function() \
79 get##className##Class = className##Function; \
88 static type name##Function() \
98 get##name = name##Function; \
107 static type name##Function() \
117 get##name = name##Function; \
  /external/guava/guava-tests/test/com/google/common/base/
FunctionsTest.java 42 Function<String, String> identity = Functions.identity();
48 Function<Long, Long> identity = Functions.identity();
91 Function<String, Integer> function = Functions.forMap(map); local
93 assertEquals(1, function.apply("One").intValue());
94 assertEquals(3, function.apply("Three").intValue());
95 assertNull(function.apply("Null"));
98 function.apply("Two");
104 .addEqualityGroup(function, Functions.forMap(map))
119 Function<String, Integer> function = Functions.forMap(map, 42) local
139 Function<String, Integer> function = Functions.forMap(map, 42); local
163 Function<String, Integer> function = Functions.forMap(map, null); local
178 Function<String, Integer> function = Functions.forMap(map, null); local
195 Function<String, Number> function = Functions.forMap(map, number); local
412 Function<Object, Integer> function = Functions.forSupplier(supplier); local
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 30 // Root is root of the call graph, or the external node if a 'main' function
40 // indirect calls or calling an external function.
58 // Add every function to the call graph.
62 // If we didn't find a main function, use the external call graph node
74 if (Function *F = getRoot()->getFunction())
77 OS << "<<null function: 0x" << getRoot() << ">>\n";
111 // addToCallGraph - Add a function to the call graph, and link the node to all
114 void addToCallGraph(Function *F) {
117 // If this function has external linkage, anything could call it.
130 // If this function has its address taken, anything could call it
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AbsPathChecker.java 28 import org.apache.xpath.functions.Function;
54 * Visit a function.
57 * @param func The function reference object.
60 public boolean visitFunction(ExpressionOwner owner, Function func)
  /external/guava/guava-gwt/src/com/google/common/collect/
ByFunctionOrdering_CustomFieldSerializer.java 19 import com.google.common.base.Function;
39 (Function<Object, Object>) reader.readObject(),
45 writer.writeObject(instance.function);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTransformTest.java 19 import com.google.common.base.Function;
24 * Unit tests for {@link Futures#transform(ListenableFuture, Function)}.
43 implements Function<Integer, String> {
  /external/llvm/include/llvm/ExecutionEngine/
JITEventListener.h 24 class Function;
31 /// about a generated machine code function.
42 /// The machine function the struct contains information for.
62 /// NotifyFunctionEmitted - Called after a function has been successfully
63 /// emitted to memory. The function still has its MachineFunction attached,
65 virtual void NotifyFunctionEmitted(const Function &,
74 /// parameter to a previous NotifyFunctionEmitted call. The Function passed
  /external/llvm/lib/Analysis/
BlockFrequencyInfo.cpp 34 BFI = new BlockFrequencyImpl<BasicBlock, Function, BranchProbabilityInfo>();
46 bool BlockFrequencyInfo::runOnFunction(Function &F) {
  /external/llvm/lib/Target/X86/
X86JITInfo.h 18 #include "llvm/IR/Function.h"
33 /// replaceMachineCodeForFunction - Make it so that calling the function
51 /// small native function that simply calls the function at the specified
53 virtual void *emitFunctionStub(const Function* F, void *Target,
66 virtual void relocate(void *Function, MachineRelocation *MR,
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.4-8.js 65 function test() {
73 eval = new Function ( "x", "return(Math.pow(Number(x),3))" );
90 function getTestCases() {
99 function MyObject() {
100 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.3.1-3.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 DontDelete property of Function.prototype.
42 var TITLE = "Function.prototype";
49 function getTestCases() {
53 var FUN_PROTO = Function.prototype;
56 "delete Function.prototype",
58 delete Function.prototyp
    [all...]

Completed in 2163 milliseconds

1 2 34 5 6 7 8 91011>>