HomeSort by relevance Sort by last modified time
    Searched refs:sourceId (Results 1 - 21 of 21) sorted by null

  /frameworks/base/core/java/android/webkit/
ConsoleMessage.java 42 public ConsoleMessage(String message, String sourceId, int lineNumber, MessageLevel msgLevel) {
44 mSourceId = sourceId;
57 public String sourceId() {
WebChromeClient.java 264 * @param sourceID The name of the source file that caused the error.
269 public void onConsoleMessage(String message, int lineNumber, String sourceID) { }
280 consoleMessage.sourceId());
  /external/webkit/WebKit/mac/WebView/
WebScriptDebugDelegate.h 65 sourceId:(WebSourceId)sid
72 sourceId:(WebSourceId)sid
84 sourceId:(WebSourceId)sid
90 sourceId:(WebSourceId)sid
96 sourceId:(WebSourceId)sid
102 sourceId:(WebSourceId)sid
WebScriptDebugger.mm 101 CallScriptDebugDelegate(implementations->didEnterCallFrameFunc, webView, @selector(webView:didEnterCallFrame:sourceId:line:forWebFrame:), m_topCallFrame.get(), static_cast<NSInteger>(0), -1, webFrame);
124 CallScriptDebugDelegate(implementations->didParseSourceFunc, webView, @selector(webView:didParseSource:baseLineNumber:fromURL:sourceId:forWebFrame:), nsSource, source.firstLine(), nsURL, source.provider()->asID(), webFrame);
126 CallScriptDebugDelegate(implementations->didParseSourceFunc, webView, @selector(webView:didParseSource:fromURL:sourceId:forWebFrame:), nsSource, [nsURL absoluteString], source.provider()->asID(), webFrame);
143 void WebScriptDebugger::callEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber)
157 CallScriptDebugDelegate(implementations->didEnterCallFrameFunc, webView, @selector(webView:didEnterCallFrame:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webFrame);
162 void WebScriptDebugger::atStatement(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber)
176 CallScriptDebugDelegate(implementations->willExecuteStatementFunc, webView, @selector(webView:willExecuteStatement:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webFrame);
181 void WebScriptDebugger::returnEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber
    [all...]
WebView.mm     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 64 String accountName, long rawContactId, String sourceId, String displayName) {
74 if (sourceId == null) {
80 if (appendEscapedSourceId(lookupKey, sourceId)) {
86 private static boolean appendEscapedSourceId(StringBuilder sb, String sourceId) {
90 int index = sourceId.indexOf('.', start);
92 sb.append(sourceId, start, sourceId.length());
97 sb.append(sourceId, start, index);
ContactsProvider2.java     [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
CommandDetails.java 80 public int sourceId;
StkService.java 405 private void eventDownload(int event, int sourceId, int destinationId,
427 buf.write(sourceId); // source device id
ValueParser.java 69 devIds.sourceId = rawValue[valueIndex] & 0xff;
  /external/webkit/WebKit/chromium/src/
WebWorkerClientImpl.cpp 256 int sourceId,
267 sourceId,
277 static_cast<MessageSource>(sourceId),
386 int sourceId,
394 static_cast<MessageSource>(sourceId),
WebWorkerClientImpl.h 129 int sourceId,
  /external/webkit/WebKit/chromium/src/js/
DebuggerAgent.js 236 * @param {number} sourceId Id of the script fot the breakpoint.
240 devtools.DebuggerAgent.prototype.addBreakpoint = function(sourceId, line, condition)
242 var script = this.parsedScripts_[sourceId];
279 "target": sourceId,
298 * @param {number} sourceId Id of the script for the breakpoint.
301 devtools.DebuggerAgent.prototype.removeBreakpoint = function(sourceId, line)
303 var script = this.parsedScripts_[sourceId];
337 * @param {number} sourceId Id of the script for the breakpoint.
341 devtools.DebuggerAgent.prototype.updateBreakpoint = function(sourceId, line, condition)
343 var script = this.parsedScripts_[sourceId];
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 183 protected long createGroup(Account account, String sourceId, String title) {
184 return createGroup(account, sourceId, title, 1);
187 protected long createGroup(Account account, String sourceId, String title, int visible) {
189 values.put(Groups.SOURCE_ID, sourceId);
319 protected Uri insertGroupMembership(long rawContactId, String sourceId) {
323 values.put(GroupMembership.GROUP_SOURCE_ID, sourceId);
484 protected long assertSingleGroup(Long rowId, Account account, String sourceId, String title) {
488 long actualRowId = assertGroup(c, rowId, account, sourceId, title);
497 String sourceId) {
501 long actualRowId = assertGroupMembership(c, rowId, rawContactId, groupRowId, sourceId);
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.cpp 271 void ChromeClient::addMessageToConsole(WebCore::MessageSource source, WebCore::MessageType type, WebCore::MessageLevel level, const WebCore::String& message, unsigned int lineNumber, const WebCore::String& sourceId)
274 g_signal_emit_by_name(m_webView, "console-message", message.utf8().data(), lineNumber, sourceId.utf8().data(), &retval);
  /packages/apps/Browser/src/com/android/browser/
ErrorConsoleView.java 307 headline.setText(error.sourceId() + ":" + error.lineNumber());
Tab.java     [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
ContactsSyncAdapter.java     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
DumpRenderTree.cpp 612 static gboolean webViewConsoleMessage(WebKitWebView* view, const gchar* message, unsigned int line, const gchar* sourceId, gpointer data)
  /external/webkit/WebKit/gtk/webkit/
webkitwebview.cpp 912 static gboolean webkit_web_view_real_console_message(WebKitWebView* webView, const gchar* message, unsigned int line, const gchar* sourceId)
914 g_message("console message: %s @%d: %s\n", sourceId, line, message);
    [all...]
  /prebuilt/sdk/8/
android.jar 

Completed in 818 milliseconds