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

12 3 4 5 6 7 8 91011>>

  /external/chromium-libpac/test/js-unittest/
direct.js 0 function FindProxyForURL(url, host) {
return_function.js 0 function FindProxyForURL(url, host) {
return_null.js 0 function FindProxyForURL(url, host) {
return_undefined.js 0 function FindProxyForURL(url, host) {
return_object.js 0 function FindProxyForURL(url, host) {
  /external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/spec/gl-matrix/
common-spec.js 5 describe("glMatrix", function(){
10 describe("toRadian", function(){
11 beforeEach(function(){ result = glMatrix.toRadian(180); });
12 it("should return a value of 3.141592654(Math.PI)", function(){ expect(result).toBeEqualish(Math.PI); });
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke_no_variadics.pass.cpp 12 // class function<R()>
15 // overloads of function::operator()(...)
29 std::function<int()> f(&foo0);
33 std::function<int(int)> f(&foo1);
37 std::function<int(int, int)> f(&foo2);
41 std::function<int(int, int, int)> f(&foo3);
45 std::function<void()> f(&foo0);
49 std::function<void(int)> f(&foo1);
53 std::function<void(int, int)> f(&foo2);
57 std::function<void(int, int, int)> f(&foo3)
    [all...]
  /external/mesa3d/src/glsl/glcpp/tests/
056-macro-argument-with-comma.c 2 #define function(x) success macro
3 #define foo function
  /bionic/libc/arch-arm64/include/machine/
asm.h 44 #define __bionic_asm_function_type %function
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenSource.as 48 function nextToken():Token;
53 function get sourceName():String;
TokenStream.as 38 function LT(k:int):Token;
47 function getToken(i:int):Token;
52 function get tokenSource():TokenSource;
59 function toStringWithRange(start:int, stop:int):String;
67 function toStringWithTokenRange(start:Token, stop:Token):String;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeNodeStream.as 38 function getNode(i:int):Object;
51 function LT(k:int):Object;
56 function get treeSource():Object;
63 function get tokenStream():TokenStream;
68 function get treeAdaptor():TreeAdaptor;
76 function set hasUniqueNavigationNodes(uniqueNavigationNodes:Boolean):void;
84 function toStringWithRange(start:Object, stop:Object):String;
98 function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void;
TreeAdaptor.as 50 function createWithPayload(payload:Token):Object;
55 function dupNode(treeNode:Object):Object;
58 function dupTree(tree:Object):Object;
64 function nil():Object;
80 function errorNode(input:TokenStream, start:Token, stop:Token, e:RecognitionException):Object;
83 function isNil(tree:Object):Boolean;
92 function addChild(t:Object, child:Object):void;
120 function becomeRoot(newRoot:Object, oldRoot:Object):Object;
135 function rulePostProcessing(root:Object):Object;
143 function getUniqueID(node:Object):int
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
ParserRuleReturnScope.js 19 org.antlr.runtime.ParserRuleReturnScope = function() {};
20 org.antlr.runtime.RuleReturnScope = function() {};
25 getStart: function() { return this.start; },
26 getStop: function() { return this.stop; }
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
Tree.js 11 org.antlr.runtime.tree.Tree = function(){};
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
default.pass.cpp 12 // class function<R(ArgTypes...)>
14 // explicit function();
21 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/
default.pass.cpp 12 // class function<R(ArgTypes...)>
14 // explicit function();
21 std::function<int(int)> f;
  /external/v8/test/mjsunit/
migrations.js 7 var global = Function('return this')();
10 function test(ctor_desc, use_desc, migr_desc) {
86 ctor: function(v) { return {a: v}; },
87 args: function(i) { return [1.5 + i]; },
91 ctor: function(v) { var o = {}; o.a = v; return o; },
92 args: function(i) { return [1.5 + i]; },
96 ctor: function(v) { return {a: v}; },
97 args: function(i) { return [i]; },
101 ctor: function(v) { var o = {}; o.a = v; return o; },
102 args: function(i) { return [i]; }
    [all...]
bounds-checks-elimination.js 10 function test(f, arg1, arg2, expected) {
17 test(function f0() {
21 test(function f1() {
25 test(function f2() {
29 test(function f3() {
33 test(function f4(b) {
37 test(function f5(b) {
41 test(function f6(b) {
47 test(function f7(b) {
53 test(function f8(b)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/
types.pass.cpp 13 // class function<R(ArgTypes...)>
30 std::function<int()> >::value), "");
32 std::function<int()> >::value), "");
33 static_assert(( std::is_same< std::function<int()>::result_type,
37 std::function<double(int)> >::value), "");
39 std::function<double(int)> >::value), "");
40 static_assert(( std::is_same< std::function<double(int)>::result_type,
44 std::function<double(int, char)> >::value), "");
46 std::function<double(int, char)> >::value), "");
47 static_assert(( std::is_same< std::function<double(int, char)>::result_type
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-function.cpp 4 // Example function implementation from the variadic templates proposal,
7 template<typename Signature> class function;
28 class function<R (Args...)> { class
31 function() : invoker (0) { } function in class:function
32 function(const function& other) : invoker(0) { function in class:function
37 template<typename F> function(const F& f) : invoker(0) { function in class:function
41 ~function() {
46 function& operator=(const function& other) {
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/common/
utils.js 3 exports.mergeOptions = function (defaults, options) {
6 return [defaults, options].reduce(function (merged, optObj) {
7 Object.keys(optObj).forEach(function (key) {
  /ndk/tests/device/test-gnustl-full/unit/
boost_check.cpp 33 #include <boost/function.hpp>
39 #include <boost/function/function_base.hpp>
45 #include <boost/function/function1.hpp>
  /ndk/tests/device/test-stlport/unit/
boost_check.cpp 33 #include <boost/function.hpp>
39 #include <boost/function/function_base.hpp>
45 #include <boost/function/function1.hpp>
  /external/llvm/test/MC/ELF/
gnu-type.s 4 // CHECK: .type TYPE,@function
7 // CHECK: .type comma_TYPE,@function
10 // CHECK: .type at_TYPE,@function
13 // CHECK: .type percent_TYPE,@function
16 // CHECK: .type string_TYPE,@function
18 .type type function
19 // CHECK: .type type,@function
21 .type comma_type, function
22 // CHECK: .type comma_type,@function
24 .type at_type, @function
    [all...]

Completed in 1172 milliseconds

12 3 4 5 6 7 8 91011>>