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

<<31323334353637383940>>

  /external/v8/test/mjsunit/regress/
regress-inline-constant-load.js 10 function foo(x) {
18 function f(b) {
regress-lazy-deopt-reloc.js 35 function kaboom() {
36 var a = function () {},
37 b = function () {},
38 c, d = function () { var d = []; },
39 e = function () { var e = {}; };
40 c = function () { d(); b(); };
41 return function (x, y) {
44 return function f() { }({});
  /external/v8/test/mjsunit/
regress-3456.js 7 // Arrow function parsing (commit r22366) changed the flags stored in
13 function f() { ++(this.foo) }
  /external/v8/test/mjsunit/tools/
profile.js 32 function stackToString(stack) {
37 function assertPathExists(root, path, opt_message) {
39 assertNotNull(root.descendToChild(path, function(node, pos) {
47 function assertNoPathExists(root, path, opt_message) {
53 function countNodes(profile, traverseFunc) {
55 traverseFunc.call(profile, function () { count++; });
60 function ProfileTestDriver() {
74 ProfileTestDriver.prototype.addFunctions_ = function() {
87 ProfileTestDriver.prototype.enter = function(funcName) {
95 ProfileTestDriver.prototype.stay = function() {
    [all...]
  /external/v8/test/perf-test/Collections/
run.js 15 function PrintResult(name, result) {
20 function PrintError(name, error) {
  /external/v8/test/promises-aplus/lib/
global.js 32 (function() {
36 function PostMicrotask(fn) {
38 Object.observe(o, function() {
45 setInterval = function(fn, delay) {
48 function loop() {
62 clearTimeout = function(id) {
68 setTimeout = function(fn, delay) {
69 var id = setInterval(function() {
  /external/v8/test/webkit/
closure-inside-extra-arg-call.js 33 function f1()
40 c1 = function() { return d; }
45 function s1() {
49 function t1() {
58 function f2()
65 c2 = function() { return d; }
70 function s2() {
74 function t2() {
codegen-peephole-locals.js 28 function if_less_test()
38 function if_else_less_test()
50 function conditional_less_test()
59 function logical_and_less_test()
68 function logical_or_less_test()
78 function do_while_less_test()
91 function while_less_test()
100 function for_less_test()
number-cell-reuse.js 28 function leftConstantRightSimple(a)
35 function leftConstantRightComplex(a)
42 function leftSimpleRightConstant(a)
49 function leftComplexRightConstant(a)
56 function leftThisRightSimple(a)
64 function leftThisRightComplex(a)
72 function leftSimpleRightThis(a)
80 function leftComplexRightThis(a)
  /external/v8/test/webkit/fast/js/kde/
arguments-scope.js 27 function shouldBeOfType(msg, val, type) {
34 function test0() {
41 function test1() {
47 function test2(arguments) {
53 function test3() {
55 shouldBeOfType("test3", arguments, 'function');
56 function arguments() {}
59 function test4() {
  /frameworks/rs/api/
GenerateHeaderFiles.cpp 199 Function* function = spec.getFunction(); local
200 writeVersionGuardStart(file, spec.getVersionInfo(), function->getFinalVersion());
219 function->getDeprecatedApiLevel(), function->getDeprecatedMessage());
222 // Write the function name.
279 static void writeFunctionComment(GeneratedFile* file, const Function& function) {
281 writeComment(file, function.getName(), function.getSummary(), function.getDescription()
364 Function* function = spec->getFunction(); local
    [all...]
  /hardware/ti/omap4-aah/domx/mm_osal/src/
timm_osal_trace.c 69 * 1 - function name
70 * 2 - function name, line number
143 loc->function);
148 loc->function);
160 loc->function);
165 loc->function);
  /libcore/luni/src/test/java/libcore/java/math/
CSVTest.java 15 * function,expected_output,input,extra_info
17 * for two input: function,expected_output,input1,input2,extra
66 String function = testCase[0]; local
70 if (twoInputFunctions.contains(function)) {
75 run2InputTest(function, expectedOutput, input, input2, extra);
80 runTest(function, expectedOutput, input, extra);
  /packages/apps/Camera2/src/com/android/camera/async/
Observables.java 20 import com.google.common.base.Function;
47 * Transforms an observable with a function.
52 final Function<F, T> function) {
57 return function.apply(input.get());
78 * Transforms a set of observables with a function.
83 Function<List<F>, T> function) {
84 return ObservableCombiner.transform(input, function);
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/command_executors/
help_executor.cpp 36 const std::vector<std::function<void(void)>> printUsageMethods = {DiffExecutor::printUsage,
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
command_utils.h 43 static std::function<int(int, char **)> getCommandExecutor(const CommandType commandType);
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/
parse5.js 0 (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
87 function enquoteDoctypeId(id) {
95 exports.isQuirks = function (name, publicId, systemId) {
122 exports.serializeContent = function (name, publicId, systemId) {
137 },{}],2:[function(require,module,exports)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
ANTLRFileStream.js 10 org.antlr.runtime.ANTLRFileStream = function(fileName, encoding) {
35 getSourceName: function() {
46 loadFileUsingJava: function(fileName, encoding) {
  /external/bison/darwin-lib/sys/
wait.h 44 * For providing a substitute for a function that is missing on some
58 * For providing a replacement for a function that exists on all platforms,
77 * For providing a replacement for a function that exists on some platforms
110 declares a replacement function, named rpl_func, with the given prototype,
122 declares the system function, named func, with the given prototype,
153 except that the C function rpl_func may have a slightly different
171 that redirects to the system provided function func, if GNULIB_NAMESPACE
196 except that the C function func may have a slightly different declaration.
214 except that the C function is picked among a set of overloaded functions,
220 The inner cast: When the function is defined as a set of overloade
    [all...]
  /external/bison/lib/
msvc-inval.c 33 const wchar_t *function,
50 const wchar_t *function,
99 const wchar_t *function,
  /external/bison/linux-lib/sys/
wait.h 44 * For providing a substitute for a function that is missing on some
58 * For providing a replacement for a function that exists on all platforms,
77 * For providing a replacement for a function that exists on some platforms
110 declares a replacement function, named rpl_func, with the given prototype,
122 declares the system function, named func, with the given prototype,
153 except that the C function rpl_func may have a slightly different
171 that redirects to the system provided function func, if GNULIB_NAMESPACE
196 except that the C function func may have a slightly different declaration.
214 except that the C function is picked among a set of overloaded functions,
220 The inner cast: When the function is defined as a set of overloade
    [all...]
  /external/clang/test/SemaCXX/
for-range-dereference.cpp 19 int* begin(DeletedADLBegin) = delete; //expected-note {{candidate function has been explicitly deleted}} \
20 expected-note 5 {{candidate function not viable: no known conversion}}
30 Data * begin(ADLNoEnd); // expected-note 6 {{candidate function not viable: no known conversion}}
50 for (auto i : pNB) { }// expected-error{{invalid range expression of type 'NoBegin *'; no viable 'begin' function available}}
52 for (auto i : ppNB) { }// expected-error{{invalid range expression of type 'NoBegin **'; no viable 'begin' function available}}
54 for (auto i : pppppNB) { }// expected-error{{invalid range expression of type 'NoBegin *****'; no viable 'begin' function available}}
57 for (auto i : ANE) { } // expected-error{{invalid range expression of type 'ADLNoEnd'; no viable 'end' function available}}
59 for (auto i : pANE) { } // expected-error{{invalid range expression of type 'ADLNoEnd *'; no viable 'begin' function available}}
62 for (auto i : DE) { } // expected-error{{attempt to use a deleted function}} \
63 expected-note {{when looking up 'end' function for range expression of type 'DeletedEnd'}
    [all...]
  /external/guava/guava/src/com/google/common/base/
Suppliers.java 43 * Returns a new supplier which is the composition of the provided function
46 * {@code function} to that value. Note that the resulting supplier will not
47 * call {@code supplier} or invoke {@code function} until it is called.
50 Function<? super F, T> function, Supplier<F> supplier) {
51 Preconditions.checkNotNull(function);
53 return new SupplierComposition<F, T>(function, supplier);
58 final Function<? super F, T> function; field in class:Suppliers.SupplierComposition
61 SupplierComposition(Function<? super F, T> function, Supplier<F> supplier)
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
EnumsTest.java 54 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
55 assertEquals(TestEnum.CHEETO, function.apply("CHEETO"));
56 assertEquals(TestEnum.HONDA, function.apply("HONDA"));
57 assertEquals(TestEnum.POODLE, function.apply("POODLE"));
61 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
62 assertNull(function.apply("cHEETO"));
63 assertNull(function.apply("Honda"));
64 assertNull(function.apply("poodlE"))
68 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
82 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); local
    [all...]
  /external/lldb/www/cpp_reference/html/
dynsections.js 0 function toggleVisibility(linkObj)
22 function updateStripes()
27 function toggleLevel(level)
29 $('table.directory tr').each(function(){
47 function toggleFolder(id)
65 function toggleInherit(id)

Completed in 1347 milliseconds

<<31323334353637383940>>