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

1 2 3 4 5 6 7 891011>>

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
ANTLRStringStream.js 8 org.antlr.runtime.ANTLRStringStream = function(data) {
81 reset: function() {
91 consume: function() {
111 LA: function(i) {
130 index: function() {
138 size: function() {
155 mark: function() {
188 rewind: function(m) {
212 release: function(marker) {
247 seek: function(index)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleNodeStream.js 4 org.antlr.runtime.tree.RewriteRuleNodeStream = function(adaptor, elementDescription, el) {
11 nextNode: function() {
15 toTree: function(el) {
19 dup: function() {
  /external/chromium_org/chrome/browser/extensions/api/tabs/
windows_util.h 18 bool GetWindowFromWindowID(ChromeUIThreadExtensionFunction* function,
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ObjectConstructor.cpp 37 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Isolate* isolate, v8::Handle<v8::Function> function)
39 if (function.IsEmpty())
42 return V8ScriptRunner::instantiateObject(isolate, function);
45 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Isolate* isolate, v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[])
47 if (function.IsEmpty())
50 return V8ScriptRunner::instantiateObject(isolate, function, argc, argv);
53 v8::Local<v8::Object> V8ObjectConstructor::newInstanceInDocument(v8::Isolate* isolate, v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[], Document* document
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
UIString.js 37 WebInspector.UIString = function(string, vararg)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
InspectElementModeController.js 32 WebInspector.InspectElementModeController = function()
41 WebInspector.InspectElementModeController.createShortcut = function()
50 enabled: function()
55 disable: function()
61 toggleSearch: function()
76 WebInspector.InspectElementModeController.ToggleSearchActionDelegate = function()
84 handleAction: function()
97 WebInspector.InspectElementModeController.ToggleButtonProvider = function()
105 button: function()
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
CPUProfilerModel.js 35 WebInspector.CPUProfilerModel = function(target)
55 setDelegate: function(delegate)
66 consoleProfileFinished: function(id, scriptLocation, cpuProfile, title)
78 consoleProfileStarted: function(id, scriptLocation, title)
88 setRecording: function(isRecording)
99 isRecordingProfile: function()
108 WebInspector.CPUProfilerModel.Delegate = function() {};
116 consoleProfileStarted: function(protocolId, scriptLocation, title) {},
124 consoleProfileFinished: function(protocolId, scriptLocation, cpuProfile, title) {}
TempFile.js 37 * @param {!function(?WebInspector.TempFile)} callback
39 WebInspector.TempFile = function(dirPath, name, callback)
48 function didInitFs(fs)
57 function didGetDir(dir)
66 function didCreateFile(fileEntry)
76 function didCreateWriter(writer)
81 function didTruncate(e)
89 function onTruncateError(e)
105 function errorHandler(e)
114 function didClearTempStorage(
    [all...]
WorkspaceController.js 34 WebInspector.WorkspaceController = function(workspace)
45 _inspectedURLChanged: function(event)
53 _windowFocused: function(event)
62 function refreshFileSystems()
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
ResourceView.js 34 WebInspector.ResourceView = function(resource)
47 hasContent: function()
59 WebInspector.ResourceView.hasTextContent = function(resource)
72 WebInspector.ResourceView.nonSourceViewForResource = function(resource)
89 WebInspector.ResourceSourceFrame = function(resource)
101 populateTextAreaContextMenu: function(contextMenu, lineNumber)
114 WebInspector.ResourceSourceFrameFallback = function(resource)
123 wasShown: function()
134 _contentLoaded: function(content)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
SidebarPane.js 33 WebInspector.SidebarPane = function(title)
57 title: function()
63 * @param {function()} callback
65 prepareContent: function(callback)
71 expand: function()
76 onContentReady: function()
85 * @param {function()} callback
87 setExpandCallback: function(callback)
96 wasShown: function()
110 WebInspector.SidebarPaneTitle = function(container, pane
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
ShaderExecutable9.cpp 18 ShaderExecutable9::ShaderExecutable9(const void *function, size_t length, IDirect3DPixelShader9 *executable)
19 : ShaderExecutable(function, length)
25 ShaderExecutable9::ShaderExecutable9(const void *function, size_t length, IDirect3DVertexShader9 *executable)
26 : ShaderExecutable(function, length)
  /external/chromium_org/third_party/sinonjs/src/
sinon-qunit.js 35 sinon.assert.fail = function (msg) {
39 sinon.assert.pass = function (assertion) {
51 (function (global) {
54 QUnit.test = global.test = function (testName, expected, callback, async) {
  /external/chromium_org/third_party/webrtc/tools/loopback_test/
stat_tracker.js 25 function StatTracker(pc, pollInterval) {
38 this.dataTable = function() { return dataTable; }
43 this.recordStat = function (varName, recordName, statName) {
45 samplingFunctions[varName] = function (report, rowIndex) {
54 this.stop = function() {
62 function poll() {
63 pc.getStats(function (report) {
81 function mergeDataTable(dataTable1, dataTable2) {
82 function allColumns(cols) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elftypesize.asm 8 type a function
16 type c function
  /external/chromium_org/v8/test/mjsunit/regress/
polymorphic-accessor-test-context.js 7 function t1() { return this instanceof t1; }
8 function t2() { return this instanceof t2; }
10 var o1 = new (function() { })();
11 Object.defineProperty(o1, "t", {get:function() { return this instanceof o1.constructor; }});
12 var o2 = new (function() { })();
13 Object.defineProperty(o2, "t", {get:function() { return this instanceof o1.constructor; }});
14 var o3 = new (function() { })();
17 function f(o) {
regress-3138.js 5 (function f(){
6 assertEquals("function", typeof f);
9 (function f(){
10 var f; // Variable shadows function name.
14 (function f(){
17 with ({}); // Force context allocation of both variable and function name.
23 (function() {
33 (function() {
  /external/chromium_org/v8/test/webkit/
delete-getters-setters.js 29 this.__defineSetter__("a1", function() {});
30 this.__defineSetter__("b1", function() {});
35 this.__defineSetter__("a2", function() {});
36 this.__defineSetter__("b2", function() {});
41 this.__defineGetter__("a3", function() {});
42 this.__defineGetter__("b3", function() {});
47 this.__defineGetter__("a4", function() {});
48 this.__defineGetter__("b4", function() {});
53 this.__defineSetter__("a5", function() {});
54 this.__defineGetter__("b5", function() {});
    [all...]
  /external/cmockery/cmockery_0_1_2/src/google/
cmockery.h 35 // Retrieves a return value for the current function.
38 /* Stores a value to be returned by the specified function later.
42 #define will_return(function, value) \
43 _will_return(#function, __FILE__, __LINE__, (void*)value, 1)
44 #define will_return_count(function, value, count) \
45 _will_return(#function, __FILE__, __LINE__, (void*)value, count)
47 /* Add a custom parameter checking function. If the event parameter is NULL
48 * the event structure is allocated internally by this function. If event
52 #define expect_check(function, parameter, check_function, check_data) \
53 _expect_check(#function, #parameter, __FILE__, __LINE__, check_function,
299 UnitTestFunction function; member in struct:UnitTest
    [all...]
  /external/compiler-rt/lib/builtins/
int_util.h 13 * library. The function definitions themselves are all contained in int_util.c
27 const char *function) __attribute__((noreturn));
  /external/compiler-rt/test/asan/TestCases/
deep_thread_stack.cc 29 void *RunnerThread(void *function) {
31 pthread_create(&thread, NULL, (callback_type)function, NULL);
36 void RunThread(callback_type function) {
38 pthread_create(&runner, NULL, RunnerThread, (void*)function);
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.cap/
operator_bool.pass.cpp 12 // class function<R(ArgTypes...)>
24 std::function<int(int)> f;
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc.pass.cpp 12 // class function<R(ArgTypes...)>
14 // template<class A> function(allocator_arg_t, const A&);
23 std::function<int(int)> f(std::allocator_arg, test_allocator<int>());
alloc_nullptr.pass.cpp 12 // class function<R(ArgTypes...)>
14 // template<class A> function(allocator_arg_t, const A&, nullptr_t);
23 std::function<int(int)> f(std::allocator_arg, test_allocator<int>(), nullptr);
  /external/llvm/test/MC/ELF/ARM/
gnu-type-hash.s 6 // CHECK: .type TYPE,%function
8 .type type #function
9 // CHECK: .type type,%function
12 // CHECK: .type comma_TYPE,%function
14 .type comma_type, #function
15 // CHECK: .type comma_type,%function

Completed in 547 milliseconds

1 2 3 4 5 6 7 891011>>