| /external/lldb/include/lldb/Expression/ |
| IRInterpreter.h | 21 class Function; 34 /// @brief Attempt to interpret the function's code if it does not require 46 llvm::Function &function, 51 llvm::Function &function, 60 supportsFunction (llvm::Function &llvm_function,
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
| ast.ml | 16 (* variant for function calls. *) 19 (* proto - This type represents the "prototype" for a function, which captures 21 * function takes). *) 24 (* func - This type represents a function definition itself. *) 25 type func = Function of proto * expr
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
| ast.ml | 16 (* variant for function calls. *) 19 (* proto - This type represents the "prototype" for a function, which captures 21 * function takes). *) 24 (* func - This type represents a function definition itself. *) 25 type func = Function of proto * expr
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
| ast.ml | 16 (* variant for function calls. *) 19 (* proto - This type represents the "prototype" for a function, which captures 21 * function takes). *) 24 (* func - This type represents a function definition itself. *) 25 type func = Function of proto * expr
|
| /external/llvm/include/llvm/ExecutionEngine/Orc/ |
| CloneSubModule.h | 24 class Function; 32 typedef std::function<void(GlobalVariable &, const GlobalVariable &, 36 /// Function. 37 typedef std::function<void(Function &, const Function &, ValueToValueMapTy &)> 49 void copyFunctionBody(Function &New, const Function &Orig,
|
| /external/llvm/test/MC/ARM/ |
| inst-directive-emit.s | 8 .type emit_asm,%function 16 @ CHECK: .type emit_asm,%function
|
| /external/llvm/test/MC/AsmParser/ |
| directive_rept.s | 6 .type two_bad_calls,@function 17 .type half_a_dozen_daffodils,@function
|
| /external/mesa3d/src/glx/apple/ |
| apple_glx_log.h | 39 void _apple_glx_log(int level, const char *file, const char *function, 46 void _apple_glx_vlog(int level, const char *file, const char *function,
|
| /external/okhttp/website/static/ |
| jquery-maven-artifact.min.js | 7 */(function(e){function n(e,t){var n=e.groupId.replace(/\./g,"/"),r="http://repo1.maven.org/maven2/"+n+"/"+e.artifactId+"/"+t+"/"+e.artifactId+"-"+t;return typeof e.classifier!="undefined"&&(r+="-"+e.classifier),r+="."+e.packaging,r}function r(e){var t={groupId:"g",artifactId:"a",packaging:"p",classifier:"l"},n="";for(var r in t)t.hasOwnProperty(r)&&e.hasOwnProperty(r)&&(n!==""&&(n+="+AND+"),n+=t[r]+':"'+e[r]+'"');return n}var t={packaging:"jar"};e.fn.artifactVersion=function(i,s){if(typeof i=="undefined"){alert("Error: config object is required.");return}if(typeof s=="undefined"){alert("Error: callback function required.");return}var i=e.extend({},t,i),o="http://search.maven.org/solrsearch/select/?q="+r(i)+"&wt=json&json.wrf=?";e.getJSON(o,function(e){var t=e.response.docs;if(t.length==0)return;var r=t[0].latestVersion||t[0].v,o=n(i,r);s(r,o)})},e.fn.artifactVersions=function(i,s){if(typeof i=="undefined"){alert("Error: config object is required.");return}if(typeof s=="undefined"){alert("Error: callback function required.");return}var i=e.extend({},t,i),o="http://search.maven.org/solrsearch/select/?q="+r(i)+"&wt=json&rows=10&core=gav&json.wrf=?";e.getJSON(o,function(e){var t=e.response.docs;if(t.length==0)return;t.sort(function(e,t){return e.v>t.v?-1:1});var r=[];for(var o=0;o<t.length;o++){var u=t[o].v;r.push({name:u,url:n( (…) [all...] |
| /external/skia/tools/lua/ |
| dump_clipstack_at_restore.lua | 0 function sk_scrape_startcanvas(c, fileName) 7 function sk_scrape_endcanvas(c, fileName) 11 function sk_scrape_accumulate(t) 33 function sk_scrape_summarize() end
|
| /external/slf4j/slf4j-site/src/site/pages/js/ |
| decorator.js | 6 function decorate() { 14 function findAnchorInURL(url) { 25 function decoratePropertiesInTables(anchor) { 53 function decorateConversionWordInTables(anchor) { 68 function decorateDoAnchor(anchor) { 83 function scrollIfMatch(element, nameAttr, anchor) { 90 function capitaliseFirstLetter(str) { 95 function camelCase(str) { 96 var res = str.trim().replace(/\s\w/g, function(match) {
|
| /external/v8/test/mjsunit/ |
| comparison-ops-and-undefined.js | 30 function test_helper_for_ics(func, b1, b2, b3, b4) { 37 function test_helper_for_crankshaft(func, b1, b2, b3, b4) { 46 function less_1(a, b) { 52 function less_2(a, b) { 58 function greater_1(a, b) { 64 function greater_2(a, b) { 70 function less_equal_1(a, b) { 76 function less_equal_2(a, b) { 82 function greater_equal_1(a, b) { 88 function greater_equal_2(a, b) [all...] |
| /external/v8/test/mjsunit/es6/debug-promises/ |
| reject-caught-late.js | 13 var p = new Promise(function(resolve, reject) { 18 function() { 19 q.catch(function(e) { 25 function listener(event, exec_state, event_data, data) {
|
| reject-caught-uncaught.js | 13 var p = new Promise(function(resolve, reject) { 18 function() { 23 function(e) { 27 function listener(event, exec_state, event_data, data) {
|
| reject-with-invalid-reject.js | 16 var p = new Promise(function(resolve, reject) { 21 function MyPromise(resolver) { 23 var resolve = function() { }; 28 MyPromise.prototype = new Promise(function() {}); 32 function() { 37 function listener(event, exec_state, event_data, data) { 42 assertEquals("number is not a function", event_data.exception().message); 54 function testDone(iteration) { 55 function checkResult() {
|
| throw-caught-late.js | 13 var p = new Promise(function(resolve, reject) { 18 function() { 19 q.catch(function(e) { 25 function listener(event, exec_state, event_data, data) {
|
| throw-caught-uncaught.js | 13 var p = new Promise(function(resolve, reject) { 18 function() { 23 function(e) { 27 function listener(event, exec_state, event_data, data) {
|
| throw-with-throw-in-reject.js | 18 var p = new Promise(function(resolve, reject) { 23 function MyPromise(resolver) { 24 var reject = function() { 28 var resolve = function() { }; 33 MyPromise.prototype = new Promise(function() {}); 37 function() { 42 function listener(event, exec_state, event_data, data) { 69 function testDone(iteration) { 70 function checkResult() {
|
| throw-with-undefined-reject.js | 18 var p = new Promise(function(resolve, reject) { 23 function MyPromise(resolver) { 25 var resolve = function() { }; 30 MyPromise.prototype = new Promise(function() {}); 34 function() { 39 function listener(event, exec_state, event_data, data) { 51 assertEquals("undefined is not a function", 68 function testDone(iteration) { 69 function checkResult() {
|
| /external/v8/test/mjsunit/es6/ |
| generators-objects.js | 34 function TestContextAllocation() { 35 function* g1(a, b, c) { yield 1; return [a, b, c]; } 36 function* g2() { yield 1; return arguments; } 37 function* g3() { yield 1; return this; } 38 function* g4() { var x = 10; yield 1; return x; } 40 function* g5(l) { "use strict"; yield 1; for (let x in l) { yield x; } } 52 function TestGeneratorObject() { 53 function* g() { yield 1; } 76 function TestGeneratorObjectMethods() { 77 function* g() { yield 1; [all...] |
| math-fround.js | 8 Float32Array = function(x) { this[0] = 0; }; 11 assertTrue(isNaN(Math.fround(function() {}))); 12 assertTrue(isNaN(Math.fround({ toString: function() { return NaN; } }))); 13 assertTrue(isNaN(Math.fround({ valueOf: function() { return "abc"; } }))); 15 assertTrue(isNaN(Math.fround(function() {}))); 16 assertTrue(isNaN(Math.fround({ toString: function() { return NaN; } }))); 17 assertTrue(isNaN(Math.fround({ valueOf: function() { return "abc"; } }))); 19 function unopt(x) { return Math.fround(x); } 20 function opt(y) { return Math.fround(y); } 28 function test(f) [all...] |
| /external/v8/test/mjsunit/regress/ |
| regress-3183.js | 30 (function DeoptimizeArgCallFunctionGeneric() { 33 function f1(method, array, elem, deopt) { 37 function f2() { } 39 function bar(x, deopt, f) { 43 function foo() { return bar(arguments[0], arguments[1], arguments[2]); } 44 function baz(f, deopt) { return foo("x", deopt, f); } 53 (function DeoptimizeArgGlobalFunctionGeneric() { 58 f1 = function(method, array, elem, deopt) { 62 function bar(x, deopt, f) { 66 function foo() { return bar(arguments[0], arguments[1]); [all...] |
| regress-3404.js | 5 function testError(error) { 17 function stackOverflow() { 18 function f() { f(); } 22 function referenceError() {
|
| regress-crbug-417508.js | 7 function foo(x) { 12 Object.defineProperty(obj, "value", {set: function(x) { throw "nope"; }}); 18 function bar(x) { 24 {set: function(x) { throw "nope"; return true; } });
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
| alloc_function.pass.cpp | 12 // class function<R(ArgTypes...)> 14 // template<class A> function(allocator_arg_t, const A&, const function&); 70 std::function<int(int)> f = A(); 75 std::function<int(int)> f2(std::allocator_arg, test_allocator<A>(), f); 84 std::function<int(int)> f = g; 88 std::function<int(int)> f2(std::allocator_arg, test_allocator<int(*)(int)>(), f); 96 non_default_test_allocator<std::function<int(int)>> al(1); 97 std::function<int(int)> f2(std::allocator_arg, al, g); 104 std::function<int(int)> f [all...] |