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

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
date-001.js 6 This function returns a string value. The contents of the string are
10 The toString function is not generic; it generates a runtime error if its
52 function MyObject( value ) {
54 this.valueOf = new Function( "return this.value" );
  /external/webkit/Source/WebCore/bindings/v8/
V8EventListener.h 43 // V8EventListener is a wrapper of a JS object implements EventListener interface (has handleEvent(event) method), or a JS function
55 v8::Local<v8::Function> getListenerFunction(ScriptExecutionContext*);
V8Utilities.h 109 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>);
111 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[]);
114 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::Function> function)
116 if (function.IsEmpty())
119 return function->NewInstance();
130 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[])
132 if (function.IsEmpty())
135 return function->NewInstance(argc, argv)
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8ScriptProfileCustom.cpp 46 v8::Local<v8::Function> function = V8ScriptProfile::GetTemplate()->GetFunction();
47 if (function.IsEmpty()) {
51 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function);
  /external/webkit/Source/WebCore/bridge/
testM.js 5 myInterface.jsobject = new Function ("arg1","arg2","return arg1 + arg2;");
10 myInterface.setJSObject_(new Function ("arg1","arg2",functionBody));
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 33 static Function* createAdd1(Module *M) {
34 // Create the add1 function entry and insert this entry into module M. The
35 // function will have a return type of "int" and take an argument of "int".
37 Function *Add1F =
38 cast<Function>(M->getOrInsertFunction("add1",
43 // Add a basic block to the function. As before, it automatically inserts
50 // Get pointers to the integer argument of the add1 function...
61 // Now, function add1 is ready.
65 static Function *CreateFibFunction(Module *M) {
66 // Create the fib function and insert it into module M. This function is sai
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 20 #include "llvm/IR/Function.h"
36 // alloca. When the function returns, this object is popped off the execution
71 Function *CurFunction;// The currently executing function
84 GenericValue ExitValue; // The return value of the called function
89 // function record.
93 // registered with the atexit() library function.
94 std::vector<Function*> AtExitHandlers;
113 /// run - Start execution with the specified function and arguments.
115 virtual GenericValue runFunction(Function *F
    [all...]
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 25 #include "llvm/IR/Function.h"
46 bool SimplifyFunction(Function *F);
74 if (Function *F = (*I)->getFunction())
87 Function *F = (*I)->getFunction();
101 // Check to see if this function performs an unwind or calls an
102 // unwinding function.
103 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
118 } else if (Function *Callee = CI->getCalledFunction()) {
147 Function *F = (*I)->getFunction();
164 if (Function *F = (*I)->getFunction()
    [all...]
DeadArgumentElimination.cpp 12 // only passed into function calls as dead arguments of other functions. This
53 /// Struct that represents (part of) either a return value or a function
57 RetOrArg(const Function *F, unsigned Idx, bool IsArg) : F(F), Idx(Idx),
59 const Function *F;
80 + utostr(Idx) + " of function " + F->getName().str();
92 RetOrArg CreateRet(const Function *F, unsigned Idx) {
96 RetOrArg CreateArg(const Function *F, unsigned Idx) {
108 /// This means that some function calls G and passes its result as an
118 typedef std::set<const Function*> LiveFuncSet;
127 // Map each LLVM function to corresponding metadata with debug info. I
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/
GLMessageFormatterTest.java 26 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function;
62 GLMessage msg = constructGLMessage(null, Function.glBindBuffer,
81 Function.glGetString,
83 String expected = String.format("%s(name = %s) = (const GLchar*) %s", Function.glGetString,
96 Function.eglBindAPI,
107 Function.glTexImage2D,
121 Function.glMultMatrixf,
134 Function.glGetActiveAttrib,
175 private GLMessage constructGLMessage(DataType retValue, Function func, DataType...args) {
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 63 // This function returns true if F is fully read and is still a declaration.
64 static bool isNonGhostDeclaration(const Function *F) {
84 struct CallSiteValueMapConfig : public NoRAUWValueMapConfig<Function*> {
86 static void onDelete(JITResolverState *JRS, Function *F);
91 typedef ValueMap<Function*, void*, NoRAUWValueMapConfig<Function*> >
93 typedef std::map<void*, AssertingVH<Function> > CallSiteToFunctionMapTy;
94 typedef ValueMap<Function *, SmallPtrSet<void*, 1>,
99 /// particular function so that we can reuse them if necessary.
102 /// CallSiteToFunctionMap - Keep track of the function that each lazy cal
    [all...]
  /external/chromium/testing/gmock/include/gmock/internal/
gmock-generated-internal-utils.h 138 // Template struct Function<F>, where F must be a function type, contains
141 // Result: the function's return type.
146 // MakeResultVoid: the function type obtained by substituting void
149 // the function type obtained by substituting Something
152 struct Function;
155 struct Function<R()> {
164 struct Function<R(A1)>
165 : Function<R()> {
174 struct Function<R(A1, A2)
    [all...]
  /external/guava/guava-tests/test/com/google/common/math/
MathTesting.java 31 import com.google.common.base.Function;
54 // Exponents to test for the pow() function.
58 /* Helper function to make a Long value from an Integer. */
59 private static final Function<Integer, Long> TO_LONG = new Function<Integer, Long>() {
66 /* Helper function to make a BigInteger value from a Long. */
67 private static final Function<Long, BigInteger> TO_BIGINTEGER =
68 new Function<Long, BigInteger>() {
75 private static final Function<Integer, Integer> NEGATE_INT = new Function<Integer, Integer>()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExpressionVisitor.java 28 import org.apache.xpath.functions.Function;
55 * If the function is an extension function, register the namespace.
58 * @param func The function currently being visited.
62 public boolean visitFunction(ExpressionOwner owner, Function func)
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathVisitor.java 25 import org.apache.xpath.functions.Function;
141 * Visit a function.
144 * @param func The function reference object.
147 public boolean visitFunction(ExpressionOwner owner, Function func)
  /external/guava/guava/src/com/google/common/base/
Enums.java 42 * Returns a {@link Function} that maps an {@link Enum} name to the associated
43 * {@code Enum} constant. The {@code Function} will return {@code null} if the
49 public static <T extends Enum<T>> Function<String, T> valueOfFunction(Class<T> enumClass) {
54 * {@link Function} that maps an {@link Enum} name to the associated
58 Function<String, T>, Serializable {
FunctionalEquivalence.java 41 private final Function<F, ? extends T> function; field in class:FunctionalEquivalence
45 Function<F, ? extends T> function, Equivalence<T> resultEquivalence) {
46 this.function = checkNotNull(function);
51 return resultEquivalence.equivalent(function.apply(a), function.apply(b));
55 return resultEquivalence.hash(function.apply(a));
64 return function.equals(that.function
    [all...]
  /external/guava/guava/src/com/google/common/cache/
Cache.java 21 import com.google.common.base.Function;
39 * extend {@link Function}.
51 public interface Cache<K, V> extends Function<K, V> {
176 * Discouraged. Provided to satisfy the {@code Function} interface; use {@link #get} or
LoadingCache.java 21 import com.google.common.base.Function;
38 * <p>When evaluated as a {@link Function}, a cache yields the same result as invoking
46 public interface LoadingCache<K, V> extends Cache<K, V>, Function<K, V> {
122 * Discouraged. Provided to satisfy the {@code Function} interface; use {@link #get} or
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
GenericMapMaker.java 21 import com.google.common.base.Function;
96 Function<? super K, ? extends V> computingFunction);
  /external/llvm/include/llvm/Analysis/
BranchProbabilityInfo.h 29 /// This is a function analysis pass which provides information on the relative
30 /// probabilities of each "edge" in the function's CFG where such an edge is
48 bool runOnFunction(Function &F);
128 /// \brief Track the last function we run over for printing.
129 Function *LastF;
RegionPass.h 20 #include "llvm/IR/Function.h"
28 class Function;
31 /// @brief A pass that runs on each Region in a function.
96 /// @return True if any of the passes modifies the function.
97 bool runOnFunction(Function &F);
  /external/llvm/include/llvm/CodeGen/
GCStrategy.h 12 // specified in a function's 'gc' attribute. Algorithms are enabled by setting
17 // function which uses it. Specifically:
24 // - Before returning from the current function
132 /// begin/end - Iterators for function metadata.
137 /// insertFunctionMetadata - Creates metadata for a function.
139 GCFunctionInfo *insertFunctionInfo(const Function &F);
147 virtual bool performCustomLowering(Function &F);
MachineModuleInfo.h 63 /// the current function.
70 const Function *Personality; // Personality function.
109 /// FrameMoves - List of moves done by a function's prolog. Used to construct
114 /// unwind encoding. It replaces a function's CIE and FDE.
118 /// information in the current function.
126 /// EH_LABEL for the current function.
133 /// TypeInfos - List of C++ TypeInfo used in the current function.
136 /// FilterIds - List of typeids encoding filters used in the current function.
145 std::vector<const Function *> Personalities
    [all...]
  /external/llvm/include/llvm/IR/
Intrinsics.h 1 //===-- llvm/Instrinsics.h - LLVM Intrinsic Function Handling ---*- C++ -*-===//
12 // Function::getIntrinsicID.
26 class Function;
32 /// every intrinsic/builtin function known by LLVM. These enum values are
33 /// returned by Function::getIntrinsicID().
50 /// Intrinsic::getType(ID) - Return the function type for an intrinsic.
63 /// Intrinsic::getDeclaration(M, ID) - Create or insert an LLVM Function
71 Function *getDeclaration(Module *M, ID id,

Completed in 2442 milliseconds

1 2 3 4 5 6 78 91011>>