| /external/clang/test/CodeGen/ |
| windows-on-arm-stack-probe-size.c | 12 __declspec(dllexport) signed char function(unsigned index) {
|
| /external/cmockery/cmockery_0_1_2/src/google/ |
| cmockery.h | 35 // Retrieves a return value for the current function. 38 /* Stores a value to be returned by the specified function later. 42 #define will_return(function, value) \ 43 _will_return(#function, __FILE__, __LINE__, (void*)value, 1) 44 #define will_return_count(function, value, count) \ 45 _will_return(#function, __FILE__, __LINE__, (void*)value, count) 47 /* Add a custom parameter checking function. If the event parameter is NULL 48 * the event structure is allocated internally by this function. If event 52 #define expect_check(function, parameter, check_function, check_data) \ 53 _expect_check(#function, #parameter, __FILE__, __LINE__, check_function, 299 UnitTestFunction function; member in struct:UnitTest [all...] |
| /external/compiler-rt/lib/builtins/ |
| int_util.h | 13 * library. The function definitions themselves are all contained in int_util.c 27 const char *function) __attribute__((noreturn));
|
| /external/compiler-rt/test/asan/TestCases/ |
| deep_thread_stack.cc | 29 void *RunnerThread(void *function) { 31 pthread_create(&thread, NULL, (callback_type)function, NULL); 36 void RunThread(callback_type function) { 38 pthread_create(&runner, NULL, RunnerThread, (void*)function);
|
| /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.cap/ |
| operator_bool.pass.cpp | 12 // class function<R(ArgTypes...)> 24 std::function<int(int)> f;
|
| /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
| alloc.pass.cpp | 12 // class function<R(ArgTypes...)> 14 // template<class A> function(allocator_arg_t, const A&); 23 std::function<int(int)> f(std::allocator_arg, test_allocator<int>());
|
| alloc_nullptr.pass.cpp | 12 // class function<R(ArgTypes...)> 14 // template<class A> function(allocator_arg_t, const A&, nullptr_t); 23 std::function<int(int)> f(std::allocator_arg, test_allocator<int>(), nullptr);
|
| /external/llvm/test/MC/AArch64/ |
| inst-directive.s | 10 .type aarch64_inst,%function 16 // CHECK-ASM: .type aarch64_inst,@function
|
| /external/llvm/test/MC/ELF/ARM/ |
| gnu-type-hash.s | 6 // CHECK: .type TYPE,%function 8 .type type #function 9 // CHECK: .type type,%function 12 // CHECK: .type comma_TYPE,%function 14 .type comma_type, #function 15 // CHECK: .type comma_type,%function
|
| /external/llvm/test/MC/ELF/ |
| gen-dwarf.s | 16 .type foo, @function
|
| symbol-names.s | 7 .type foo?bar, @function
|
| /external/v8/test/mjsunit/ |
| keyed-named-access.js | 12 function f(o) { 38 (function CountOperationDeoptimizationGetter() { 40 global.__defineGetter__("A", function () { return "x"; }); 42 function h() { 46 function g(a, b, c) { 52 function test(o) { 63 (function CountOperationDeoptimizationPoint() { 64 function test() {
|
| /external/v8/test/mjsunit/regress/ |
| polymorphic-accessor-test-context.js | 7 function t1() { return this instanceof t1; } 8 function t2() { return this instanceof t2; } 10 var o1 = new (function() { })(); 11 Object.defineProperty(o1, "t", {get:function() { return this instanceof o1.constructor; }}); 12 var o2 = new (function() { })(); 13 Object.defineProperty(o2, "t", {get:function() { return this instanceof o1.constructor; }}); 14 var o3 = new (function() { })(); 17 function f(o) {
|
| regress-3138.js | 5 (function f(){ 6 assertEquals("function", typeof f); 9 (function f(){ 10 var f; // Variable shadows function name. 14 (function f(){ 17 with ({}); // Force context allocation of both variable and function name. 23 (function() { 33 (function() {
|
| regress-343609.js | 8 function Ctor() { 12 function get_closure() { 13 return function add_field(obj) { 19 function get_closure2() { 20 return function cc(obj) { 26 function dummy() { 27 (function () { 38 function opt() { 39 (function () { 53 // Optimize dummy function to remove the add_field from head of optimize [all...] |
| /external/v8/test/webkit/ |
| delete-getters-setters.js | 29 this.__defineSetter__("a1", function() {}); 30 this.__defineSetter__("b1", function() {}); 35 this.__defineSetter__("a2", function() {}); 36 this.__defineSetter__("b2", function() {}); 41 this.__defineGetter__("a3", function() {}); 42 this.__defineGetter__("b3", function() {}); 47 this.__defineGetter__("a4", function() {}); 48 this.__defineGetter__("b4", function() {}); 53 this.__defineSetter__("a5", function() {}); 54 this.__defineGetter__("b5", function() {}); [all...] |
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.cap/ |
| operator_bool.pass.cpp | 12 // class function<R(ArgTypes...)> 24 std::function<int(int)> f;
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
| alloc.pass.cpp | 12 // class function<R(ArgTypes...)> 14 // template<class A> function(allocator_arg_t, const A&); 23 std::function<int(int)> f(std::allocator_arg, test_allocator<int>());
|
| alloc_nullptr.pass.cpp | 12 // class function<R(ArgTypes...)> 14 // template<class A> function(allocator_arg_t, const A&, nullptr_t); 23 std::function<int(int)> f(std::allocator_arg, test_allocator<int>(), nullptr);
|
| /external/v8/test/mjsunit/harmony/ |
| string-fromcodepoint.js | 25 assertThrows(function() { String.fromCodePoint("_"); }, RangeError); 26 assertThrows(function() { String.fromCodePoint("+Infinity"); }, RangeError); 27 assertThrows(function() { String.fromCodePoint("-Infinity"); }, RangeError); 28 assertThrows(function() { String.fromCodePoint(-1); }, RangeError); 29 assertThrows(function() { String.fromCodePoint(0x10FFFF + 1); }, RangeError); 30 assertThrows(function() { String.fromCodePoint(3.14); }, RangeError); 31 assertThrows(function() { String.fromCodePoint(3e-2); }, RangeError); 32 assertThrows(function() { String.fromCodePoint(-Infinity); }, RangeError); 33 assertThrows(function() { String.fromCodePoint(+Infinity); }, RangeError); 34 assertThrows(function() { String.fromCodePoint(NaN); }, RangeError) [all...] |
| block-let-crankshaft.js | 49 function f1() { } 51 function f2(x) { } 53 function f3() { 57 function f4() { 58 function foo() { 62 function f5() { 66 function f6() { 70 function f7(x) { 74 function f8() { 79 function f9() [all...] |
| /external/chromium-trace/trace-viewer/tracing/third_party/chai/ |
| chai.js | 0 !function(){function require(e){var t=require.modules[e];if(t)return"exports"in t||"function"!=typeof t.definition||(t.client=t.component=!0,t.definition.call(this,t.exports={},t),delete t.definition),t.exports}require.loader="component",require.helper={},require.helper.semVerSort=function(e,t){for(var r=e.version.split("."),i=t.version.split("."),n=0;n<r.length;++n){var o=parseInt(r[n],10),s=parseInt(i[n],10);if(o!==s)return o>s?1:-1;var a=r[n].substr((""+o).length),c=i[n].substr((""+s).length);if(""===a&&""!==c)return 1;if(""!==a&&""===c)return-1;if(""!==a&&""!==c)return a>c?1:-1}return 0},require.latest=function(e,t){function r(e){throw new Error('failed to find latest module of "'+e+'"')}var i=/(.*)~(.*)@v?(\d+\.\d+\.\d+[^\/]*)$/,n=/(.*)~(.*)/;n.test(e)||r(e);for(var o=Object.keys(require.modules),s=[],a=[],c=0;c<o.length;c++){var u=o[c];if(new RegExp(e+"@").test(u)){var h=u.substr(e.length+1),l=i.exec(u);null!=l?s.push({version:h,name:u}):a.push({version:h,name:u})}}if(0===s.concat(a).length&&r(e),s.length>0){var f=s.sort(require.helper.semVerSort).pop().name;return t===!0?f:require(f)}var f=a.sort(function(e,t){return e.name>t.name})[0].name;return t===!0?f:require(f)},require.modules={},require.register=function(e,t){require.modules[e]={definition:t}},require.define=function(e,t){require.modules[e]={exports:t}},require.register("chaijs~assertion-error@1.0.0",function(e,t){function r(){function e(e,r){Object.keys(r).forEach(function(i){~t.indexOf(i)||(e[i]=r[i])})} (…) [all...] |
| /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
| CommonToken.as | 54 public function CommonToken(type:int, text:String = null) { 59 public static function createFromStream(input:CharStream, type:int, channel:int, start:int, stop:int):CommonToken { 68 public static function cloneToken(oldToken:Token):CommonToken { 81 public function get type():int { 85 public function set line(line:int):void { 89 public function get text():String { 105 public function set text(text:String):void { 109 public function get line():int { 113 public function get charPositionInLine():int { 117 public function set charPositionInLine(charPositionInLine:int):void [all...] |
| Parser.as | 37 public function Parser(input:TokenStream, state:RecognizerSharedState = null) { 42 public override function reset():void { 49 protected override function getCurrentInputSymbol(input:IntStream):Object { 53 protected override function getMissingSymbol(input:IntStream, 72 public function set tokenStream(input:TokenStream):void { 78 public function get tokenStream():TokenStream { 82 public override function get sourceName():String { 86 public function set treeAdaptor(adaptor:TreeAdaptor):void { 90 public function get treeAdaptor():TreeAdaptor { 95 public function traceIn(ruleName:String, ruleIndex:int):void [all...] |
| /external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/ |
| HTMLImports.min.js | 11 "undefined"==typeof WeakMap&&!function(){var e=Object.defineProperty,t=Date.now()%1e9,n=function(){this.name="__st"+(1e9*Math.random()>>>0)+(t++ +"__")};n.prototype={set:function(t,n){var r=t[this.name];return r&&r[0]===t?r[1]=n:e(t,this.name,{value:[t,n],writable:!0}),this},get:function(e){var t;return(t=e[this.name])&&t[0]===e?t[1]:void 0},"delete":function(e){var t=e[this.name];return t&&t[0]===e?(t[0]=t[1]=void 0,!0):!1},has:function(e){var t=e[this.name];return t?t[0]===e:!1}},window.WeakMap=n}(),window.HTMLImports=window.HTMLImports||{flags:{}},function(e){function t(e,t){t=t||h,r(function(){i(e,t)},t)}function n(e){return"complete"===e.readyState||e.readyState===g}function r(e,t){if(n(t))e&&e();else{var o=f (…) [all...] |