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

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.4.1.js 24 ECMA Section: 15.3.4.1 Function.prototype.constructor
26 Description: The initial value of Function.prototype.constructor
27 is the built-in Function constructor.
36 var TITLE = "Function.prototype.constructor";
43 function getTestCases() {
47 array[item++] = new TestCase( SECTION, "Function.prototype.constructor", Function, Function.prototype.constructor );
51 function test( array ) {
15.3.4-1.js 24 ECMA Section: 15.3.4 Properties of the Function Prototype Object
26 Description: The Function prototype object is itself a Function
27 object ( its [[Class]] is "Function") that, when
33 It is a function with an "empty body"; if it is
36 The Function prototype object does not have a valueOf
48 var TITLE = "Properties of the Function Prototype Object";
55 function getTestCases() {
59 "var myfunc = Function.prototype; myfunc.toString = Object.prototype.toString; myfunc.toString()",
60 "[object Function]",
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.2.2.js 54 function getTestCases() {
64 function test() {
77 function MyObject( value ) {
79 this.valueOf = new Function( "return this.value" );
80 this.toString = new Function( "return this.value+''" );
  /external/webkit/Source/WebCore/bindings/v8/
ScheduledAction.h 49 ScheduledAction(v8::Handle<v8::Context>, v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[]);
68 v8::Persistent<v8::Function> m_function;
  /external/webkit/Source/WebCore/xml/
XPathFunctions.cpp 51 #define DEFINE_FUNCTION_CREATOR(Class) static Function* create##Class() { return new Class; }
69 typedef Function *(*FactoryFn)();
76 class FunLast : public Function {
83 class FunPosition : public Function {
90 class FunCount : public Function {
95 class FunId : public Function {
100 class FunLocalName : public Function {
107 class FunNamespaceURI : public Function {
114 class FunName : public Function {
121 class FunString : public Function {
677 FunctionRec function; member in struct:WebCore::XPath::FunctionMapping
    [all...]
  /libcore/luni/src/test/java/tests/support/
MockFunction.java 19 import SQLite.Function;
23 public class MockFunction implements SQLite.Function{
35 public void function(FunctionContext fc, String args[]) { method in class:MockFunction
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncFalse.java 28 * Execute the False() function.
31 public class FuncFalse extends Function
36 * Execute the function. The function must return
FuncTrue.java 28 * Execute the True() function.
31 public class FuncTrue extends Function
36 * Execute the function. The function must return
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
CacheLoader.java 22 import com.google.common.base.Function;
76 * Returns a {@code CacheLoader} which creates values by applying a {@code Function} to the key.
78 public static <K, V> CacheLoader<K, V> from(Function<K, V> function) {
79 return new FunctionToCacheLoader<K, V>(function);
84 private final Function<K, V> computingFunction;
86 public FunctionToCacheLoader(Function<K, V> computingFunction) {
  /external/llvm/include/llvm/ExecutionEngine/
SectionMemoryManager.h 70 /// until this function has been called.
75 /// This method returns the address of the specified function. As such it is
78 /// If \p AbortOnFailure is false and no function with the given name is
79 /// found, this function returns a null pointer. Otherwise, it prints a
91 /// process. Clients may call this function when needed. See the lli
134 virtual uint8_t *startFunctionBody(const Function *F,
144 virtual void endFunctionBody(const Function *F, uint8_t *FunctionStart,
159 virtual uint8_t *startExceptionTable(const Function *F,
164 virtual void endExceptionTable(const Function *F, uint8_t *TableStart,
  /external/llvm/include/llvm/Transforms/Utils/
UnifyFunctionExitNodes.h 13 // in the function, the getReturnBlock/getUnwindBlock methods will return a null
34 // We can preserve non-critical-edgeness when we unify function exit nodes
44 virtual bool runOnFunction(Function &F);
  /external/llvm/lib/Target/R600/
AMDILIntrinsicInfo.h 41 Function *getDeclaration(Module *M, unsigned int ID,
  /external/llvm/lib/Transforms/Scalar/
BasicBlockPlacement.cpp 12 // start of the function, and hopefully increase the number of fall-through
14 // function, this pass basically orders blocks in depth-first order
33 #include "llvm/IR/Function.h"
48 virtual bool runOnFunction(Function &F);
70 Function::iterator InsertPos;
87 bool BlockPlacement::runOnFunction(Function &F) {
111 // remove the block from the function then readd it, which causes a bunch of
113 Function::BasicBlockListType &Blocks = BB->getParent()->getBasicBlockList();
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.4-6.js 65 function getTestCases() {
81 function MyObject() {
82 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
10.1.8-2.js 27 When control enters an execution context for declared function code,
36 The initial value of this property is the function object being executed.
49 for the function object, this property shares its value with the
69 var GetCallee = new Function( "var c = arguments.callee; return c" );
70 var GetArguments = new Function( "var a = arguments; return a" );
71 var GetLength = new Function( "var l = arguments.length; return l" );
105 function test() {
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CustomVoidCallback.cpp 71 v8::Local<v8::Function> callbackFunction;
73 callbackFunction = v8::Local<v8::Function>::New(v8::Persistent<v8::Function>::Cast(callback));
77 callbackFunction = v8::Local<v8::Function>::Cast(handleEventFunction);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLCall.java 20 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function;
37 /** Marker name provided by a {@link Function#glPushGroupMarkerEXT} call. */
40 /** Size argument in a {@link Function#glVertexAttribPointerData} call. */
43 /** Type argument in a {@link Function#glVertexAttribPointerData} call. */
46 /** Data argument in a {@link Function#glVertexAttribPointerData} call. */
64 /** The actual GL Function called. */
65 private final Function mFunction;
86 Function function, boolean hasFb, int contextId,
92 mFunction = function;
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ByFunctionOrdering.java 22 import com.google.common.base.Function;
31 * function on those elements.
36 final Function<F, ? extends T> function; field in class:ByFunctionOrdering
40 Function<F, ? extends T> function, Ordering<T> ordering) {
41 this.function = checkNotNull(function);
46 return ordering.compare(function.apply(left), function.apply(right))
    [all...]
  /external/llvm/include/llvm/Analysis/
ConstantFolding.h 29 class Function;
37 /// this function can only fail when attempting to fold instructions like loads
51 /// null is returned. Note that this function can fail when attempting to
93 /// the specified function.
94 bool canConstantFoldCallTo(const Function *F);
96 /// ConstantFoldCall - Attempt to constant fold a call to the specified function
98 Constant *ConstantFoldCall(Function *F, ArrayRef<Constant *> Operands,
InlineCost.h 25 class Function;
41 /// \brief Represents the cost of inlining a function.
45 /// smaller values increase the likelihood of the function being inlined.
119 /// Note that threshold is passed into this function. Only costs below the
124 /// Also note that calling this function *dynamically* computes the cost of
129 /// This allows you to calculate the cost of inlining a function via a
135 InlineCost getInlineCost(CallSite CS, Function *Callee, int Threshold);
138 bool isInlineViable(Function &Callee);
  /external/llvm/lib/Analysis/
InstCount.cpp 17 #include "llvm/IR/Function.h"
40 void visitFunction (Function &F) { ++TotalFuncs; }
58 virtual bool runOnFunction(Function &F);
75 // function.
77 bool InstCount::runOnFunction(Function &F) {
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 10 // Pass that removes sign extends for function parameters. These parameters
18 #include "llvm/IR/Function.h"
29 virtual bool runOnFunction(Function &F);
50 bool HexagonRemoveExtendArgs::runOnFunction(Function &F) {
52 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end(); AI != AE;
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 16 #include "llvm/IR/Function.h"
23 Module &M, Function *F, int Priority) {
58 void llvm::appendToGlobalCtors(Module &M, Function *F, int Priority) {
62 void llvm::appendToGlobalDtors(Module &M, Function *F, int Priority) {
  /external/llvm/tools/llvm-diff/
DifferenceEngine.h 25 class Function;
65 void diff(Function *L, Function *R);
  /external/llvm/unittests/Transforms/Utils/
IntegerDivision.cpp 12 #include "llvm/IR/Function.h"
28 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
36 Function::arg_iterator AI = F->arg_begin();
58 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
66 Function::arg_iterator AI = F->arg_begin();
88 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
96 Function::arg_iterator AI = F->arg_begin()
    [all...]

Completed in 795 milliseconds

1 2 3 45 6 7 8 91011>>