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

1 2 3 45 6 7 8 91011>>

  /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
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
GLServerState.java 20 import com.android.glesv2debugger.DebuggerMessage.Message.Function;
45 /** integer states set via a GL function and GLEnum; keyed by GLEnum.value */
48 /** states set only via a GL function; keyed by Function.getNumber() */
66 lastSetter.put(Function.glBlendColor.getNumber(), null);
68 lastSetter.put(Function.glBlendEquationSeparate.getNumber(), null);
70 lastSetter.put(Function.glBlendFuncSeparate.getNumber(), null);
71 lastSetter.put(Function.glClearColor.getNumber(), null);
72 lastSetter.put(Function.glClearDepthf.getNumber(), null);
73 lastSetter.put(Function.glClearStencil.getNumber(), null)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerState.java 20 import com.android.ide.eclipse.gldebugger.DebuggerMessage.Message.Function;
45 /** integer states set via a GL function and GLEnum; keyed by GLEnum.value */
48 /** states set only via a GL function; keyed by Function.getNumber() */
66 lastSetter.put(Function.glBlendColor.getNumber(), null);
68 lastSetter.put(Function.glBlendEquationSeparate.getNumber(), null);
70 lastSetter.put(Function.glBlendFuncSeparate.getNumber(), null);
71 lastSetter.put(Function.glClearColor.getNumber(), null);
72 lastSetter.put(Function.glClearDepthf.getNumber(), null);
73 lastSetter.put(Function.glClearStencil.getNumber(), null)
    [all...]
  /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/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/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
31 #include "llvm/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);
  /external/guava/src/com/google/common/collect/
ByFunctionOrdering.java 20 import com.google.common.base.Function;
30 * function on those elements.
35 final Function<F, ? extends T> function; field in class:ByFunctionOrdering
39 Function<F, ? extends T> function, Ordering<T> ordering) {
40 this.function = checkNotNull(function);
45 return ordering.compare(function.apply(left), function.apply(right))
    [all...]
  /external/llvm/lib/Analysis/
InstCount.cpp 17 #include "llvm/Function.h"
40 void visitFunction (Function &F) { ++TotalFuncs; }
58 virtual bool runOnFunction(Function &F);
75 // function.
77 bool InstCount::runOnFunction(Function &F) {
Analysis.cpp 93 return verifyFunction(*unwrap<Function>(Fn),
98 Function *F = unwrap<Function>(Fn);
103 Function *F = unwrap<Function>(Fn);
  /external/llvm/tools/llvm-diff/
DifferenceEngine.h 26 class Function;
64 void diff(Function *L, Function *R);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
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...]
15.3.4.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
47 var TITLE = "Properties of the Function Prototype Object";
54 function getTestCases() {
58 "var myfunc = Function.prototype; myfunc.toString = Object.prototype.toString; myfunc.toString()",
59 "[object Function]",
    [all...]
  /external/chromium/base/
task.h 58 // // If this function might be called directly, you might want to revoke
291 // Runnable methods are a type of task that call a function on an object when
299 // Method/Function - the signature of a pointer to the method or function you
311 // PostTask(FROM_HERE, NewRunnableFunction(&function[, a[, b]])
444 template <class Function, class Params>
447 RunnableFunction(Function function, const Params& params)
448 : function_(function), params_(params) {
466 Function function_
    [all...]
  /external/guava/src/com/google/common/util/concurrent/
Futures.java 19 import com.google.common.base.Function;
128 * {@link Function} that maps from {@link Exception} instances into the
131 * <p>The given mapping function will be applied to an
137 Future<T> future, Function<Exception, E> mapper) {
165 return Futures.makeChecked(future, new Function<Exception, E>() {
207 new Function<Exception, E>() {
217 * the provided function called on the result of the provided future.
224 * function that calls another RPC based on input's result, and then call
225 * chain on input and that function to get a {@code ListenableFuture} of
229 * @param function A function to chain the results of the provided futur
    [all...]
  /external/llvm/include/llvm/
Module.h 18 #include "llvm/Function.h"
36 template<> struct ilist_traits<Function>
37 : public SymbolTableListTraits<Function, Module> {
41 Function *createSentinel() const {
42 return static_cast<Function*>(&Sentinel);
44 static void destroySentinel(Function*) {}
46 Function *provideInitialHead() const { return createSentinel(); }
47 Function *ensureHead(Function*) const { return createSentinel(); }
48 static void noteHead(Function*, Function*) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 17 #include "llvm/Function.h"
31 /// EmitStrLen - Emit a call to the strlen function to the builder, for the
46 if (const Function *F = dyn_cast<Function>(StrLen->stripPointerCasts()))
52 /// EmitStrChr - Emit a call to the strchr function to the builder, for the
67 if (const Function *F = dyn_cast<Function>(StrChr->stripPointerCasts()))
72 /// EmitStrNCmp - Emit a call to the strncmp function to the builder.
91 if (const Function *F = dyn_cast<Function>(StrNCmp->stripPointerCasts())
    [all...]
  /external/chromium/testing/gmock/test/
gmock-generated-internal-utils_test.cc 46 using ::testing::internal::Function;
72 // Tests the Function template struct.
75 typedef Function<int()> F; // NOLINT
84 typedef Function<int(bool)> F; // NOLINT
95 typedef Function<int(bool, const long&)> F; // NOLINT
108 typedef Function<char(bool, int, char*, int&, const long&)> F; // NOLINT
  /external/llvm/include/llvm/CodeGen/
GCMetadata.h 25 // GCModuleInfo simply collects GCFunctionInfo instances for each Function as
80 /// GCFunctionInfo - Garbage collection metadata for a single function.
89 const Function &F;
106 GCFunctionInfo(const Function &F, GCStrategy &S);
109 /// getFunction - Return the function to which this metadata applies.
111 const Function &getFunction() const { return F; }
113 /// getStrategy - Return the GC strategy for the function.
131 /// getFrameSize/setFrameSize - Records the function's frame size.
142 /// roots_begin/roots_end - Iterators for all roots in the function.
161 typedef DenseMap<const Function*,GCFunctionInfo*> finfo_map_type
    [all...]

Completed in 962 milliseconds

1 2 3 45 6 7 8 91011>>