Searched refs:browser (Results 1 - 5 of 5) sorted by path

/frameworks/base/docs/html/resources/
H A Dresources-data.js342 en: 'WebViews allow an application to dynamically display HTML and execute JavaScript, without relinquishing control to a separate browser application. This article introduces the WebView classes and provides a sample application that demonstrates its use.'
362 en: 'This article illustrates how an application, in this case the WikiNotes sample app, can use intents to route various types of linked text to the application that handles that type of data. For example, an app can use intents to route a linked telephone number to a dialer app and a web URL to a browser.'
/frameworks/base/tests/BrowserTestPlugin/jni/
H A DPluginObject.cpp117 browser->getstringidentifiers(pluginPropertyIdentifierNames, NUM_PROPERTY_IDENTIFIERS, pluginPropertyIdentifiers);
118 browser->getstringidentifiers(pluginMethodIdentifierNames, NUM_METHOD_IDENTIFIERS, pluginMethodIdentifiers);
H A Dmain.cpp34 NPNetscapeFuncs* browser; variable
81 browser = (NPNetscapeFuncs*) malloc(sizeof(NPNetscapeFuncs));
82 memcpy(browser, browserFuncs, sizeof(NPNetscapeFuncs));
113 NPError err = browser->getvalue(NULL, gPairs[i].v, gPairs[i].i);
142 if (browser->version >= 14) {
143 instance->pdata = browser->createobject (instance, getPluginClass());
155 NPError err = browser->setvalue(instance, kRequestDrawingModel_ANPSetValue,
173 browser->releaseobject(&obj->header);
183 // Do nothing if browser didn't support NPN_CreateObject which would have created the PluginObject.
262 browser
[all...]
H A Dmain.h31 extern NPNetscapeFuncs* browser;
/frameworks/base/tests/BrowserTestPlugin/jni/event/
H A DEventPlugin.cpp35 extern NPNetscapeFuncs* browser;
109 browser->getvalue(inst(), NPNVWindowNPObject, &windowObject);
114 // create a string (JS code) that is stored in memory allocated by the browser
120 char* beginMem = (char*)browser->memalloc(totalLength);
134 if (!browser->evaluate(inst(), windowObject, &script, &scriptVariant))
137 // free the memory allocated within the browser
138 browser->memfree(beginMem);

Completed in 86 milliseconds