Searched defs:mirror (Results 1 - 19 of 19) sorted by relevance

/external/v8/test/mjsunit/
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-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 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...]
/external/icu4c/layout/
H A DDefaultCharMapper.h42 DefaultCharMapper(le_bool filterControls, le_bool mirror) argument
43 : fFilterControls(filterControls), fMirror(mirror)
H A DLayoutEngine.cpp464 void LayoutEngine::mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, le_bool mirror, argument
473 DefaultCharMapper charMapper(TRUE, 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/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/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.
H A Dorg.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/skia/src/utils/
H A DSkInterpolator.cpp87 int mirror = fFlags & kMirror; local
88 offsetTime = offsetTime % (totalTime << mirror);
/external/webkit/Source/WebCore/platform/graphics/
H A DFontFastPath.cpp43 GlyphData Font::glyphDataForCharacter(UChar32 c, bool mirror, FontDataVariant variant) const argument
59 if (mirror)
/external/skia/src/pdf/
H A DSkPDFShader.cpp565 SkMatrix mirror; local
566 mirror.setScale(-1, -1);
567 mirror.postTranslate(2 * width, 2 * height);
568 canvas.drawBitmapMatrix(*image, mirror);
/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/quake/quake/src/QW/client/
H A Dgl_rmain.c48 qboolean mirror; variable
988 if (mirror)
1120 #if 0 //!!! FIXME, Zoid, mirror is disabled for now
1132 if (!mirror)
1215 mirror = false;
1227 // render mirror view
/external/kernel-headers/original/video/
H A Ddsscomp.h325 __u8 mirror; /* left-to-right: mirroring is applied after rotation */ member in struct:dss2_ovl_cfg
/external/quake/quake/src/WinQuake/
H A Dgl_rmain.cpp48 qboolean mirror; variable
1207 if (mirror)
1402 if (!mirror)
1493 mirror = false;
1518 // render mirror view
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jar ... lang.Object implements com.sun.jdi.Mirror { public abstract org.eclipse.jdi.hcr. ...

Completed in 487 milliseconds