Searched refs:mirror (Results 1 - 25 of 49) sorted by relevance

12

/external/v8/test/mjsunit/
H A Dmirror-null.js29 // Test the mirror object for null
31 // Create mirror and JSON representation.
32 var mirror = debug.MakeMirror(null); variable
34 var json = JSON.stringify(serializer.serializeValue(mirror));
36 // Check the mirror hierachy.
37 assertTrue(mirror instanceof debug.Mirror);
38 assertTrue(mirror instanceof debug.NullMirror);
40 // Check the mirror properties.
41 assertTrue(mirror.isNull());
42 assertEquals('null', mirror
[all...]
H A Dmirror-undefined.js29 // Test the mirror object for undefined
31 // Create mirror and JSON representation.
32 var mirror = debug.MakeMirror(void 0); variable
34 var json = JSON.stringify(serializer.serializeValue(mirror));
36 // Check the mirror hierachy.
37 assertTrue(mirror instanceof debug.Mirror);
38 assertTrue(mirror instanceof debug.UndefinedMirror);
40 // Check the mirror properties.
41 assertTrue(mirror.isUndefined());
42 assertEquals('undefined', mirror
[all...]
H A Dmirror-boolean.js29 // Test the mirror object for boolean values
32 // Create mirror and JSON representation.
33 var mirror = debug.MakeMirror(b);
35 var json = JSON.stringify(serializer.serializeValue(mirror));
37 // Check the mirror hierachy.
38 assertTrue(mirror instanceof debug.Mirror);
39 assertTrue(mirror instanceof debug.ValueMirror);
40 assertTrue(mirror instanceof debug.BooleanMirror);
42 // Check the mirror properties.
43 assertTrue(mirror
[all...]
H A Ddebug-referenced-by.js35 // Create mirror for the object.
36 var mirror = debug.MakeMirror(a); variable
39 assertEquals(1, mirror.referencedBy().length);
40 assertEquals(1, mirror.referencedBy(0).length);
41 assertEquals(1, mirror.referencedBy(1).length);
42 assertEquals(1, mirror.referencedBy(10).length);
47 assertEquals(2, mirror.referencedBy().length);
52 assertEquals(3, mirror.referencedBy().length);
55 assertEquals(4, mirror.referencedBy().length);
57 assertEquals(5, mirror
[all...]
H A Dmirror-script.js29 // Test the mirror object for scripts.
33 // Create mirror and JSON representation.
34 var mirror = debug.MakeMirror(f).script();
36 var json = JSON.stringify(serializer.serializeValue(mirror));
38 // Check the mirror hierachy.
39 assertTrue(mirror instanceof debug.Mirror);
40 assertFalse(mirror instanceof debug.ValueMirror);
41 assertTrue(mirror instanceof debug.ScriptMirror);
43 // Check the mirror properties.
44 assertTrue(mirror
92 var mirror = debug.MakeMirror(eval('(function(){\\n 1;\\n})')).script(); variable
[all...]
H A Dmirror-unresolved-function.js29 // Test the mirror object for unresolved functions.
43 var mirror = new debug.UnresolvedFunctionMirror("f");
45 var json = JSON.stringify(serializer.serializeValue(mirror));
49 // Check the mirror hierachy for unresolved functions.
50 assertTrue(mirror instanceof debug.Mirror);
51 assertTrue(mirror instanceof debug.ValueMirror);
52 assertTrue(mirror instanceof debug.ObjectMirror);
53 assertTrue(mirror instanceof debug.FunctionMirror);
55 // Check the mirror properties for unresolved functions.
56 assertTrue(mirror
[all...]
H A Dmirror-number.js29 // Test the mirror object for number values
32 // Create mirror and JSON representation.
33 var mirror = debug.MakeMirror(n);
35 var json = JSON.stringify(serializer.serializeValue(mirror));
37 // Check the mirror hierachy.
38 assertTrue(mirror instanceof debug.Mirror);
39 assertTrue(mirror instanceof debug.ValueMirror);
40 assertTrue(mirror instanceof debug.NumberMirror);
42 // Check the mirror properties.
43 assertTrue(mirror
[all...]
H A Dmirror-function.js29 // Test the mirror object for functions.
44 // Create mirror and JSON representation.
45 var mirror = debug.MakeMirror(f);
47 var json = JSON.stringify(serializer.serializeValue(mirror));
51 // Check the mirror hierachy.
52 assertTrue(mirror instanceof debug.Mirror);
53 assertTrue(mirror instanceof debug.ValueMirror);
54 assertTrue(mirror instanceof debug.ObjectMirror);
55 assertTrue(mirror instanceof debug.FunctionMirror);
57 // Check the mirror propertie
[all...]
H A Dmirror-date.js29 // Test the mirror object for boolean values
32 // Create mirror and JSON representation.
33 var mirror = debug.MakeMirror(d);
35 var json = JSON.stringify(serializer.serializeValue(mirror));
37 // Check the mirror hierachy.
38 assertTrue(mirror instanceof debug.Mirror);
39 assertTrue(mirror instanceof debug.ValueMirror);
40 assertTrue(mirror instanceof debug.ObjectMirror);
41 assertTrue(mirror instanceof debug.DateMirror);
43 // Check the mirror propertie
[all...]
H A Dmirror-string.js29 // Test the mirror object for string values
31 const kMaxProtocolStringLength = 80; // Constant from mirror-delay.js
34 // Create mirror and JSON representation.
35 var mirror = debug.MakeMirror(s);
37 var json = JSON.stringify(serializer.serializeValue(mirror));
39 // Check the mirror hierachy.
40 assertTrue(mirror instanceof debug.Mirror);
41 assertTrue(mirror instanceof debug.ValueMirror);
42 assertTrue(mirror instanceof debug.StringMirror);
44 // Check the mirror propertie
[all...]
H A Dmirror-object.js29 // Test the mirror object for objects
44 // Create mirror and JSON representation.
45 var mirror = debug.MakeMirror(obj);
47 var json = JSON.stringify(serializer.serializeValue(mirror));
51 // Check the mirror hierachy.
52 assertTrue(mirror instanceof debug.Mirror, 'Unexpected mirror hierachy');
53 assertTrue(mirror instanceof debug.ValueMirror, 'Unexpected mirror hierachy');
54 assertTrue(mirror instanceo
[all...]
H A Dmirror-regexp.js29 // Test the mirror object for regular expression values
55 // Create mirror and JSON representation.
56 var mirror = debug.MakeMirror(r);
58 var json = JSON.stringify(serializer.serializeValue(mirror));
62 // Check the mirror hierachy.
63 assertTrue(mirror instanceof debug.Mirror);
64 assertTrue(mirror instanceof debug.ValueMirror);
65 assertTrue(mirror instanceof debug.ObjectMirror);
66 assertTrue(mirror instanceof debug.RegExpMirror);
68 // Check the mirror propertie
[all...]
H A Dmirror-error.js29 // Test the mirror object for regular error objects
44 // Create mirror and JSON representation.
45 var mirror = debug.MakeMirror(e);
47 var json = JSON.stringify(serializer.serializeValue(mirror));
51 // Check the mirror hierachy.
52 assertTrue(mirror instanceof debug.Mirror);
53 assertTrue(mirror instanceof debug.ValueMirror);
54 assertTrue(mirror instanceof debug.ObjectMirror);
55 assertTrue(mirror instanceof debug.ErrorMirror);
57 // Check the mirror propertie
[all...]
H A Dmirror-array.js29 // Test the mirror object for objects
44 // Create mirror and JSON representation.
45 var mirror = debug.MakeMirror(a);
47 var json = JSON.stringify(serializer.serializeValue(mirror));
51 // Check the mirror hierachy.
52 assertTrue(mirror instanceof debug.Mirror, 'Unexpected mirror hierachy');
53 assertTrue(mirror instanceof debug.ValueMirror, 'Unexpected mirror hierachy');
54 assertTrue(mirror instanceo
[all...]
H A Ddebug-setbreakpoint.js80 var mirror;
93 mirror = debug.MakeMirror(o);
94 testArguments(dcp, '{"type":"handle","target":' + mirror.handle() + '}', false);
115 mirror = debug.MakeMirror(f);
116 testArguments(dcp, '{"type":"handle","target":' + mirror.handle() + '}', true, false);
117 mirror = debug.MakeMirror(o.a);
118 testArguments(dcp, '{"type":"handle","target":' + mirror.handle() + '}', true, false);
/external/skia/src/animator/
H A DSkAnimateProperties.h15 SK_PROPERTY(mirror),
/external/v8/src/
H A Dmirror-debugger.js37 * Clear the mirror handle cache.
46 * Returns the mirror for a specified value or object.
48 * @param {value or Object} value the value or object to retreive the mirror for
50 * should not be added to the mirror cache. The default is not transient.
51 * @returns {Mirror} the mirror reflects the passed value or object
54 var mirror;
56 // Look for non transient mirrors in the mirror cache.
59 mirror = mirror_cache_[id];
60 if (mirror.value() === value) {
61 return mirror;
[all...]
/external/icu4c/layout/
H A DDefaultCharMapper.h42 DefaultCharMapper(le_bool filterControls, le_bool mirror) argument
43 : fFilterControls(filterControls), fMirror(mirror)
H A DArabicLayoutEngine.h212 * @param mirror - if <code>TRUE</code>, do character mirroring
219 virtual void mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, le_bool mirror,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar ... sun/ com/sun/mirror/ com/sun/mirror/apt/ com/sun/mirror/apt/AnnotationProcessor.class AnnotationProcessor.java package com.
/external/skia/include/utils/
H A DSkInterpolator.h42 @param mirror If true, the odd repeats interpolate from the last key
45 void setMirror(bool mirror) { argument
46 fFlags = SkToU8((fFlags & ~kMirror) | (int)mirror);
/external/iproute2/tc/
H A Dm_mirred.c2 * m_egress.c ingress/egress packet mirror/redir actions module
35 fprintf(stderr, "\tACTION := <mirror | redirect>\n");
70 int ok = 0, iok = 0, mirror=0,redir=0; local
104 } else if (!mirror && matches(*argv, "mirror") == 0) {
105 mirror=1;
107 fprintf(stderr, "Cant have both mirror and redir\n");
115 if (mirror) {
116 fprintf(stderr, "Cant have both mirror and redir\n");
122 } else if ((redir || mirror)
[all...]
/external/webkit/Source/JavaScriptCore/wtf/unicode/glib/
H A DUnicodeGLib.h199 gunichar mirror = 0; local
200 g_unichar_get_mirror_char(c, &mirror);
201 return mirror;
/external/chromium/build/
H A Dinstall-chroot.sh14 echo "usage: ${0##*/} [-m mirror] [-g group,...] [-s] [-c]"
17 echo "-m mirror an alternate repository mirror for package downloads"
32 if [ -n "${mirror}" ]; then
33 echo "You can only specify exactly one mirror location"
37 mirror="$OPTARG"
173 if [ -z "${mirror}" ]; then
175 mirror="http://archive.ubuntu.com/ubuntu" ||
176 mirror="http://ftp.us.debian.org/debian"
179 "$mirror"
[all...]
/external/android-mock/src/com/google/android/testing/mocking/
H A DUsesMocksProcessor.java138 for (AnnotationMirror mirror : mirrors) {
139 if (mirror.getAnnotationType().toString().equals(UsesMocks.class.getName())) {
140 for (AnnotationValue annotationValue : mirror.getElementValues().values()) {

Completed in 1050 milliseconds

12