OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getJSClass
(Results
1 - 18
of
18
) sorted by null
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Object/
class-001.js
25
* The
getJSClass
() function we use is in a utility file, e.g. "shell.js".
39
actual =
getJSClass
(this);
44
actual =
getJSClass
(new Object());
49
actual =
getJSClass
(new Function());
54
actual =
getJSClass
(new Array());
59
actual =
getJSClass
(new String());
64
actual =
getJSClass
(new Boolean());
69
actual =
getJSClass
(new Number());
74
actual =
getJSClass
(Math); // can't use 'new' with the Math object (EMCA3, 15.8)
79
actual =
getJSClass
(new Date())
[
all
...]
class-002.js
28
* The
getJSClass
() function we use is in a utility file, e.g. "shell.js"
45
actual =
getJSClass
(Object);
50
actual =
getJSClass
(Function);
55
actual =
getJSClass
(Array);
60
actual =
getJSClass
(String);
65
actual =
getJSClass
(Boolean);
70
actual =
getJSClass
(Number);
75
actual =
getJSClass
(Date);
80
actual =
getJSClass
(RegExp);
85
actual =
getJSClass
(Error)
[
all
...]
class-003.js
32
* The
getJSClass
() function we use is in a utility file, e.g. "shell.js"
49
actual =
getJSClass
(new Error());
54
actual =
getJSClass
(new EvalError());
59
actual =
getJSClass
(new RangeError());
64
actual =
getJSClass
(new ReferenceError());
69
actual =
getJSClass
(new SyntaxError());
74
actual =
getJSClass
(new TypeError());
79
actual =
getJSClass
(new URIError());
class-004.js
31
* The
getJSClass
() function we use is in a utility file, e.g. "shell.js"
48
actual =
getJSClass
(Error);
53
actual =
getJSClass
(EvalError);
58
actual =
getJSClass
(RangeError);
63
actual =
getJSClass
(ReferenceError);
68
actual =
getJSClass
(SyntaxError);
73
actual =
getJSClass
(TypeError);
78
actual =
getJSClass
(URIError);
regress-72773.js
30
* The
getJSClass
() function we use is in a utility file, e.g. "shell.js"
56
actual =
getJSClass
(e);
shell.js
33
* The
getJSClass
() function returns 'Number', the [[Class]] property of obj.
52
function
getJSClass
(obj)
class-005.js
28
* The
getJSClass
() function we use is in a utility file, e.g. "shell.js"
48
actual =
getJSClass
(new Cow());
53
actual =
getJSClass
(new Calf());
/external/webkit/Tools/DumpRenderTree/
GCController.h
47
static JSClassRef
getJSClass
();
AccessibilityTextMarker.cpp
61
return JSObjectMake(context, AccessibilityTextMarker::
getJSClass
(), new AccessibilityTextMarker(element));
64
JSClassRef AccessibilityTextMarker::
getJSClass
()
113
return JSObjectMake(context, AccessibilityTextMarkerRange::
getJSClass
(), new AccessibilityTextMarkerRange(element));
116
JSClassRef AccessibilityTextMarkerRange::
getJSClass
()
AccessibilityTextMarker.h
60
static JSClassRef
getJSClass
();
80
static JSClassRef
getJSClass
();
AccessibilityController.h
61
static JSClassRef
getJSClass
();
GCController.cpp
78
JSClassRef classRef =
getJSClass
();
85
JSClassRef GCController::
getJSClass
()
AccessibilityController.cpp
52
JSClassRef classRef =
getJSClass
();
100
JSClassRef AccessibilityController::
getJSClass
()
AccessibilityUIElement.h
215
static JSClassRef
getJSClass
();
LayoutTestController.h
401
static JSClassRef
getJSClass
();
AccessibilityUIElement.cpp
[
all
...]
LayoutTestController.cpp
[
all
...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/Script/
script-001.js
44
js> s.
getJSClass
45
js> s.
getJSClass
= Object.prototype.toString
50
js> s.
getJSClass
()
134
s.
getJSClass
= Object.prototype.toString;
142
"s.
getJSClass
()",
144
s.
getJSClass
() );
Completed in 402 milliseconds