HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 1 - 25 of 6305) 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/chromium_org/third_party/WebKit/Source/devtools/front_end/
externs.js 35 * @param {!Function} callback
37 Object.observe = function(object, callback) {}
49 * @param {!Function} listener
52 function addEventListener(eventName, listener, capturing) {}
60 Array.prototype.remove = function(value, onlyFirst) {}
66 Array.prototype.pushAll = function(array) {}
72 Array.prototype.keySet = function() {}
79 Array.prototype.rotate = function(index) {}
83 Array.prototype.sortNumbers = function() {}
86 * @param {function(!T,!S):number=} comparato
    [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/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-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/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
util.js 12 function $(id) {
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadFunctionInvocation.h 37 ThreadFunctionInvocation(ThreadFunction function, void* data)
38 : function(function)
43 ThreadFunction function; member in struct:WTF::ThreadFunctionInvocation
  /external/clang/test/Modules/Inputs/
redecl-add-after-load-top.h 4 static constexpr int function();
  /external/chromium-libpac/test/js-unittest/
return_empty_string.js 0 function FindProxyForURL(url, host) {
return_integer.js 0 function FindProxyForURL(url, host) {
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
return_empty_string.js 0 function FindProxyForURL(url, host) {

Completed in 499 milliseconds

1 2 3 4 5 6 7 8 91011>>