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

  /external/webkit/WebCore/bindings/objc/
ExceptionHandlers.mm 49 NSString *exceptionName;
51 exceptionName = DOMRangeException;
53 exceptionName = DOMEventException;
56 exceptionName = DOMSVGException;
59 exceptionName = DOMXPathException;
61 exceptionName = DOMException;
65 reason = [[NSString alloc] initWithFormat:@"*** %s: %@ %d", description.name, exceptionName, description.code];
67 reason = [[NSString alloc] initWithFormat:@"*** %@ %d", exceptionName, description.code];
69 NSDictionary *userInfo = [[NSDictionary alloc] initWithObjectsAndKeys:[NSNumber numberWithInt:description.code], exceptionName, nil];
71 NSException *exception = [NSException exceptionWithName:exceptionName reason:reason userInfo:userInfo]
    [all...]
  /external/webkit/WebCore/bindings/scripts/
IDLParser.pm 185 my $exceptionName = "";
192 $exceptionName = (defined($1) ? $1 : die("Parsing error!\nSource:\n$data\n)"));
203 $dataNode->name($exceptionName);
215 print " |----> Exception; NAME \"$exceptionName\" DATA TYPE \"$exceptionDataType\" DATA NAME \"$exceptionDataName\"\n |-\n |\n" unless $beQuiet;
  /dalvik/vm/interp/
Interp.c     [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
JSR166TestCase.java 301 * threadFail with message "should throw" + exceptionName
303 public void threadShouldThrow(String exceptionName) {
305 fail("should throw " + exceptionName);
348 * fail with message "should throw " + exceptionName
350 public void shouldThrow(String exceptionName) {
351 fail("Should throw " + exceptionName);
  /external/jdiff/src/jdiff/
RootDocToXML.java 515 String exceptionName = cd[i].name();
516 if (trace) System.out.println("PROCESSING EXCEPTION: " + exceptionName);
517 outputFile.print(" <exception name=\"" + exceptionName + "\" type=\"");
    [all...]
  /cts/tests/SignatureTest/src/android/tests/sigtest/
JDiffClassDescription.java 318 * @param exceptionName name of exception
320 public void addException(String exceptionName) {
321 mExceptionList.add(exceptionName);
    [all...]

Completed in 871 milliseconds