HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 301 - 325 of 6113) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/skia/tools/lua/
chars-vs-glyphs.lua 3 function sk_scrape_startcanvas(c, fileName)
7 function sk_scrape_endcanvas(c, fileName)
21 function sk_scrape_accumulate(t)
31 function sk_scrape_summarize()
dumpops.lua 0 function tostr(t)
21 function sk_scrape_startcanvas(c, fileName) end
23 function sk_scrape_endcanvas(c, fileName) end
25 function sk_scrape_accumulate(t)
33 function sk_scrape_summarize() end
  /external/chromium_org/v8/src/
runtime-profiler.h 26 void AttemptOnStackReplacement(JSFunction* function);
29 void Optimize(JSFunction* function, const char* reason);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-365172-3.js 7 function f1(a) { return {x:a, v:''}; }
8 function f2(a) { return {x:{v:a}, v:''}; }
9 function f3(a) { return {x:[], v:{v:''}}; }
12 a.__defineGetter__('v', function() { gc(); return f2(this); });
regress-builtinbust-7.js 6 function overflow() {
10 assertDoesNotThrow(function() { Intl.Collator.supportedLocalesOf("en"); });
21 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE", options); });
24 assertDoesNotThrow(function() {
29 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE", undefined); });
30 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE"); });
31 assertThrows(function() { date.toLocaleDateString("de-DE", null); }, TypeError);
regress-362128.js 6 function genM() {
8 return function () {
13 function genR() {
26 var foo = (function () {
27 return function suspect (name) {
  /external/llvm/test/MC/ELF/
comdat-reloc.s 5 .type hello,@function
11 .type world,@function
  /external/llvm/test/MC/Mips/
elf_st_other.s 5 .type f1, @function
16 .type f2, @function
  /external/skia/tools/lua/
chars-vs-glyphs.lua 3 function sk_scrape_startcanvas(c, fileName)
7 function sk_scrape_endcanvas(c, fileName)
21 function sk_scrape_accumulate(t)
31 function sk_scrape_summarize()
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
svn-log.js 29 (function() {
31 function findUsingRegExp(string, regexp)
39 function findReviewer(message)
48 function findBugID(message)
54 var result = value.split(/\s*,\s*/).map(function(id) {
57 }).filter(function(id) {
63 function findRevision(message)
70 function parseCommitMessage(message) {
73 lines.some(function(line) {
90 function parseCommitData(responseXML
    [all...]
base_unittests.js 26 (function () {
30 test("joinPath", 1, function() {
35 test("endsWith", 9, function() {
47 test("trimExtension", 6, function() {
56 test("joinPath with empty parent", 1, function() {
61 test("dirName", 3, function() {
67 test("uniquifyArray", 5, function() {
75 test("flattenArray", 5, function() {
83 test("filterDictionary", 3, function() {
88 deepEqual(base.filterDictionary(dictionary, function() { return true; }),
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
actions_unittests.js 26 (function () {
30 test('Buttons', 6, function() {
44 buttonInfos.forEach(function(buttonInfo) {
50 test('click', 1, function() {
52 $(examine).bind('examine', function() {
58 test('default', 2, function() {
64 test('List', 1, function() {
  /external/chromium_org/webkit/data/test_shell/sort/
sort-quick.js 3 function sort_quick(sort, left, right) {
15 function partition(sort, left, right, pivot) {
17 sort.add_work(function(){partition_step(sort, left, right, pivot, left, left);});
20 function partition_step(sort, left, right, pivot, i, j) {
27 sort.add_work(function(){partition_step(sort, left, right, pivot, i, j)});
30 sort.add_work(function(){sort_quick(sort, left, j-1)});
31 sort.add_work(function(){sort_quick(sort, j+1, right)});
  /external/chromium_org/tools/gn/
function_template.cc 20 " A template defines a custom name that acts like a function. It\n"
23 " The template() function is used to declare a template. To invoke the\n"
149 const FunctionCallNode* function,
153 // TODO(brettw) determine if the function is built-in and throw an error if
156 *err = Err(function->function(),
166 *err = Err(function, "Duplicate template definition.",
173 scope->AddTemplate(template_name, new Template(scope, function));
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CommonTokenStream.as 65 public function CommonTokenStream(tokenSource:TokenSource = null, channel:int = TokenConstants.DEFAULT_CHANNEL) {
71 public function set tokenSource(tokenSource:TokenSource):void {
82 protected function fillBuffer():void {
120 public function consume():void {
130 protected function skipOffTokenChannels(i:int):int {
138 protected function skipOffTokenChannelsReverse(i:int):int {
151 public function setTokenTypeChannel(ttype:int, channel:int):void {
158 public function discardTokenType(ttype:int):void {
165 public function discardOffChannelTokens(discardOffChannelTokens:Boolean):void {
169 public function getTokens():Array
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
SuggestBox.js 34 WebInspector.SuggestBoxDelegate = function()
43 applySuggestion: function(suggestion, isIntermediateSuggestion) { },
48 acceptSuggestion: function() { },
56 WebInspector.SuggestBox = function(suggestBoxDelegate, maxItemsHeight)
74 visible: function()
82 setPosition: function(anchorBox)
90 _updateBoxPosition: function(anchorBox)
127 _onBoxMouseDown: function(event)
136 _maybeHide: function()
142 _show: function()
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/qunit/test/
test.js 1 test("module without setup/teardown (default)", function() {
6 test("expect in test", 3, function() {
12 test("expect in test", 1, function() {
17 setup: function() {
22 test("module with setup", function() {
27 test("module with setup, expect in test call", 2, function() {
34 setup: function() {
38 teardown: function() {
43 test("module with setup/teardown", function() {
50 test("module without setup/teardown", function() {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
IsolatedFileSystem.js 38 WebInspector.IsolatedFileSystem = function(manager, path, name, rootURL)
46 WebInspector.IsolatedFileSystem.errorMessage = function(error)
77 WebInspector.IsolatedFileSystem.normalizePath = function(fileSystemPath)
88 path: function()
96 normalizedPath: function()
107 name: function()
115 rootURL: function()
121 * @param {function(?DOMFileSystem)} callback
123 _requestFileSystem: function(callback)
130 * @param {function(string)} callbac
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
jquery-history.js 6 (function($) {
11 getDoc: function() {
14 getHash: function() {
17 setHash: function(hash) {
25 var historycheck = function() {
39 add: function(hash) {
53 getCurrent: function() {
62 $.fn.history = function(fn) {
66 $.fn.historyadd = function(fn) {
70 $(function() {
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleElementStream.as 72 public function RewriteRuleElementStream(adaptor:TreeAdaptor, elementDescription:String, element:Object = null) {
92 public function reset():void {
97 public function add(el:Object):void {
122 public function nextTree():Object {
141 protected function _next():Object {
169 protected function dup(el:Object):Object {
176 protected function toTree(el:Object):Object {
180 public function get hasNext():Boolean {
185 public function get size():int {
196 public function get description():String
    [all...]
  /external/chromium_org/chrome/browser/resources/feedback/js/
topbar_handlers.js 8 function initializeHandlers() {
9 $('minimize-button').addEventListener('click', function(e) {
14 $('minimize-button').addEventListener('mousedown', function(e) {
18 $('close-button').addEventListener('click', function() {
22 $('close-button').addEventListener('mousedown', function(e) {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/i18n/getMessage/
popup.js 5 function setChildTextNode(elementId, text) {
9 function init() {
13 function getAcceptLanguages() {
14 chrome.i18n.getAcceptLanguages(function(languageList) {
21 document.addEventListener('DOMContentLoaded', function() {
  /external/chromium_org/third_party/WebKit/PerformanceTests/Layout/resources/
large-table-with-collapsed-borders.js 0 (function() {
2 function createElement(tag, parent, className, id) {
11 function createTable(width, height, colspan) {
24 function createTestFunction(width, height, colspan) {
25 return function() {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TracingModel.js 11 WebInspector.TracingModel = function(target)
80 devtoolsMetadataEvents: function()
88 * @param {function(?string)=} callback
90 start: function(categoryFilter, options, callback)
99 function callbackWrapper(error, sessionId)
110 * @param {function()} callback
112 stop: function(callback)
125 sessionId: function()
134 setEventsForTest: function(sessionId, events)
145 _bufferUsage: function(usage
    [all...]
  /external/chromium_org/v8/test/mjsunit/es6/
math-clz32.js 8 function(x) {
13 function testclz(x) {
22 function f(e) {
27 assertEquals(testclz(x), Math.clz32({ valueOf: function() { return x; } }));
29 Math.clz32({ toString: function() { return -x; } }));

Completed in 1256 milliseconds

<<11121314151617181920>>