HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 126 - 150 of 6305) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/zlib/src/contrib/pascal/
zlibpas.pas 17 alloc_func = function(opaque: Pointer; items, size: Integer): Pointer;
22 in_func = function(opaque: Pointer; var buf: PByte): Integer;
24 out_func = function(opaque: Pointer; buf: PByte; size: Integer): Integer;
105 function zlibVersion: PChar;
106 function deflateInit(var strm: z_stream; level: Integer): Integer;
107 function deflate(var strm: z_stream; flush: Integer): Integer;
108 function deflateEnd(var strm: z_stream): Integer;
109 function inflateInit(var strm: z_stream): Integer;
110 function inflate(var strm: z_stream; flush: Integer): Integer;
111 function inflateEnd(var strm: z_stream): Integer
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/tests/
function.js 0 function badFuncNoAnnotation() {
8 function badFuncAnnotatedButNoReturn() // ERROR - no @return annotation.
15 function badFuncAnnotatedButNoReturnValue() // ERROR - no returned value.
23 function goodFunc() // OK - annotated @return.
31 function badReturnsShouldBeReturnFunc() // ERROR - @returns, should be @return.
39 function badReturnShouldBeTypedFunc() // ERROR - number, not {number}.
48 function badParamAnnotationsFunc(foo, bar) // ERROR - @param's should be well-formed
57 function badReturnsShouldBeReturnNoValueFunc() // ERROR - @returns, should be @return.
65 function badReturnsShouldBeAbsentFunc() // ERROR - @returns, should be absent.
72 function TypeOne()
    [all...]
  /external/chromium_org/extensions/common/
stack_frame.cc 15 const char kAnonymousFunction[] = "(anonymous function)";
25 function(frame.function) {
31 const base::string16& function)
35 function(function.empty() ? base::UTF8ToUTF16(kAnonymousFunction)
36 : function) {
57 std::string function; local
60 &function, &source, &line, &column) &&
70 base::UTF8ToUTF16(function)));
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
toMethod.js 8 (function TestSingleClass() {
9 function f(x) {
14 function ClassD() { }
24 (function TestClassHierarchy() {
25 function f(x) {
26 return function g(y) { x++; return x + y; };
29 function Base() {}
30 function Derived() { }
43 (function TestErrorCases() {
44 var sFun = Function.prototype.toMethod
    [all...]
proxies-with.js 33 function TestWithProxies(test, x, y, z) {
35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
42 function TestWithGet(handler) {
49 function TestWithGet2(create, handler) {
69 get: function(r, k) { key = k; return k === "a" ? "onproxy" : undefined },
70 getPropertyDescriptor: function(k) {
77 get: function(r, k) { return this.get2(r, k) },
78 get2: function(r, k) { key = k; return k === "a" ? "onproxy" : undefined },
79 getPropertyDescriptor: function(k)
    [all...]
  /external/guava/guava/src/com/google/common/base/
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/chromium_org/native_client_sdk/src/examples/api/media_stream_video/
example.js 7 function success(s) {
15 function failure(e) {
19 function changeFormat(format) {
23 function changeSize(width, height) {
27 function moduleDidLoad() {
31 function attachListeners() {
33 'click', function() { changeFormat('YV12'); });
35 'click', function() { changeFormat('I420'); });
37 'click', function() { changeFormat('BGRA'); });
39 'click', function() { changeFormat('DEFAULT'); })
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptModule.cpp 54 ScriptFunctionCall function(injectedScript.injectedScriptObject(), "module");
55 function.appendArgument(name());
57 ScriptValue resultValue = injectedScript.callFunctionWithEvalEnabled(function, hadException);
61 ScriptFunctionCall function(injectedScript.injectedScriptObject(), "injectModule");
62 function.appendArgument(name());
63 function.appendArgument(source());
64 resultValue = injectedScript.callFunctionWithEvalEnabled(function, hadException);
InjectedScript.cpp 63 ScriptFunctionCall function(injectedScriptObject(), "evaluate");
64 function.appendArgument(expression);
65 function.appendArgument(objectGroup);
66 function.appendArgument(includeCommandLineAPI);
67 function.appendArgument(returnByValue);
68 function.appendArgument(generatePreview);
69 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails);
74 ScriptFunctionCall function(injectedScriptObject(), "callFunctionOn");
75 function.appendArgument(objectId);
76 function.appendArgument(expression)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
ContentProvider.js 34 WebInspector.ContentProvider = function() { }
40 contentURL: function() { },
45 contentType: function() { },
48 * @param {function(?string)} callback
50 requestContent: function(callback) { },
56 * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} callback
58 searchInContent: function(query, caseSensitive, isRegex, callback) { }
66 WebInspector.ContentProvider.SearchMatch = function(lineNumber, lineContent) {
78 WebInspector.ContentProvider.performSearchInContent = function(content, query, caseSensitive, isRegex)
  /external/clang/test/Modules/Inputs/
redecl-add-after-load-decls.h 3 extern constexpr int function();
4 constexpr int test(bool b) { return b ? variable : function(); }
9 extern constexpr int function();
12 constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
16 constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
21 static constexpr int function(); // expected-note {{here}}
24 constexpr int D_test(bool b) { return b ? D::variable : D::function(); } // expected-note {{subexpression}} expected-note {{undefined}}
  /external/chromium_org/chrome/browser/extensions/
extension_api_unittest.cc 44 UIThreadExtensionFunction* function, const std::string& args) {
45 function->set_extension(extension());
47 function->SetRenderViewHost(contents_->GetRenderViewHost());
49 utils::RunFunctionAndReturnSingleResult(function, args, browser()));
54 UIThreadExtensionFunction* function, const std::string& args) {
55 base::Value* value = RunFunctionAndReturnValue(function, args).release();
68 UIThreadExtensionFunction* function, const std::string& args) {
69 base::Value* value = RunFunctionAndReturnValue(function, args).release();
82 UIThreadExtensionFunction* function, const std::string& args) {
83 function->set_extension(extension())
    [all...]
  /external/chromium_org/content/test/data/indexeddb/
shared.js 5 function result(message) {
9 function unexpectedErrorCallback()
14 function unexpectedAbortCallback()
19 function unexpectedCompleteCallback()
24 function unexpectedSuccessCallback()
29 function unexpectedUpgradeNeededCallback()
34 function unexpectedBlockedCallback()
  /external/chromium_org/v8/test/webkit/
codegen-temporaries.js 36 function TestObject() {
37 this.toString = function() { return this.test; }
42 function assign_test1()
52 function assign_test2()
62 function assign_test3()
84 function assign_test6()
94 function assign_test7()
104 function assign_test8()
114 function assign_test9()
130 function assign_test11(
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRStringStream.as 64 public function ANTLRStringStream(input:String = null, lineDelimiter:String = "\n") {
76 public function reset():void {
83 public function consume():void {
94 public function LA(i:int):int {
111 public function LT(i:int):int {
119 public function get index():int {
123 public function get size():int {
127 public function mark():int {
148 public function rewindTo(m:int):void {
157 public function rewind():void
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
WorkerManager.js 37 WebInspector.WorkerManager = function(target, isMainFrontend)
60 _reset: function()
69 _workerCreated: function(workerId, url, inspectorConnected)
76 _workerTerminated: function(workerId)
83 _dispatchMessageFromWorker: function(workerId, message)
88 _disconnectedFromWorker: function()
93 _mainFrameNavigated: function(event)
102 threadsList: function()
111 threadUrl: function(threadId)
119 setSelectedThreadId: function(threadId
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
IsolatedFileSystem.js 38 WebInspector.IsolatedFileSystem = function(manager, path, name, rootURL)
50 WebInspector.IsolatedFileSystem.errorMessage = function(error)
59 WebInspector.IsolatedFileSystem.normalizePath = function(fileSystemPath)
70 path: function()
78 normalizedPath: function()
89 name: function()
97 rootURL: function()
103 * @param {function(?DOMFileSystem)} callback
105 _requestFileSystem: function(callback)
112 * @param {function(string)} fileCallbac
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
function-apply.js 24 description('Tests to ensure that Function.apply works correctly for Arrays, arguments and array-like objects.');
26 function argumentsApply1(a, b, c)
28 function t(a, b, c)
35 function argumentsApply2(a, b, c)
37 function t(a, b, c)
44 function argumentsApply3(a, b, c)
46 function t(a, b, c)
53 function argumentsApplyLength(a, b, c)
55 function t(a, b, c)
62 function argumentsApplyExcessArguments(a, b, c
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTree.as 53 public function CommonTree(node:CommonTree = null) {
62 public static function createFromToken(t:Token):CommonTree {
68 public function get token():Token {
72 public override function dupNode():Tree {
76 public override function get isNil():Boolean {
80 public override function get type():int {
87 public override function get text():String {
94 public override function get line():int {
104 public override function get charPositionInLine():int {
114 public override function get tokenStartIndex():int
    [all...]
TreeRuleReturnScope.as 45 public override function get tree():Object {
49 public function set tree(tree:Object):void {
53 public function get values():Object {
57 public override function get start():Object {
61 public function set start(value:Object):void {
  /external/chromium_org/chrome/browser/resources/chromeos/
slow.js 5 cr.define('options', function() {
6 function Slow() {
14 Slow.initialize = function() {
15 $('slow-disable').addEventListener('click', function(event) {
18 $('slow-enable').addEventListener('click', function(event) {
24 Slow.disableTracing = function() {
28 Slow.enableTracing = function() {
32 Slow.tracingPrefChanged = function(enabled) {
43 function load() {
  /external/chromium_org/chrome/renderer/resources/extensions/
notifications_test_util.js 8 var require = function(library) {
12 'create': function () {
14 registerCustomHook: function () {},
15 generate: function () {}
21 sendRequest: function () {}
26 var requireNative = function(library) {
29 GetNotificationImageSizes: function () {
44 push: function (ary, val) {
49 var $Function = {
50 bind: function (fn, context)
    [all...]
  /sdk/templates/docs/
default.js 17 $(document).ready(function() {
21 var sluggify_ = function(s) {
25 $('h2, h3, h4.includetoc').each(function() {
27 $(this).click(function() {
32 var buildNav_ = function(queries, $contentRoot, $navRoot) {
37 $contentRoot.find(queries[0]).each(function() {
48 function buildNav() {
53 $('#page-content').find('h2, h3, h4.includetoc').each(function() {
75 .click(function() {
89 var rebuildHeaderPositionCache_ = function() {
    [all...]
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/lua/
lua.js 10 window.onload = function() {
11 lib.init(function() {
24 function runLua() {
29 function runUnitTests() {
35 function runSciMark(e) {
41 function runBinaryTrees(e) {
47 function runMandlebrot(e) {
56 function runFibonacci(e) {
60 term_.command.sendMessage('function fib(n) return n<2 and n or fib(n-1)+fib(n-2) end\nprint(fib(10))\nprint(fib(30))\n')
65 function runBanner(e)
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
math-spectral-norm.js 6 function A(i,j) {
10 function Au(u,v) {
19 function Atu(u,v) {
28 function AtAu(u,v,w) {
33 function spectralnorm(n) {

Completed in 509 milliseconds

1 2 3 4 56 7 8 91011>>