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

<<41424344454647484950>>

  /external/v8/test/webkit/
preventExtensions.js 28 function obj()
31 return Object.defineProperty({ a: 1, b: 2 }, 'g', { get: function() { return "getter"; } });
34 function test(obj)
52 function seal(obj)
58 function freeze(obj)
64 function preventExtensions(obj)
70 function inextensible(){}
71 function sealed(){}
72 function frozen(){};
92 // check that we can preventExtensions on a host function
    [all...]
  /frameworks/base/docs/html/
jd_tag_helpers.js 0 function mergeArrays() {
27 function mergeMaps() {
35 allRes[tag] = allRes[tag].concat(r.map[tag].map(function(i){ return ALL_RESOURCES[i + offset]; }));
43 function setFromArray(arr) {
52 function buildResourceLookupMap(resourceDict) {
  /ndk/sources/cxx-stl/stlport/stlport/
functional 119 # include <boost/function.hpp>
124 class function;
126 void swap(function<Signature, Allocator>& f1, function<Signature, Allocator>& f2);
135 using ::boost::function;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
functional 119 # include <boost/function.hpp>
124 class function;
126 void swap(function<Signature, Allocator>& f1, function<Signature, Allocator>& f2);
135 using ::boost::function;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
functional 119 # include <boost/function.hpp>
124 class function;
126 void swap(function<Signature, Allocator>& f1, function<Signature, Allocator>& f2);
135 using ::boost::function;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
functional 119 # include <boost/function.hpp>
124 class function;
126 void swap(function<Signature, Allocator>& f1, function<Signature, Allocator>& f2);
135 using ::boost::function;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
functional 119 # include <boost/function.hpp>
124 class function;
126 void swap(function<Signature, Allocator>& f1, function<Signature, Allocator>& f2);
135 using ::boost::function;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
functional 119 # include <boost/function.hpp>
124 class function;
126 void swap(function<Signature, Allocator>& f1, function<Signature, Allocator>& f2);
135 using ::boost::function;
  /external/v8/benchmarks/
base.js 33 // A benchmark has a name (string) and a function that will be run to
38 function Benchmark(name, run, setup, tearDown) {
41 this.Setup = setup ? setup : function() { };
42 this.TearDown = tearDown ? tearDown : function() { };
49 function BenchmarkResult(benchmark, time) {
57 BenchmarkResult.prototype.valueOf = function() {
66 function BenchmarkSuite(name, reference, benchmarks) {
86 Math.random = (function() {
88 return function() {
89 // Robert Jenkins' 32 bit integer hash function
    [all...]
  /external/v8/test/cctest/compiler/
test-codegen-deopt.cc 24 #include "test/cctest/compiler/function-tester.h"
36 *v8::Handle<v8::Function>::Cast(CompileRun(source)));
44 function(NewFunction(src)),
45 info(function, scope->main_zone()),
48 info.SetOptimizing(BailoutId::None(), Handle<Code>(function->code()));
100 Handle<JSFunction> function; member in class:DeoptCodegenTester
113 "function foo() { deopt(); return 42; }; foo") {}
122 // Manually construct a schedule for the function below:
123 // function foo() {
131 NewFunction("function deopt() { %DeoptimizeFunction(foo); }; deopt")
    [all...]
  /external/skia/tools/skpdiff/
diff_viewer.js 10 directive('imgCompare', function() {
17 link: function(scope, elm, attrs, ctrl) {
26 attrs.$observe('type', function(value) {
45 image.onload = function() {
74 scope.$watch('updatedMaskSize', function(updatedSize) {
85 scope.$watch('magnifyCenter', function(magCenter) {
130 scope.renderImage = function() {
137 scope.computeMagnifierOutline = function(event) {
150 scope.MagnifyDraw = function(event, startMagnify) {
175 scope.MagnifyEnd = function(event)
    [all...]
  /external/selinux/policycoreutils/mcstrans/src/
mcstransd.c 86 send_response(int fd, uint32_t function, char *data, int32_t ret_val)
98 resp_hdr[0].iov_base = &function;
99 resp_hdr[0].iov_len = sizeof(function);
106 if (count != (sizeof(function) + sizeof(data_size) + sizeof(ret_val))) {
160 process_request(int fd, uint32_t function, char *data1, char *UNUSED(data2))
175 switch (function) {
178 ret = send_response(fd, function, NULL, result);
182 ret = send_response(fd, function, out, result);
186 ret = send_response(fd, function, out, result);
190 ret = send_response(fd, function, out, result)
215 uint32_t function; local
    [all...]
  /external/v8/test/mjsunit/
array-constructor-feedback.js 49 function getKind(obj) {
56 function isHoley(obj) {
61 function assertKind(expected, obj, name_opt) {
68 (function() {
69 function bar(t, len) {
86 // if another function is used.
87 (function() {
88 function bar0(t) {
121 (function() {
122 function bar(len)
    [all...]
array-push4.js 11 get: function() { return "get " + v; },
12 set: function(value) { v += value; }
42 function push_wrapper_1(array, value) {
array-push5.js 14 function push_wrapper_2(array, value) {
35 get: function() { return "get " + v; },
36 set: function(value) { v += value; }
array-push7.js 9 function push_wrapper(array, value) {
12 function pop_wrapper(array) {
20 function somethingChanged(changes) {
debug-return-value.js 33 function ParsedResponse(json) {
44 ParsedResponse.prototype.response = function() {
49 ParsedResponse.prototype.body = function() {
54 ParsedResponse.prototype.running = function() {
59 ParsedResponse.prototype.lookup = function(handle) {
70 // Listener which expects to do four steps to reach returning from the function.
71 function listener(event, exec_state, event_data, data) {
103 // Position at the end of the function.
107 // Just about to return from the function.
133 // Four steps from the debugger statement in this function will position us a
    [all...]
  /external/chromium-libpac/test/js-unittest/
passthrough.js 4 function FindProxyForURL(url, host) {
15 function makePseudoHost(str) {
37 function isValidPseudoHostChar(c) {
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/fixtures/
parser_test.js 10 TestUtils.generateTestsForEachTreeAdapter(module.exports, function (_test, treeAdapter) {
11 function getFullTestName(test) {
15 function getLocationFullTestName(test) {
19 function walkTree(document, handler) {
36 ], treeAdapter).forEach(function (test) {
37 _test[getFullTestName(test)] = function () {
53 TestUtils.loadSerializationTestData(path.join(__dirname, '../data/serialization')).forEach(function (test) {
57 _test[getLocationFullTestName(test)] = function () {
68 walkTree(document, function (node) {
111 exports['Regression - location info for the implicitly generated <body>, <html> and <head> (GH-44)'] = function () {
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/tools/
named_entity_trie_generator.js 7 var trie = Object.keys(entitiesData).reduce(function (trie, entity) {
17 .map(function (ch) {
20 .forEach(function (key, idx) {
  /external/libhevc/common/arm/
ihevc_mem_fns.s 24 @ * Contains function definitions for memory manipulation
79 .type ihevc_memcpy_mul_8_a9q, %function
107 .type ihevc_memcpy_a9q, %function
149 .type ihevc_memset_mul_8_a9q, %function
178 .type ihevc_memset_a9q, %function
219 .type ihevc_memset_16bit_mul_8_a9q, %function
250 .type ihevc_memset_16bit_a9q, %function
  /external/lldb/source/Core/
AddressResolverName.cpp 17 #include "lldb/Symbol/Function.h"
43 log->Warning ("function name regexp: \"%s\" did not compile.", m_func_name.AsCString());
81 // Greg says he will add function tables, maybe at the CompileUnit level to accelerate function
106 log->Warning ("Class/method function specification not supported yet.\n");
159 if (sc.function == NULL)
169 if (sc.function->GetAddressRange().GetBaseAddress() == symbol_sc.symbol->GetAddress())
185 if (sc.function)
187 func_addr = sc.function->GetAddressRange().GetBaseAddress();
188 addr_t byte_size = sc.function->GetAddressRange().GetByteSize()
    [all...]
  /external/llvm/test/MC/AArch64/
inline-asm-modifiers.s 6 .type test_inline_modifier_L,@function
39 .type test_inline_modifier_G,@function
56 .type test_inline_modifier_A,@function
80 .type test_inline_modifier_wx,@function
116 .type test_inline_modifier_bhsdq,@function
154 .type test_inline_modifier_c,@function
  /external/v8/test/mjsunit/es6/debug-promises/
reject-after-resolve.js 15 var p = new Promise(function(resolve, reject) {
21 function(value) {
26 function listener(event, exec_state, event_data, data) {
  /external/v8/test/mjsunit/es7/
object-observe-debug-event.js 17 function assertLog(msg) {
26 function listener(event, exec_state, event_data, data) {
43 Object.observe(obj, function(changes) {

Completed in 1297 milliseconds

<<41424344454647484950>>