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

1 2 3 4 5 6 7 891011>>

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Parser.js 4 org.antlr.runtime.Parser = function(input, state) {
10 reset: function() {
18 getCurrentInputSymbol: function(input) {
22 getMissingSymbol: function(input,
48 setTokenStream: function(input) {
54 getTokenStream: function() {
58 getSourceName: function() {
62 traceIn: function(ruleName, ruleIndex) {
67 traceOut: function(ruleName, ruleIndex) {
UnwantedTokenException.js 2 org.antlr.runtime.UnwantedTokenException = function(expecting, input) {
12 getUnexpectedToken: function() {
15 toString: function() {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleElementStream.js 14 org.antlr.runtime.tree.RewriteRuleElementStream = function(adaptor, elementDescription, el) {
48 reset: function() {
53 add: function(el) {
77 nextTree: function() {
96 _next: function() {
122 toTree: function(el) {
129 hasNext: function() {
134 size: function() {
145 getDescription: function() {
  /external/webkit/LayoutTests/storage/
multiple-transactions-on-different-handles.js 3 function checkCompletion()
11 function openTestDatabase()
19 function statementSuccessCallback(dbName, statementType)
24 function statementErrorCallback(dbName, statementType, error)
30 function runTransaction(db, dbName, val)
32 db.transaction(function(tx) {
35 function(result) { statementSuccessCallback(dbName, "read"); },
36 function(tx, error) { statementErrorCallback(dbName, "read", error); });
40 function(result) { statementSuccessCallback(dbName, "write"); },
41 function(tx, error) { statementErrorCallback(dbName, "write", error); })
    [all...]
  /external/v8/test/mjsunit/
try.js 30 function Catch(f, g) {
36 function CatchReturn(f, g) {
44 assertEquals(1, c(function() { return 1; }));
45 assertEquals('bar', c(function() { return 'bar'; }));
46 assertEquals(1, c(function () { throw 1; }, function (x) { return x; }));
47 assertEquals('bar', c(function () { throw 'bar'; }, function (x) { return x; }));
51 assertEquals(1, (function() { try { return 1; } finally { } })());
52 assertEquals(1, (function() { try { return 1; } finally { var x = 12; } })())
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 24 var Native = function(options){
32 var afterImplement = options.afterImplement || function(){};
47 var add = function(obj, name, method, force){
54 object.alias = function(a1, a2, a3){
62 object.implement = function(a1, a2, a3){
73 Native.genericize = function(object, property, check){
74 if ((!check || !object[property]) && typeof object.prototype[property] == 'function') object[property] = function(){
80 Native.implement = function(objects, properties){
84 Native.typize = function(object, family)
    [all...]
concat-jquery-mootools-prototype.js 12 (function(){
24 jQuery = window.jQuery = window.$ = function( selector, context ) {
36 init: function( selector, context ) {
80 // HANDLE: $(function)
103 size: function() {
109 get: function( num ) {
121 pushStack: function( elems, name, selector ) {
142 setArray: function( elems ) {
154 each: function( callback, args ) {
160 index: function( elem )
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.as 32 public function RewriteRuleSubtreeStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
49 public function nextNode():Object {
63 protected override function dup(el:Object):Object {
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 21 function ChromeExOAuth(url_request_token, url_auth_token, url_access_token,
67 ChromeExOAuth.initBackgroundPage = function(oauth_config) {
75 chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
80 chrome.tabs.create({ 'url' : changeInfo.url }, function(tab) {
93 * @param {Function} callback A function to call once an access token has
98 ChromeExOAuth.prototype.authorize = function(callback) {
102 window.chromeExOAuthOnAuthorize = function(token, secret) {
113 ChromeExOAuth.prototype.clearTokens = function() {
124 ChromeExOAuth.prototype.hasToken = function() {
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js 21 function ChromeExOAuth(url_request_token, url_auth_token, url_access_token,
67 ChromeExOAuth.initBackgroundPage = function(oauth_config) {
75 chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
80 chrome.tabs.create({ 'url' : changeInfo.url }, function(tab) {
93 * @param {Function} callback A function to call once an access token has
98 ChromeExOAuth.prototype.authorize = function(callback) {
102 window.chromeExOAuthOnAuthorize = function(token, secret) {
113 ChromeExOAuth.prototype.clearTokens = function() {
124 ChromeExOAuth.prototype.hasToken = function() {
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
chrome_ex_oauth.js 21 function ChromeExOAuth(url_request_token, url_auth_token, url_access_token,
67 ChromeExOAuth.initBackgroundPage = function(oauth_config) {
75 chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
80 chrome.tabs.create({ 'url' : changeInfo.url }, function(tab) {
93 * @param {Function} callback A function to call once an access token has
98 ChromeExOAuth.prototype.authorize = function(callback) {
102 window.chromeExOAuthOnAuthorize = function(token, secret) {
113 ChromeExOAuth.prototype.clearTokens = function() {
124 ChromeExOAuth.prototype.hasToken = function() {
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAllocaHoisting.cpp 16 #include "llvm/IR/Function.h"
21 bool NVPTXAllocaHoisting::runOnFunction(Function &function) {
23 Function::iterator I = function.begin();
26 for (Function::iterator E = function.end(); I != E; ++I) {
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
delayed-permission-allowed-for-multiple-requests.js 6 function allowPermission() {
15 navigator.geolocation.watchPosition(function() {
24 }, function(err) {
29 navigator.geolocation.getCurrentPosition(function() {
38 }, function(err) {
45 function maybeFinishTest() {
reentrant-permission-denied.js 10 function checkPermissionError(e) {
17 navigator.geolocation.getCurrentPosition(function(p) {
20 }, function(e) {
30 function continueTest() {
31 navigator.geolocation.getCurrentPosition(function(p) {
34 }, function(e) {
  /external/webkit/LayoutTests/storage/domstorage/events/resources/
eventTestHarness.js 12 iframe.contentWindow.onstorage = function (e) {
16 function runAfterStorageEvents(callback) {
18 function onTimeout() {
27 function testStorages(testCallback)
30 function allDone()
42 function runLocalStorage()
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.6.2-1.js 46 function getTestCases() {
52 function testprogram() {
62 function test() {
12.6.2-2.js 45 function getTestCases() {
51 function testprogram() {
64 function test() {
12.6.2-5.js 45 function getTestCases() {
51 function testprogram() {
61 function test() {
12.6.2-6.js 45 function getTestCases() {
51 function testprogram() {
63 function test() {
12.6.2-7.js 45 function getTestCases() {
51 function testprogram() {
61 function test() {
12.6.2-8.js 45 function getTestCases() {
50 function testprogram() {
58 function test() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
try-005.js 7 * as try-004, but the eval statement is called from a function, not
29 function Thrower( v ) {
32 function Eval( v ) {
42 function TryToCatch( value, expect ) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Eval/
eval-003.js 26 * The global eval function may not be accessed indirectly and then called.
64 var h = function f(x,y){var g = function(z){return Math.exp(z);}; return g(x+y);};
71 function EvalTest()
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-002.js 28 y getter: function get_y ()
39 y setter: function set_y (newVal)
48 function test(t)
  /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);

Completed in 506 milliseconds

1 2 3 4 5 6 7 891011>>