Searched refs:browser (Results 1 - 19 of 19) sorted by relevance

/external/webkit/WebKitTools/Scripts/webkitpy/
H A Dstatusserver.py45 self.browser = Browser()
58 self.browser["bug_id"] = str(patch.bug_id())
60 self.browser["patch_id"] = str(patch.id())
65 self.browser.add_file(results_file, "text/plain", "results.txt", 'results_file')
73 self.browser.open(update_status_url)
74 self.browser.select_form(name="update_status")
75 self.browser['queue_name'] = queue_name
77 self.browser['status'] = status
79 return self.browser.submit().read() # This is the id of the newly created status object.
H A Dbugzilla.py199 return self._bugzilla.browser.open(full_url)
265 return "http://trac.webkit.org/browser/trunk/%s" % local_path
344 self.browser = Browser()
347 self.browser.set_handle_robots(False)
418 return self.browser.open(bug_url)
443 page = self.browser.open(attachment_url)
478 self.browser.open(self.bug_server_url +
480 self.browser.select_form(name="login")
481 self.browser['Bugzilla_login'] = username
482 self.browser['Bugzilla_passwor
[all...]
H A Dbugzilla_unittest.py55 expected_messsage="""foo@foo.com does not have review permissions according to http://trac.webkit.org/browser/trunk/WebKitTools/Scripts/webkitpy/committers.py.
239 bugzilla.browser = MockBrowser()
/external/webkit/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/
H A DPluginObject.cpp41 if (!browser->getproperty(instance, windowObject, browser->getstringidentifier("console"), &consoleVariant)) {
52 if (!browser->invoke(instance, consoleObject, browser->getstringidentifier("log"), &messageVariant, 1, &result)) {
54 browser->releaseobject(consoleObject);
58 browser->releasevariantvalue(&result);
59 browser->releaseobject(consoleObject);
85 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
92 browser->releaseobject(windowObject);
105 NPNetscapeFuncs* browser; variable
[all...]
H A DTestObject.cpp86 browser->getstringidentifiers(testIdentifierNames, NUM_TEST_IDENTIFIERS, testIdentifiers);
87 browser->getstringidentifiers(testMethodIdentifierNames, NUM_METHOD_IDENTIFIERS, testMethodIdentifiers);
119 browser->setexception(header, "test object throwException SUCCESS");
152 *value = (NPIdentifier*)browser->memalloc(NUM_ENUMERATABLE_TEST_IDENTIFIERS * sizeof(NPIdentifier));
160 browser->retainobject(npobj);
H A Dmain.cpp38 browser = browserFuncs;
75 if (browser->getvalue(instance, NPNVsupportsCoreGraphicsBool, &supportsCoreGraphics) != NPERR_NO_ERROR)
81 browser->setvalue(instance, NPPVpluginDrawingModel, (void *)NPDrawingModelCoreGraphics);
83 PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass());
122 // A browser that doesn't know about NPNVsupportsCarbonBool is one that only supports Carbon event model.
123 if (browser->getvalue(instance, NPNVsupportsCarbonBool, &supportsCarbon) != NPERR_NO_ERROR)
127 if (browser->getvalue(instance, NPNVsupportsCocoaBool, &supportsCocoa) != NPERR_NO_ERROR)
140 browser->getvalue(instance, NPNVprivateModeBool, (void *)&obj->cachedPrivateBrowsingMode);
141 browser->setvalue(instance, NPPVpluginEventModel, (void *)obj->eventModel);
167 browser
[all...]
H A DPluginObject.h28 extern NPNetscapeFuncs *browser;
/external/webkit/WebCore/manual-tests/NPN_Invoke/
H A Dmain.c38 NPNetscapeFuncs *browser; variable
72 browser = browserFuncs;
105 browser = malloc(sizeof(NPNetscapeFuncs));
106 bzero(browser, sizeof(NPNetscapeFuncs));
108 browser->size = browserFuncs->size;
109 browser->version = browserFuncs->version;
111 // Since this is a mach-o plug-in and the browser is CFM because it is calling main, translate
112 // our function points into TVectors so the browser can call them.
113 browser->geturl = (NPN_GetURLProcPtr)functionPointerForTVector((TransitionVector)browserFuncs->geturl);
114 browser
[all...]
/external/webkit/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/
H A DTestNetscapePlugin.cpp59 if (browser->version >= 14) {
60 PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass());
117 browser->releaseobject(&obj->header);
147 browser->getvalue(obj->npp, NPNVWindowNPObject, &windowScriptObject);
154 browser->evaluate(obj->npp, windowScriptObject, &npScript, &browserResult);
155 browser->releasevariantvalue(&browserResult);
172 if (browser->version >= NPVERS_HAS_RESPONSE_HEADERS)
276 browser->retainobject((NPObject *)obj);
308 browser = aMozillaVTable;
/external/webkit/WebKitTools/DumpRenderTree/win/TestNetscapePlugin/
H A Dmain.cpp41 browser = browserFuncs;
77 browser->getvalue(object->npp, NPNVWindowNPObject, &windowScriptObject);
84 browser->evaluate(object->npp, windowScriptObject, &npScript, &browserResult);
85 browser->releasevariantvalue(&browserResult);
90 if (browser->version >= 14) {
91 PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass());
139 browser->releaseobject(&obj->header);
232 browser->retainobject((NPObject *)obj);
/external/webkit/WebKitExamplePlugins/NetscapeCocoaPlugin/
H A Dmain.m43 static NPNetscapeFuncs* browser;
82 browser = browserFuncs;
121 // Ask the browser if it supports the CoreGraphics drawing model
123 if (browser->getvalue(instance, NPNVsupportsCoreGraphicsBool, &supportsCoreGraphics) != NPERR_NO_ERROR)
129 // If the browser supports the CoreGraphics drawing model, enable it.
130 browser->setvalue(instance, NPPVpluginDrawingModel, (void *)NPDrawingModelCoreGraphics);
132 // If the browser supports the Cocoa event model, enable it.
134 if (browser->getvalue(instance, NPNVsupportsCocoaBool, &supportsCocoa) != NPERR_NO_ERROR)
140 browser->setvalue(instance, NPPVpluginEventModel, (void *)NPEventModelCocoa);
260 browser
[all...]
/external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationPlugin/
H A Dmain.m43 static NPNetscapeFuncs* browser;
79 browser = browserFuncs;
118 // Ask the browser if it supports the Core Animation drawing model
120 if (browser->getvalue(instance, NPNVsupportsCoreAnimationBool, &supportsCoreAnimation) != NPERR_NO_ERROR)
126 // If the browser supports the Core Animation drawing model, enable it.
127 browser->setvalue(instance, NPPVpluginDrawingModel, (void *)NPDrawingModelCoreAnimation);
129 // If the browser supports the Cocoa event model, enable it.
131 if (browser->getvalue(instance, NPNVsupportsCocoaBool, &supportsCocoa) != NPERR_NO_ERROR)
137 browser->setvalue(instance, NPPVpluginEventModel, (void *)NPEventModelCocoa);
/external/webkit/WebKitExamplePlugins/NetscapeInputMethodPlugin/
H A Dmain.m41 static NPNetscapeFuncs* browser;
85 browser = browserFuncs;
123 // Ask the browser if it supports the CoreGraphics drawing model
125 if (browser->getvalue(instance, NPNVsupportsCoreGraphicsBool, &supportsCoreGraphics) != NPERR_NO_ERROR)
131 // If the browser supports the CoreGraphics drawing model, enable it.
132 browser->setvalue(instance, NPPVpluginDrawingModel, (void*)NPDrawingModelCoreGraphics);
134 // If the browser supports the Cocoa event model, enable it.
136 if (browser->getvalue(instance, NPNVsupportsCocoaBool, &supportsCocoa) != NPERR_NO_ERROR)
142 browser->setvalue(instance, NPPVpluginEventModel, (void*)NPEventModelCocoa);
278 browser
[all...]
/external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/
H A Dmain.m56 static NPNetscapeFuncs* browser;
98 browser = browserFuncs;
137 // Ask the browser if it supports the Core Animation drawing model
139 if (browser->getvalue(instance, NPNVsupportsCoreAnimationBool, &supportsCoreAnimation) != NPERR_NO_ERROR)
145 // If the browser supports the Core Animation drawing model, enable it.
146 browser->setvalue(instance, NPPVpluginDrawingModel, (void *)NPDrawingModelCoreAnimation);
148 // If the browser supports the Cocoa event model, enable it.
150 if (browser->getvalue(instance, NPNVsupportsCocoaBool, &supportsCocoa) != NPERR_NO_ERROR)
156 browser->setvalue(instance, NPPVpluginEventModel, (void *)NPEventModelCocoa);
/external/freetype/
H A DAndroid.mk12 # when loading complex pages in the browser
/external/libvpx/examples/includes/geshi/contrib/
H A Dexample.php5 * Just point your browser at this script (with geshi.php in the parent directory,
H A Dlangcheck.php5 * Just point your browser at this script (with geshi.php in the parent directory,
/external/webkit/SunSpider/tests/parse-only/
H A Djquery-1.3.2.js1162 // Use of jQuery.browser is deprecated.
1168 // Figure out what browser is being used
1169 jQuery.browser = {
2069 // Perform a simple check to determine if the browser is capable of
2130 // Check to see if the browser returns elements by name when
2162 // Check to see if the browser returns only elements
H A Dconcat-jquery-mootools-prototype.js1162 // Use of jQuery.browser is deprecated.
1168 // Figure out what browser is being used
1169 jQuery.browser = {
2069 // Perform a simple check to determine if the browser is capable of
2130 // Check to see if the browser returns elements by name when
2162 // Check to see if the browser returns only elements
5671 One of the most important items in MooTools. Contains the dollar function, the dollars function, and an handful of cross-browser,
6648 - Element positioning based on the [qooxdoo](http://qooxdoo.org/) code and smart browser fixes, [LGPL License](http://www.gnu.org/licenses/lgpl.html).
7338 Class for creating, loading, and saving browser Cookies.
9303 // use native browser J
[all...]

Completed in 1604 milliseconds