| /external/v8/test/webkit/ |
| function-declaration-statement.js | 25 "This test checks that function declarations are treated as statements." 28 function f() 33 function ifTest() 36 function f() 46 function ifElseTest() 51 function f() 61 function doWhileTest() 65 function f() 76 function whileTest() 80 function f( [all...] |
| array-reduceRight.js | 28 function toObject(array) { 36 function toUnorderedObject(array) { 48 shouldBe("[0,1,2,3].reduceRight(function(a,b){ return a + b; })", "6"); 49 shouldBe("[1,2,3].reduceRight(function(a,b){ return a + b; })", "6"); 50 shouldBe("[0,1,2,3].reduceRight(function(a,b){ return a + b; }, 4)", "10"); 51 shouldBe("[1,2,3].reduceRight(function(a,b){ return a + b; }, 4)", "10"); 52 shouldBe("toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; })", "6"); 53 shouldBe("toObject([1,2,3]).reduceRight(function(a,b){ return a + b; })", "6"); 54 shouldBe("toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; }, 4)", "10"); 55 shouldBe("toObject([1,2,3]).reduceRight(function(a,b){ return a + b; }, 4)", "10") [all...] |
| /frameworks/base/tools/aapt2/ |
| Flag.h | 14 std::function<void(const StringPiece&)> action); 17 std::function<bool(const StringPiece&, std::string*)> action); 20 std::function<void(const StringPiece&)> action);
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/ |
| invoke_void_0.pass.cpp | 12 // class function<R(ArgTypes...)> 39 // function 41 std::function<void ()> r1(f_void_0); 46 // function pointer 49 std::function<void ()> r1(fp); 57 std::function<void ()> r1(a0);
|
| /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
| CommonTreeNodeStream.js | 17 org.antlr.runtime.tree.CommonTreeNodeStream = function(adaptor, 55 StreamIterator: function() { 61 hasNext: function() { 65 next: function() { 74 remove: function() { 83 fillBuffer: function(t) { 115 getNodeIndex: function(node) { 133 addNavigationNode: function(ttype) { 154 get: function(i) { 161 LT: function(k) [all...] |
| TreeNodeStream.js | 2 org.antlr.runtime.tree.TreeNodeStream = function() {};
|
| /external/llvm/test/MC/ARM/ |
| target-expressions.s | 7 .type function,%function 8 function: label 12 .type external,%function 16 .type test,%function 18 movw r0, :lower16:function 19 movt r0, :upper16:function 21 movw r1, #:lower16:function 22 movt r1, #:upper16:function 49 @ CHECK: movw r0, :lower16:function [all...] |
| /external/chromium-trace/trace-viewer/tracing/third_party/components/polymer/ |
| polymer.min.js | 11 window.PolymerGestures={},function(a){var b=!1,c=document.createElement("meta");if(c.createShadowRoot){var d=c.createShadowRoot(),e=document.createElement("span");d.appendChild(e),c.addEventListener("testpath",function(a){a.path&&(b=a.path[0]===e),a.stopPropagation()});var f=new CustomEvent("testpath",{bubbles:!0});document.head.appendChild(c),e.dispatchEvent(f),c.parentNode.removeChild(c),d=e=null}c=null;var g={shadow:function(a){return a?a.shadowRoot||a.webkitShadowRoot:void 0},canTarget:function(a){return a&&Boolean(a.elementFromPoint)},targetingShadow:function(a){var b=this.shadow(a);return this.canTarget(b)?b:void 0},olderShadow:function(a){var b=a.olderShadowRoot;if(!b){var c=a.querySelector("shadow");c&&(b=c.olderShadowRoot)}return b},allShadows:function(a){for(var b=[],c=this.shadow(a);c;)b.push(c),c=this.olderShadow(c);return b},searchRoot:function(a,b,c){var d,e;return a?(d=a.elementFromPoint(b,c),d?e=this.targetingShadow(d):a!==document&&(e=this.olderShadow(a)),this.searchRoot(e,b,c)||d):void 0},owner:function(a){if(!a)return document;for(var b=a;b.parentNode;)b=b.parentNode;return b.nodeType!=Node.DOCUMENT_NODE&&b.nodeType!=Node.DOCUMENT_FRAGMENT_NODE&&(b=document),b},findTarget:function(a){if(b&&a.path&&a.path.length)return a.path[0];var c=a.clientX,d=a.clientY,e=this.owner(a.target) (…) [all...] |
| /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
| CommonTreeNodeStream.as | 95 public function CommonTreeNodeStream(tree:Object, adaptor:TreeAdaptor = null, initialBufferSize:int = DEFAULT_INITIAL_BUFFER_SIZE) { 97 // return uninitalized for static resuse function 114 public static function reuse(parent:CommonTreeNodeStream, start:int, stop:int):CommonTreeNodeStream { 128 protected function fillBuffer():void { 134 public function fillBufferTo(t:Object):void { 158 protected function getNodeIndex(node:Object):int { 175 protected function addNavigationNode(ttype:int):void { 196 public function getNode(i:int):Object { 203 public function LT(k:int):Object { 220 public function get currentSymbol():Object { return LT(1); [all...] |
| /external/google-breakpad/src/common/ |
| stabs_to_module_unittest.cc | 47 // Feed in a simple compilation unit that defines a function with 51 EXPECT_TRUE(h.StartFunction("function", 0xfde4abbed390c394LL)); 61 vector<Module::Function *> functions; 64 Module::Function *function = functions[0]; local 65 EXPECT_STREQ("function", function->name.c_str()); 66 EXPECT_EQ(0xfde4abbed390c394LL, function->address); 67 EXPECT_EQ(0x10U, function->size); 68 EXPECT_EQ(0U, function->parameter_size) 131 Module::Function *function = functions[0]; local 166 Module::Function *function = functions[0]; local 211 Module::Function *function = functions[0]; local [all...] |
| /external/v8/test/mjsunit/compiler/ |
| escape-analysis-arguments.js | 32 (function testCapturedArguments() { 33 function h() { 37 function g(x) { 41 function f() { 62 (function testTwoCapturedArguments() { 63 function h() { 67 function i() { 71 function g(x) { 75 function f() { 91 (function testTwoCapturedArgumentsNested() [all...] |
| /external/v8/test/mjsunit/harmony/ |
| proxies-for.js | 33 function TestWithProxies(test, x, y, z) { 35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z) 41 function TestForIn(properties, handler) { 45 function TestForIn2(create, properties, handler) { 53 enumerate: function() { return [0, "a"] } 57 enumerate: function() { return this.enumerate2() }, 58 enumerate2: function() { return [null, "a"] } 62 getPropertyNames: function() { return ["a", "b", "c", "d", "e"] }, 63 getPropertyDescriptor: function(k) [all...] |
| /external/v8/test/webkit/fast/js/ |
| Promise-static-all.js | 30 var p1 = new Promise(function(resolve) { resolve('p1'); }); 31 var p2 = new Promise(function(resolve) { resolve('p2'); }); 32 var p3 = new Promise(function(resolve) { resolve('p3'); }); 33 var p4 = new Promise(function() {}); 34 var p5 = new Promise(function() {}); 35 var p6 = new Promise(function(_, reject) { reject('p6'); }); 36 var p7 = new Promise(function(_, reject) { reject('p7'); }); 37 var p8 = new Promise(function(_, reject) { reject('p8'); }); 38 var p9 = new Promise(function(resolve) { resolve(p2); }); 40 Promise.all([p1, p2, p5]).then(function(result) [all...] |
| Promise-static-race.js | 30 var p1 = new Promise(function(resolve) { resolve('p1'); }); 31 var p2 = new Promise(function(resolve) { resolve('p2'); }); 32 var p3 = new Promise(function(resolve) { resolve('p3'); }); 33 var p4 = new Promise(function() {}); 34 var p5 = new Promise(function() {}); 35 var p6 = new Promise(function(_, reject) { reject('p6'); }); 36 var p7 = new Promise(function(_, reject) { reject('p7'); }); 37 var p8 = new Promise(function(_, reject) { reject('p8'); }); 38 var p9 = new Promise(function(resolve) { resolve(p2); }); 40 Promise.race([p4, p5]).then(function(localResult) [all...] |
| /external/v8/test/mjsunit/es6/ |
| generators-iteration.js | 32 var GeneratorFunction = (function*(){yield 1;}).__proto__.constructor; 34 function assertIteratorResult(value, done, result) { 38 function assertIteratorIsClosed(iter) { 40 assertDoesNotThrow(function() { iter.next(); }); 43 function assertThrownIteratorIsClosed(iter) { 50 function TestGeneratorResultPrototype() { 51 function* g() { yield 1; } 63 function TestGenerator(g, expected_values_for_next, 65 function testNext(thunk) { 75 function testSend(thunk) [all...] |
| /bionic/libc/arch-arm/include/machine/ |
| asm.h | 49 #define __bionic_asm_function_type #function
|
| /cts/suite/cts/deviceTests/browserbench/assets/octane/ |
| cts_report.js | 24 function CtsReport(msg, score, isFinal)
|
| /development/ndk/platforms/android-21/arch-arm64/include/machine/ |
| asm.h | 46 #define __bionic_asm_function_type %function
|
| /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
| EarlyExitException.as | 34 public function EarlyExitException(decisionNumber:int, input:IntStream) {
|
| Lexer.as | 39 public function Lexer(input:CharStream = null, state:RecognizerSharedState = null) { 44 public override function reset():void { 65 public function nextToken():Token { 105 public function skip():void { 110 public function mTokens():void { 111 // abstract function 116 public function set charStream(input:CharStream):void { 122 public function get charStream():CharStream { 126 public override function get sourceName():String { 135 public function emitToken(token:Token):void [all...] |
| MismatchedTreeNodeException.as | 7 public function MismatchedTreeNodeException(expecting:int, input:TreeNodeStream) { 12 public function toString():String {
|
| /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
| CommonTokenStream.js | 8 org.antlr.runtime.CommonTokenStream = function(tokenSource, channel) { 20 org.antlr.runtime.TokenStream = function() {}; 26 setTokenSource: function(tokenSource) { 37 fillBuffer: function() { 81 consume: function() { 91 skipOffTokenChannels: function(i) { 99 skipOffTokenChannelsReverse: function(i) { 112 setTokenTypeChannel: function(ttype, channel) { 119 discardTokenType: function(ttype) { 126 discardOffChannelTokens: function(b) [all...] |
| RecognizerSharedState.js | 8 org.antlr.runtime.RecognizerSharedState = function() {
|
| /external/boringssl/linux-x86_64/crypto/rand/ |
| rdrand-x86_64.S | 6 .type CRYPTO_rdrand,@function
|
| /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tree_adapters/ |
| htmlparser2.js | 23 var Node = function (props) { 46 Object.keys(nodePropertyShorthands).forEach(function (key) { 50 get: function () { 53 set: function (val) { 63 exports.createDocumentFragment = function () { 74 exports.createElement = function (tagName, namespaceURI, attrs) { 101 exports.createCommentNode = function (data) { 111 var createTextNode = function (value) { 123 exports.setDocumentType = function (document, name, publicId, systemId) { 154 exports.setQuirksMode = function (document) [all...] |