HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 26 - 50 of 6482) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/ExecutionContexts/
10.1.3.js 33 function f()
39 function x()
45 function test()
52 reportCompare ("function", f(), "Declaration precedence test");
regress-23346.js 29 function f(x)
37 function call()
42 function test()
50 "Unqualified reference should not see Function.prototype");
  /external/bison/lib/
fatal-signal.h 35 /* Register a cleanup function to be executed when a catchable fatal signal
38 Restrictions for the cleanup function:
39 - The cleanup function can do all kinds of system calls.
48 - Also, the cleanup function must not block the catchable fatal signals
51 The cleanup function is executed asynchronously. It is unspecified
54 extern void at_fatal_signal (void (*function) (void));
  /external/chromium/net/data/proxy_resolver_v8_unittest/
direct.js 0 function FindProxyForURL(url, host) {
return_function.js 0 function FindProxyForURL(url, host) {
return_null.js 0 function FindProxyForURL(url, host) {
return_undefined.js 0 function FindProxyForURL(url, host) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/FunExpr/
fe-001-n.js 27 function test()
30 printStatus ("Function Expression test.");
32 var x = function f(){return "inner";}();
  /external/webkit/Source/WebCore/inspector/front-end/
ExtensionRegistryStub.js 33 WebInspector.InspectorExtensionRegistryStub = function()
38 getExtensionsAsync: function()
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenSource.as 48 function nextToken():Token;
53 function get sourceName():String;
TokenStream.as 38 function LT(k:int):Token;
47 function getToken(i:int):Token;
52 function get tokenSource():TokenSource;
59 function toStringWithRange(start:int, stop:int):String;
67 function toStringWithTokenRange(start:Token, stop:Token):String;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeNodeStream.as 38 function getNode(i:int):Object;
51 function LT(k:int):Object;
56 function get treeSource():Object;
63 function get tokenStream():TokenStream;
68 function get treeAdaptor():TreeAdaptor;
76 function set hasUniqueNavigationNodes(uniqueNavigationNodes:Boolean):void;
84 function toStringWithRange(start:Object, stop:Object):String;
98 function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void;
TreeAdaptor.as 50 function createWithPayload(payload:Token):Object;
55 function dupNode(treeNode:Object):Object;
58 function dupTree(tree:Object):Object;
64 function nil():Object;
80 function errorNode(input:TokenStream, start:Token, stop:Token, e:RecognitionException):Object;
83 function isNil(tree:Object):Boolean;
92 function addChild(t:Object, child:Object):void;
120 function becomeRoot(newRoot:Object, oldRoot:Object):Object;
135 function rulePostProcessing(root:Object):Object;
143 function getUniqueID(node:Object):int
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
ParserRuleReturnScope.js 19 org.antlr.runtime.ParserRuleReturnScope = function() {};
20 org.antlr.runtime.RuleReturnScope = function() {};
25 getStart: function() { return this.start; },
26 getStop: function() { return this.stop; }
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
Tree.js 11 org.antlr.runtime.tree.Tree = function(){};
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
exception-010-n.js 27 function test()
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Statements/
regress-83532-001.js 34 function test()
41 function f () {switch(1) {case -1:}}
42 function g(){switch(1){case (-1):}}
43 var h = function() {switch(1) {case -1:}}
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
default.pass.cpp 12 // class function<R(ArgTypes...)>
14 // explicit function();
21 std::function<int(int)> f;
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
util.js 0 function $(el) {
5 function $F(el) {
9 function bind(obj, func) {
10 return function() {
15 function childNodeWithClass(node, className) {
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/
types.pass.cpp 13 // class function<R(ArgTypes...)>
30 std::function<int()> >::value), "");
32 std::function<int()> >::value), "");
33 static_assert(( std::is_same< std::function<int()>::result_type,
37 std::function<double(int)> >::value), "");
39 std::function<double(int)> >::value), "");
40 static_assert(( std::is_same< std::function<double(int)>::result_type,
44 std::function<double(int, char)> >::value), "");
46 std::function<double(int, char)> >::value), "");
47 static_assert(( std::is_same< std::function<double(int, char)>::result_type
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-function.cpp 4 // Example function implementation from the variadic templates proposal,
7 template<typename Signature> class function;
28 class function<R (Args...)> { class
31 function() : invoker (0) { } function in class:function
32 function(const function& other) : invoker(0) { function in class:function
37 template<typename F> function(const F& f) : invoker(0) { function in class:function
41 ~function() {
46 function& operator=(const function& other) {
    [all...]
  /external/stlport/test/unit/
boost_check.cpp 33 #include <boost/function.hpp>
39 #include <boost/function/function_base.hpp>
45 #include <boost/function/function1.hpp>
  /external/webkit/LayoutTests/storage/indexeddb/resources/
shared.js 0 function done()
8 function unexpectedSuccessCallback()
10 testFailed("Success function called unexpectedly.");
13 function unexpectedErrorCallback()
15 testFailed("Error function called unexpectedly: (" + event.target.errorCode + ") " + event.target.webkitErrorMessage);
18 function unexpectedAbortCallback()
20 testFailed("Abort function called unexpectedly!");
23 function unexpectedCompleteCallback()
25 testFailed("oncomplete function called unexpectedly!");
28 function unexpectedBlockedCallback(
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
boost_check.cpp 33 #include <boost/function.hpp>
39 #include <boost/function/function_base.hpp>
45 #include <boost/function/function1.hpp>
  /ndk/tests/device/test-stlport/unit/
boost_check.cpp 33 #include <boost/function.hpp>
39 #include <boost/function/function_base.hpp>
45 #include <boost/function/function1.hpp>

Completed in 793 milliseconds

12 3 4 5 6 7 8 91011>>