HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 176 - 200 of 4292) sorted by null

1 2 3 4 5 6 78 91011>>

  /system/netd/client/
NetdClient.cpp 139 extern "C" void netdClientInitAccept4(Accept4FunctionType* function) {
140 if (function && *function) {
141 libcAccept4 = *function;
142 *function = netdClientAccept4;
146 extern "C" void netdClientInitConnect(ConnectFunctionType* function) {
147 if (function && *function) {
148 libcConnect = *function;
149 *function = netdClientConnect
    [all...]
  /external/clang/test/Modules/
redecl-add-after-load.cpp 12 extern constexpr int function();
13 constexpr int test(bool b) { return b ? variable : function(); }
18 extern constexpr int function();
21 constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
25 constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
30 static constexpr int function();
33 constexpr int D_test(bool b) { return b ? D::variable : D::function(); }
  /external/llvm/bindings/ocaml/transforms/ipo/
llvm_ipo.mli 15 (** See the [llvm::createAddArgumentPromotionPass] function. *)
20 (** See the [llvm::createConstantMergePass] function. *)
25 (** See the [llvm::createDeadArgEliminationPass] function. *)
30 (** See the [llvm::createFunctionAttrsPass] function. *)
35 (** See the [llvm::createFunctionInliningPass] function. *)
40 (** See the [llvm::createAlwaysInlinerPass] function. *)
45 (** See the [llvm::createGlobalDCEPass] function. *)
50 (** See the [llvm::createGlobalOptimizerPass] function. *)
55 (** See the [llvm::createIPConstantPropagationPass] function. *)
60 (** See the [llvm::createPruneEHPass] function. *
    [all...]
  /external/llvm/test/MC/ARM/
eh-directive-unwind_raw-diagnostics.s 6 .type require_fnstart,%function
14 .type check_arguments,%function
24 .type check_stack_offset,%function
34 .type comma_check,%function
44 .type require_opcode,%function
54 .type require_opcode_constant,%function
64 .type check_opcode_range,%function
arm-qualifier-diagnostics.s 5 .type function,%function
6 function: label
bkpt.s 7 .type thumb_default_bkpt, %function
16 .type normal_bkpt, %function
26 .type arm_default_bkpt, %function
thumb-st_other.s 1 @ Check the value of st_other for thumb function.
3 @ ARM does not define any st_other flags for thumb function. The value
14 .type main,%function
  /external/v8/test/mjsunit/harmony/
proxies-with-unscopables.js 11 function TestBasics() {
15 getPropertyDescriptor: function(key) {
39 function TestInconsistent() {
44 getPropertyDescriptor: function(key) {
69 function TestUseProxyAsUnscopables() {
76 has: function(key) {
81 getPropertyDescriptor: function(key) {
99 function TestThrowInHasUnscopables() {
105 function CustomError() {}
109 has: function(key)
    [all...]
object-literals-method.js 8 (function TestBasics() {
18 (function TestThis() {
28 (function TestDescriptor() {
39 assertEquals('function', typeof desc.value);
45 (function TestProto() {
50 assertEquals(Function.prototype, Object.getPrototypeOf(object.method));
54 (function TestNotConstructable() {
59 assertThrows(function() {
65 (function TestFunctionName() {
80 (function TestNoBinding()
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Parser.js 4 org.antlr.runtime.Parser = function(input, state) {
10 reset: function() {
18 getCurrentInputSymbol: function(input) {
22 getMissingSymbol: function(input,
48 setTokenStream: function(input) {
54 getTokenStream: function() {
58 getSourceName: function() {
62 traceIn: function(ruleName, ruleIndex) {
67 traceOut: function(ruleName, ruleIndex) {
UnwantedTokenException.js 2 org.antlr.runtime.UnwantedTokenException = function(expecting, input) {
12 getUnexpectedToken: function() {
15 toString: function() {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleElementStream.js 14 org.antlr.runtime.tree.RewriteRuleElementStream = function(adaptor, elementDescription, el) {
48 reset: function() {
53 add: function(el) {
77 nextTree: function() {
96 _next: function() {
122 toTree: function(el) {
129 hasNext: function() {
134 size: function() {
145 getDescription: function() {
  /external/v8/test/mjsunit/
readonly.js 32 function CreateFromLiteral() {
36 function CreateFromObject() {
40 function CreateDefault() {
44 function CreateFromConstructor(proto) {
45 function C() {}
48 return function() { return new C; }
51 function CreateFromApi(proto) {
52 return function() { return Object.create(proto); }
55 function CreateWithProperty(proto) {
56 function C() { this.a = -100;
    [all...]
try.js 30 function Catch(f, g) {
36 function CatchReturn(f, g) {
44 assertEquals(1, c(function() { return 1; }));
45 assertEquals('bar', c(function() { return 'bar'; }));
46 assertEquals(1, c(function () { throw 1; }, function (x) { return x; }));
47 assertEquals('bar', c(function () { throw 'bar'; }, function (x) { return x; }));
51 assertEquals(1, (function() { try { return 1; } finally { } })());
52 assertEquals(1, (function() { try { return 1; } finally { var x = 12; } })())
    [all...]
stack-traces.js 28 function testMethodNameInference() {
29 function Foo() { }
30 Foo.prototype.bar = function () { FAIL; };
34 function testNested() {
35 function one() {
36 function two() {
37 function three() {
47 function testArrayNative() {
48 [1, 2, 3].map(function () { FAIL; });
51 function testImplicitConversion()
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.as 32 public function RewriteRuleSubtreeStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
49 public function nextNode():Object {
63 protected override function dup(el:Object):Object {
  /external/libcxx/test/std/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/llvm/test/MC/ARM/Windows/
text-attributes.s 9 .def function
13 .global function
15 function: label
  /external/okhttp/website/static/
bootstrap.min.js 6 !function(e){"use strict";e(function(){e.support.transition=function(){var e=function(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},n;for(n in t)if(e.style[n]!==undefined)return t[n]}();return e&&{end:e}}()})}(window.jQuery),!function(e){"use strict";var t='[data-dismiss="alert"]',n=function(n){e(n).on("click",t,this.close)};n.prototype.close=function(t){function s(){i.trigger("closed").remove()}var n=e(this),r=n.attr("data-target"),i;r||(r=n.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,"")),i=e(r),t&&t.preventDefault(),i.length||(i=n.hasClass("alert")?n:n.parent()),i.trigger(t=e.Event("close"));if(t.isDefaultPrevented())return;i.removeClass("in"),e.support.transition&&i.hasClass("fade")?i.on(e.support.transition.end,s):s()};var r=e.fn.alert;e.fn.alert=function(t){return this.each(function(){var r=e(this),i=r.data("alert");i||r.data("alert",i=new n(this)),typeof t=="string"&&i[t].call(r (…)
    [all...]
  /external/skia/experimental/SkV8Example/js/
sample.js 4 var onDraw = function(){
10 function f(context) {
20 function onTimeout() {
  /external/skia/tools/lua/
count_effects.lua 0 function tostr(t)
21 function sk_scrape_startcanvas(c, fileName) end
23 function sk_scrape_endcanvas(c, fileName) end
27 function count_fields(t)
35 function sk_scrape_accumulate(t)
42 function sk_scrape_summarize()
  /external/v8/src/
runtime-profiler.cc 25 // Number of times a function has to be seen on the stack before it is
28 // If the function optimization was disabled due to high deoptimization count,
29 // but the function is hot and has been seen on the stack this number of times,
30 // then we try to reenable optimization for this function.
32 // If a function does not have enough type info (according to
41 // Maximum size in bytes of generate code for a function to allow OSR.
48 // Maximum size in bytes of generated code for a function to be optimized
83 void RuntimeProfiler::Optimize(JSFunction* function, const char* reason) {
84 DCHECK(function->IsOptimizable());
86 if (FLAG_trace_opt && function->PassesFilter(FLAG_hydrogen_filter))
171 JSFunction* function = frame->function(); local
    [all...]
  /external/v8/test/mjsunit/compiler/
escape-analysis.js 32 (function testJoin() {
33 function constructor() {
36 function join(mode, expected) {
53 (function testLoop() {
54 function constructor() {
58 function loop() {
75 (function testNested() {
76 function constructor() {
81 function nested() {
109 (function testDeoptLocal()
    [all...]
  /external/v8/test/mjsunit/regress/
regress-3462.js 6 function TestFunctionPrototypeSetter() {
7 var f = function() {};
16 function TestFunctionPrototypeSetterOnValue() {
17 var f = function() {};
30 function TestArrayLengthSetter() {
41 function TestArrayLengthSetterOnValue() {
regress-359491.js 7 (function () {
8 function f(a, b, mode) {
22 function g(mode) {
35 (function () {
36 function f(a, b, mode) {
50 function g(mode) {

Completed in 1934 milliseconds

1 2 3 4 5 6 78 91011>>