HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 1 - 25 of 6113) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
windows-itanium.c 7 int function() { function
11 // CHECK-C: define i32 @function() {{.*}} {
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/ubench/
function-closure.js 0 function f()
3 function g() { }
function-empty.js 0 function f()
function-sum.js 0 function f(x, y, z)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
TextEditor.js 35 WebInspector.TextEditor = function() { };
46 undo: function() { },
48 redo: function() { },
53 isClean: function() { },
55 markClean: function() { },
60 indent: function() { },
67 cursorPositionToCoordinates: function(lineNumber, column) { return null; },
74 coordinatesToCursorPosition: function(x, y) { return null; },
81 tokenAtTextPosition: function(lineNumber, column) { return null; },
86 setMimeType: function(mimeType) { }
    [all...]
  /external/qemu/android/utils/
eintr_wrapper.c 19 const char* function,
25 function ? function : "",
26 function ? ":" : "",
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/resources/
loop-statements.js 4 function initialize()
9 function condition()
14 function increment()
19 function statement()
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
IntStream.as 33 function consume():void;
40 function LA(i:int):int;
49 function mark():int;
55 function get index():int;
65 function rewindTo(marker:int):void;
76 function rewind():void;
86 function release(marker:int):void;
108 function seek(index:int):void;
114 function get size():int;
120 function get sourceName():String
    [all...]
Token.as 32 function get text():String;
33 function set text(text:String):void;
35 function get type():int;
36 function set type(ttype:int):void;
39 function get line():int;
40 function set line(line:int):void;
43 function get charPositionInLine():int;
44 function set charPositionInLine(pos:int):void;
46 function get channel():int;
47 function set channel(channel:int):void
    [all...]
CharStream.as 36 function substring(start:int, stop:int):String;
43 function LT(i:int):int;
46 function get line():int;
49 function set line(line:int):void;
51 function set charPositionInLine(pos:int):void;
54 function get charPositionInLine():int;
  /frameworks/wilhelm/src/
trace.c 33 void slTraceEnterGlobal(const char *function)
36 SL_LOGD("Entering %s", function);
41 void slTraceLeaveGlobal(const char *function, SLresult result)
45 SL_LOGD("Leaving %s", function);
51 SL_LOGW("Leaving %s (%s)", function, str);
53 SL_LOGW("Leaving %s (0x%X)", function, result);
60 void slTraceEnterInterface(const char *function)
65 if (*function == 'I') {
66 ++function;
68 const char *underscore = function;
    [all...]
  /external/qemu/include/qemu/
module.h 18 #define module_init(function, type) \
19 static void __attribute__((constructor)) do_qemu_init_ ## function(void) { \
20 register_module_init(function, type); \
32 #define block_init(function) module_init(function, MODULE_INIT_BLOCK)
33 #define device_init(function) module_init(function, MODULE_INIT_DEVICE) // TODO(digit): Remove this.
34 #define machine_init(function) module_init(function, MODULE_INIT_MACHINE)
35 #define qapi_init(function) module_init(function, MODULE_INIT_QAPI
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
MainThread.cpp 43 void initializeMainThread(void (*function)(MainThreadFunction, void*))
49 callOnMainThreadFunction = function;
54 void callOnMainThread(MainThreadFunction* function, void* context)
56 (*callOnMainThreadFunction)(function, context);
61 Function<void()>* function = static_cast<Function<void()>*>(context); local
62 (*function)();
63 delete function;
66 void callOnMainThread(const Function<void()>& function
    [all...]
ThreadFunctionInvocation.h 37 ThreadFunctionInvocation(ThreadFunction function, void* data)
38 : function(function)
43 ThreadFunction function; member in struct:WTF::ThreadFunctionInvocation
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
101-macros-used-twice.c 2 #define function(x) 1 macro
11 #if function(0)
14 #if function(0)
  /external/clang/test/Misc/
ast-dump-stmt.cpp 4 void function() {} function in namespace:n
7 using n::function;
10 void (*f)() = &function;
11 // CHECK: DeclRefExpr{{.*}} (UsingShadow{{.*}}function
  /external/mesa3d/src/glsl/glcpp/tests/
101-macros-used-twice.c 2 #define function(x) 1 macro
11 #if function(0)
14 #if function(0)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
externs.js 43 function postMessage(message) {}
47 * @param {!Function} listener
50 function addEventListener(eventName, listener, capturing) {}
58 Array.prototype.remove = function(value, onlyFirst) {}
64 Array.prototype.pushAll = function(array) {}
70 Array.prototype.keySet = function() {}
77 Array.prototype.rotate = function(index) {}
81 Array.prototype.sortNumbers = function() {}
84 * @param {function(!T,!S):number=} comparator
89 Array.prototype.lowerBound = function(object, comparator) {
    [all...]
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/gl-matrix/
mat2-spec.js 23 describe("mat2", function() {
26 beforeEach(function() {
40 describe("create", function() {
41 beforeEach(function() { result = mat2.create(); });
42 it("should return a 4 element array initialized to a 2x2 identity matrix", function() { expect(result).toBeEqualish(identity); });
45 describe("clone", function() {
46 beforeEach(function() { result = mat2.clone(matA); });
47 it("should return a 4 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); });
50 describe("copy", function() {
51 beforeEach(function() { result = mat2.copy(out, matA); })
    [all...]
quat-spec.js 23 describe("quat", function() {
26 beforeEach(function() { quatA = [1, 2, 3, 4]; quatB = [5, 6, 7, 8]; out = [0, 0, 0, 0]; });
28 describe("create", function() {
29 beforeEach(function() { result = quat.create(); });
30 it("should return a 4 element array initialized to an identity quaternion", function() { expect(result).toBeEqualish([0, 0, 0, 1]); });
33 describe("clone", function() {
34 beforeEach(function() { result = quat.clone(quatA); });
35 it("should return a 4 element array initialized to the values in quatA", function() { expect(result).toBeEqualish(quatA); });
38 describe("fromValues", function() {
39 beforeEach(function() { result = quat.fromValues(1, 2, 3, 4); })
    [all...]
vec2-spec.js 23 describe("vec2", function() {
26 beforeEach(function() { vecA = [1, 2]; vecB = [3, 4]; out = [0, 0]; });
28 describe("create", function() {
29 beforeEach(function() { result = vec2.create(); });
30 it("should return a 2 element array initialized to 0s", function() { expect(result).toBeEqualish([0, 0]); });
33 describe("clone", function() {
34 beforeEach(function() { result = vec2.clone(vecA); });
35 it("should return a 2 element array initialized to the values in vecA", function() { expect(result).toBeEqualish(vecA); });
38 describe("fromValues", function() {
39 beforeEach(function() { result = vec2.fromValues(1, 2); })
    [all...]
  /external/chromium_org/ui/gfx/geometry/
cubic_bezier_unittest.cc 14 CubicBezier function(0.25, 0.0, 0.75, 1.0);
18 EXPECT_NEAR(function.Solve(0), 0, epsilon);
19 EXPECT_NEAR(function.Solve(0.05), 0.01136, epsilon);
20 EXPECT_NEAR(function.Solve(0.1), 0.03978, epsilon);
21 EXPECT_NEAR(function.Solve(0.15), 0.079780, epsilon);
22 EXPECT_NEAR(function.Solve(0.2), 0.12803, epsilon);
23 EXPECT_NEAR(function.Solve(0.25), 0.18235, epsilon);
24 EXPECT_NEAR(function.Solve(0.3), 0.24115, epsilon);
25 EXPECT_NEAR(function.Solve(0.35), 0.30323, epsilon);
26 EXPECT_NEAR(function.Solve(0.4), 0.36761, epsilon)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
util.js 12 function $(id) {
  /external/chromium_org/remoting/webapp/
browser_globals.gtestjs 12 var XMLHttpRequest = function() {};
15 addEventListener: function() {},
  /external/clang/test/Modules/Inputs/
redecl-add-after-load-top.h 4 static constexpr int function();

Completed in 971 milliseconds

1 2 3 4 5 6 7 8 91011>>