OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exceptionName
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/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/LayoutTests/fast/dom/DOMImplementation/script-tests/
createDocumentType-err.js
5
var
exceptionName
;
8
exceptionName
= "INVALID_CHARACTER_ERR";
11
exceptionName
= "NAMESPACE_ERR";
13
if (
exceptionName
)
14
return
exceptionName
; // + "(" + c + ")";
createDocument-namespace-err.js
19
var
exceptionName
;
22
exceptionName
= "INVALID_CHARACTER_ERR";
25
exceptionName
= "NAMESPACE_ERR";
27
if (
exceptionName
)
28
return
exceptionName
; // + "(" + c + ")";
/external/webkit/Source/WebCore/bindings/scripts/
IDLParser.pm
197
my $
exceptionName
= "";
204
$
exceptionName
= (defined($1) ? $1 : die("Parsing error!\nSource:\n$data\n)"));
215
$dataNode->name($
exceptionName
);
227
print " |----> Exception; NAME \"$
exceptionName
\" DATA TYPE \"$exceptionDataType\" DATA NAME \"$exceptionDataName\"\n |-\n |\n" unless $beQuiet;
/external/doclava/src/com/google/doclava/
PackageInfo.java
251
public ClassInfo getException(String
exceptionName
) {
252
return mExceptionsMap.get(
exceptionName
);
InfoBuilder.java
[
all
...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js
686
assertRaise: function(
exceptionName
, method, message) {
687
message = this.buildMessage(message || 'assertRaise', '<?> exception expected but none was raised',
exceptionName
);
693
if (e.name ==
exceptionName
) return true;
[
all
...]
/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
...]
/external/javassist/src/main/javassist/
CtBehavior.java
[
all
...]
Completed in 1604 milliseconds