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

<<21222324252627282930>>

  /external/v8/test/mjsunit/
strict-mode.js 28 function CheckStrictMode(code, exception) {
33 function outer() {\
34 function inner() {\n"
39 function outer() {\
41 function inner() {\n"
47 function CheckFunctionConstructorStrictMode() {
52 // Create non-strict function. No exception.
54 assertDoesNotThrow(function() {
55 Function.apply(this, args);
57 // Create strict mode function. Exception expected
    [all...]
  /external/v8/include/
v8.h 94 class Function;
122 * A weak reference callback function.
309 * persistent handle as an argument to a function you will not get two
382 * callback to the given V8::WeakReferenceCallback function, passing
627 * when this function was called. When run it will always use this
645 * when this function was called. When run it will always use this
684 * Returns the resource name for the script from where the function causing
690 * Returns the resource data for the script from where the function causing
796 * Returns the number, 1-based, of the line for the associate function call.
804 * Returns the 1-based column offset on the line for the associated function
    [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 38 /// \brief Within template argument deduction from a function call, we are
42 /// \brief Within template argument deduction from a function call, we
45 /// \brief Within template argument deduction from a function call,
50 /// template argument deduction from a function call where conversions
100 /// performing template argument deduction for partial ordering of function
535 /// \brief Helper function to build a TemplateParameter when we don't
634 /// function types (C++ [temp.deduct.type]p10).
701 // If the original function parameter associated with A is a function
702 // parameter pack and the function parameter associated with P is no
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
util.js 23 function log(msg) {}
36 var TYPE_function = 'function';
41 * Wrapper for the eval() builtin function to evaluate expressions and
51 function jsEval(expr) {
59 // function literals in IE.
60 // e.g. eval("(function() {})") returns undefined, and not a function
69 function jsLength(obj) {
73 function assert(obj) {}
81 function copyProperties(to, from) {
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
util.js 23 function log(msg) {}
36 var TYPE_function = 'function';
41 * Wrapper for the eval() builtin function to evaluate expressions and
51 function jsEval(expr) {
59 // function literals in IE.
60 // e.g. eval("(function() {})") returns undefined, and not a function
69 function jsLength(obj) {
73 function assert(obj) {}
81 function copyProperties(to, from)
    [all...]
  /external/chromium/chrome/common/
sqlite_utils.cc 18 // the Handler() function.
341 Function dtor) {
372 Function dtor) {
378 Function dtor) {
  /external/guava/src/com/google/common/base/
Predicates.java 205 * @param target the collection that may contain the function input
212 * Returns the composition of a function and a predicate. For every {@code x},
213 * the generated predicate returns {@code predicate(function(x))}.
215 * @return the composition of the provided function and predicate
218 Predicate<B> predicate, Function<A, ? extends B> function) {
219 return new CompositionPredicate<A, B>(predicate, function);
466 /** @see Predicates#compose(Predicate, Function) */
470 final Function<A, ? extends B> f;
472 private CompositionPredicate(Predicate<B> p, Function<A, ? extends B> f)
    [all...]
  /external/llvm/lib/VMCore/
Value.cpp 131 if (Function *PP = P->getParent())
134 if (Function *P = BB->getParent())
140 if (Function *P = A->getParent())
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 229 if (isa<Function>(GV) && GV.hasInternalLinkage()) return 't';
230 if (isa<Function>(GV)) return 'T';
235 if (isa<Function>(AliasedGV)) return 'T';
  /external/v8/src/
runtime.h 439 F(CallFunction, -1 /* receiver + n args + function */, 1) \
467 // a corresponding runtime function, that is called for slow cases.
557 // Intrinsic function descriptor.
558 struct Function {
561 // The JS name of the function.
564 // The C++ (native) entry point. NULL if the function is inlined.
567 // The number of arguments expected. nargs is -1 if the function takes
576 // Add symbols for all the intrinsic function names to a StringDictionary.
583 // Get the intrinsic function with the given name, which must be a symbol.
584 static const Function* FunctionForSymbol(Handle<String> name)
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.h 178 // Call the function with the given receiver and arguments.
179 v8::Local<v8::Value> callFunction(v8::Handle<v8::Function>, v8::Handle<v8::Object>, int argc, v8::Handle<v8::Value> argv[]);
181 // Call the function with the given receiver and arguments.
182 static v8::Local<v8::Value> callFunctionWithoutFrame(v8::Handle<v8::Function>, v8::Handle<v8::Object>, int argc, v8::Handle<v8::Value> argv[]);
184 // Call the function as constructor with the given arguments.
185 v8::Local<v8::Value> newInstance(v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[]);
202 // currently executing JavaScript. Since JavaScript can make function calls
205 // For example, imagine that a JS function in frame A calls a function in
210 // script engine; the context that is at the bottom of the JS function stack
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 40 std::vector<Function*>().swap(FunctionsWithBodies);
462 // If Function attributes are using index 0 then transfer them
464 // used for function attributes.
620 // FUNCTION: [vararg, attrid, retty, paramty x N]
622 return Error("Invalid FUNCTION type record");
633 return Error("invalid type in function type");
876 // FUNCTION: [vararg, attrid, retty, paramty x N]
878 return Error("Invalid FUNCTION type record");
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 53 std::vector<Function*>().swap(FunctionsWithBodies);
437 // If Function attributes are using index 0 then transfer them
439 // used for function attributes.
595 // FUNCTION: [vararg, attrid, retty, paramty x N]
597 return Error("Invalid FUNCTION type record");
608 return Error("invalid type in function type");
851 // FUNCTION: [vararg, attrid, retty, paramty x N]
853 return Error("Invalid FUNCTION type record");
    [all...]
  /external/chromium/testing/
gmock_mutant.h 17 // DispatchToMethod/Function supports two sets of arguments: pre-bound (P) and
19 // DispatchToMethod/Function will also try to call the selected method or
20 // function even if provided pre-bound arguments does not match exactly with
21 // the function signature hence the X1, X2 ... XN parameters in CreateFunctor.
118 template <typename R, typename Function>
119 inline R DispatchToFunction(Function function,
122 return (*function)();
132 template <typename R, typename Function, typename C1>
133 inline R DispatchToFunction(Function function
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncExtFunction.java 43 public class FuncExtFunction extends Function
48 * The namespace for the extension function, which should not normally
69 * function.
75 * This function is used to fixup variables from QNames to stack frame
102 * Return the namespace of the extension function.
104 * @return The namespace of the extension function.
112 * Return the name of the extension function.
114 * @return The name of the extension function.
122 * Return the method key of the extension function.
124 * @return The method key of the extension function
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/
sorttable.js 30 init: function() {
31 // quit if this function has already been called
33 // flag this function so we don't do the same thing twice
42 forEach(document.getElementsByTagName('table'), function(table) {
50 makeSortable: function(table) {
92 if (mtch && typeof sorttable["sort_"+override] == 'function') {
100 dean_addEvent(headrow[i],"click", function(e) {
131 forEach(theadrow.childNodes, function(cell) {
185 guessType: function(table, column) {
218 getInnerText: function(node)
    [all...]
  /external/clang/examples/clang-interpreter/
main.cpp 35 // This function isn't referenced outside its translation unit, but it
39 // without being given the address of a function in the main executable).
58 llvm::Function *EntryFn = Mod->getFunction("main");
60 llvm::errs() << "'main' function not found in module.\n";
  /external/clang/lib/CodeGen/
CGBlocks.h 33 class Function;
168 /// True if the block needs a custom copy or dispose function.
CGCall.h 10 // These classes wrap the information about a call or function
30 class Function;
102 /// of parameters to a function. The decl must be either a
108 /// function definition.
115 /// The LLVM::CallingConv to use for this function (as specified by the
119 /// The LLVM::CallingConv to actually use for this function, which may
123 /// Whether this function is noreturn.
126 /// Whether this function is returns-retained.
155 /// In ARR, whether this function retains its return value. This
210 /// function can be stored, and whether the address is volatile or not
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 143 raise (Stream.Error "expected function name in prototype")
148 Ast.Function (p, e)
154 Ast.Function (Ast.Prototype ("", [||]), e)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 180 raise (Stream.Error "expected function name in prototype")
185 Ast.Function (p, e)
191 Ast.Function (Ast.Prototype ("", [||]), e)
  /external/llvm/include/llvm/Analysis/
DominanceFrontier.h 11 // dominance frontier for a function.
29 /// dominance frontiers for a function.
169 virtual bool runOnFunction(Function &) {
  /external/llvm/include/llvm/CodeGen/
MachineCodeEmitter.h 33 class Function;
48 /// function has been emitted, the overflow condition is checked, and if it has
66 /// startFunction - This callback is invoked when the specified function is
72 /// finishFunction - This callback is invoked when the specified function has
310 /// 'Index' in the function that last called initJumpTableInfo.
  /external/llvm/include/llvm/
Constants.h 169 /// This function will return true iff every bit in this constant is set
177 /// This function will return true iff this constant represents the largest
189 /// This function will return true iff this constant represents the smallest
201 /// This function will return true iff this constant represents a value with
479 /// This function will return true iff every element in this vector constant
548 BlockAddress(Function *F, BasicBlock *BB);
550 /// get - Return a BlockAddress for the specified function and basic block.
551 static BlockAddress *get(Function *F, BasicBlock *BB);
554 /// block must be embedded into a function.
560 Function *getFunction() const { return (Function*)Op<0>().get();
    [all...]
LinkAllPasses.h 30 #include "llvm/Function.h"
157 ((llvm::Function*)0)->viewCFGOnly();

Completed in 2158 milliseconds

<<21222324252627282930>>