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

<<11121314151617181920>>

  /art/runtime/gc/allocator/
dlmalloc.cc 28 static void art_heap_corruption(const char* function);
29 static void art_heap_usage_error(const char* function, void* p);
46 static void art_heap_corruption(const char* function) {
47 LOG(::art::FATAL) << "Corrupt heap detected in: " << function;
50 static void art_heap_usage_error(const char* function, void* p) {
51 LOG(::art::FATAL) << "Incorrect use of function '" << function << "' argument " << p
  /build/tools/droiddoc/templates-ds/assets/scroller/
jquery.mousewheel.min.js 12 (function(a){function d(b){var c=b||window.event,d=[].slice.call(arguments,1),e=0,f=!0,g=0,h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(e=-c.detail/3),h=e,c.axis!==undefined&&c.axis===c.HORIZONTAL_AXIS&&(h=0,g=-1*e),c.wheelDeltaY!==undefined&&(h=c.wheelDeltaY/120),c.wheelDeltaX!==undefined&&(g=-1*c.wheelDeltaX/120),d.unshift(b,e,g,h),(a.event.dispatch||a.event.handle).apply(this,d)}var b=["DOMMouseScroll","mousewheel"];if(a.event.fixHooks)for(var c=b.length;c;)a.event.fixHooks[b[--c]]=a.event.mouseHooks;a.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=b.length;a;)this.addEventListener(b[--a],d,!1);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=b.length;a;)this.removeEventListener(b[--a],d,!1);else this.onmousewheel=null}},a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery)
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteCardinalityException.js 1 org.antlr.runtime.tree.RewriteCardinalityException = function(elementDescription) {
10 getMessage: function() {
16 name: function() {
RewriteEarlyExitException.js 2 org.antlr.runtime.tree.RewriteEarlyExitException = function(elementDescription) {
12 name: function() {
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tokenization/
location_info_mixin.js 3 exports.assign = function (tokenizer) {
10 tokenizer._attachLocationInfo = function (token) {
18 tokenizer._createStartTagToken = function (tagNameFirstCh) {
23 tokenizer._createEndTagToken = function (tagNameFirstCh) {
28 tokenizer._createCommentToken = function () {
33 tokenizer._createDoctypeToken = function (doctypeNameFirstCh) {
38 tokenizer._createCharacterToken = function (type, ch) {
44 tokenizer._emitCurrentToken = function () {
54 tokenizer._emitCurrentCharacterToken = function () {
70 .map(function (modeName)
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_F.pass.cpp 12 // class function<R(ArgTypes...)>
14 // template<class F, class A> function(allocator_arg_t, const A&, F);
60 std::function<int(int)> f(std::allocator_arg, test_allocator<A>(), A());
67 std::function<int(int)> f(std::allocator_arg, test_allocator<int(*)(int)>(), g);
72 std::function<int(int)> f(std::allocator_arg, test_allocator<int(*)(int)>(),
79 std::function<int(const A*, int)> f(std::allocator_arg,
88 std::function<void(int)> fun = std::bind(&Foo::bar, &f, std::placeholders::_1);
93 std::function<void(int)> fun(std::allocator_arg,
alloc_function.pass.cpp 12 // class function<R(ArgTypes...)>
14 // template<class A> function(allocator_arg_t, const A&, const function&);
56 std::function<int(int)> f = A();
61 std::function<int(int)> f2(std::allocator_arg, test_allocator<A>(), f);
70 std::function<int(int)> f = g;
74 std::function<int(int)> f2(std::allocator_arg, test_allocator<int(*)(int)>(), f);
82 non_default_test_allocator<std::function<int(int)> > al(1);
83 std::function<int(int)> f2(std::allocator_arg, al, g);
90 std::function<int(int)> f
    [all...]
copy_assign.pass.cpp 12 // class function<R(ArgTypes...)>
14 // function& operator=(const function& f);
54 std::function<int(int)> f = A();
59 std::function<int(int)> f2;
69 std::function<int(int)> f = g;
73 std::function<int(int)> f2;
81 std::function<int(int)> f;
85 std::function<int(int)> f2;
94 std::function<int(int)> f = A()
    [all...]
  /external/mesa3d/src/glx/apple/
apple_glx_log.c 51 void _apple_glx_log(int level, const char *file, const char *function,
55 _apple_glx_vlog(level, file, function, line, fmt, v);
73 void _apple_glx_vlog(int level, const char *file, const char *function,
97 _asl_level_string(level), file, line, function, thread);
105 if (function)
106 asl_set(msg, "Function", function);
  /external/v8/test/mjsunit/
array-push3.js 9 function push(array, value) {
21 get: function() { return 100; },
22 set: function(value) { v = value; }
array-push9.js 9 function push(array, value) {
21 get: function() { return 100; },
22 set: function(value) { v = value; }
  /external/v8/test/mjsunit/regress/
regress-3476.js 7 function MyWrapper(v) {
8 return { valueOf: function() { return v } };
11 function f() {
regress-put-prototype-transition.js 7 function deepEquals(a, b) { if (a === b) { if (a === 0) return (1 / a) === (1 / b); return true; } if (typeof a != typeof b) return false; if (typeof a == "number") return isNaN(a) && isNaN(b); if (typeof a !== "object" && typeof a !== "function") return false; var objectClass = classOf(a); if (objectClass !== classOf(b)) return false; if (objectClass === "RegExp") { return (a.toString() === b.toString()); } if (objectClass === "Function") return false; if (objectClass === "Array") { var elementCount = 0; if (a.length != b.length) { return false; } for (var i = 0; i < a.length; i++) { if (!deepEquals(a[i], b[i])) return false; } return true; } if (objectClass == "String" || objectClass == "Number" || objectClass == "Boolean" || objectClass == "Date") { if (a.valueOf() !== b.valueOf()) return false; } return deepObjectEquals(a, b); }
8 assertSame = function assertSame(expected, found, name_opt) { if (found === expected) { if (expected !== 0 || (1 / expected) == (1 / found)) return; } else if ((expected !== expected) && (found !== found)) { return; } fail(PrettyPrint(expected), found, name_opt); }; assertEquals = function assertEquals(expected, found, name_opt) { if (!deepEquals(found, expected)) { fail(PrettyPrint(expected), found, name_opt); } };
9 assertEqualsDelta = function assertEqualsDelta(expected, found, delta, name_opt) { assertTrue(Math.abs(expected - found) <= delta, name_opt); }; assertArrayEquals = function assertArrayEquals(expected, found, name_opt) { var start = ""; if (name_opt) { start = name_opt + " - "; } assertEquals(expected.length, found.length, start + "array length"); if (expected.length == found.length) { for (var i = 0; i < expected.length; ++i) { assertEquals(expected[i], found[i], start + "array element at index " + i); } } };
10 assertTrue = function assertTrue(value, name_opt) { assertEquals(true, value, name_opt); };
11 assertFalse = function assertFalse(value, name_opt) { assertEquals(false, value, name_opt); };
16 function __f_3() {
    [all...]
  /external/v8/test/webkit/fast/js/
Object-defineProperty.js 59 function createUnconfigurableProperty(o, prop, writable, enumerable) {
72 shouldThrow("Object.defineProperty({}, 'foo', {value:1, get: function(){}})");
73 shouldThrow("Object.defineProperty({}, 'foo', {value:1, set: function(){}})");
74 shouldThrow("Object.defineProperty({}, 'foo', {writable:true, get: function(){}})");
75 shouldThrow("Object.defineProperty({}, 'foo', {writable:true, set: function(){}})");
78 function getter(){ throw "called getter"; }
79 function getter1(){ throw "called getter1"; }
80 function setter(){ throw "called setter"; }
81 function setter1(){ throw "called setter1"; }
115 // Check the accessor function changed
    [all...]
  /development/ndk/platforms/android-3/include/linux/
timer.h 25 void (*function)(unsigned long); member in struct:timer_list
31 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleNodeStream.as 9 public function RewriteRuleNodeStream(adaptor:TreeAdaptor, elementDescription:String, element:Object = null) {
13 public function nextNode():Object {
17 protected override function toTree(el:Object):Object {
21 protected override function dup(el:Object):Object {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DFA.js 12 org.antlr.runtime.DFA = function() {};
20 predict: function(input) {
93 noViableAlt: function(s, input) {
108 error: function(nvae) { },
110 specialStateTransition: function(s, input) {
114 getDescription: function() {
123 unpackEncodedString: function(encodedString) {
146 unpackEncodedStringToUnsignedChars: function(encodedString) {
IndexOutOfBoundsExceptions.js 1 org.antlr.runtime.IndexOutOfBoundsException = function(m) {
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.extensions 70 PythonTokenSource = function(stream) {
89 getSourceName: function() {
115 nextToken: function() {
128 insertImaginaryIndentDedentTokens: function()
199 push: function(i) {
207 pop: function() {
216 peek: function() {
221 findPreviousIndent: function(i) {
230 stackString: function() {
  /external/chromium-libpac/test/js-unittest/
binding_from_global.js 6 function FindProxyForURL(url, host) {
side_effects.js 7 function FindProxyForURL(url, host) {
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/jsdom/
jsdom_parser.js 7 exports.parseDocument = function (html, treeAdapter) {
13 parser._runParsingLoop = function () {
27 process.nextTick(function () {
34 exports.parseInnerHtml = function (innerHtml, contextElement, treeAdapter) {
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
FunctionRegistry.java 35 protected Map<String, Function> functions = new HashMap<String, Function>();
44 Function function = functions.get(name); local
45 if (function == null) {
46 throw new JSilverInterpreterException("Function not found " + name);
48 Value result = function.execute(args);
50 throw new JSilverInterpreterException("Function " + name + " did not return value");
70 Function function = functions.get(name) local
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.targ/
target_type.pass.cpp 12 // class function<R(ArgTypes...)>
54 std::function<int(int)> f = A();
58 std::function<int(int)> f;
  /external/libvncserver/webclients/novnc/include/
vnc.js 15 function get_INCLUDE_URI() {
19 (function () {

Completed in 1950 milliseconds

<<11121314151617181920>>