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

12

/external/chromium_org/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...]
H A Ddebug-function-scopes.js45 // A copy of the scope types from mirror-debugger.js.
69 var mirror = Debug.MakeMirror(f1); variable
71 assertEquals(5, mirror.scopeCount());
73 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
74 CheckScope(mirror.scope(1), { w: 5, v: "Capybara" }, ScopeType.With);
75 CheckScope(mirror.scope(2), { y: 17, z: 22 }, ScopeType.Closure);
76 CheckScope(mirror.scope(3), { x: 5 }, ScopeType.Closure);
77 CheckScope(mirror.scope(4), {}, ScopeType.Global);
81 var mirror = Debug.MakeMirror(f2); variable
83 assertEquals(1, mirror
100 var mirror = Debug.MakeMirror(f3); variable
123 var mirror = Debug.MakeMirror(f4); variable
142 var mirror = Debug.MakeMirror(f5); variable
[all...]
/external/chromium_org/v8/test/mjsunit/harmony/
H A Ddebug-function-scopes.js47 // A copy of the scope types from mirror-debugger.js.
73 var mirror = Debug.MakeMirror(f1); variable
75 assertEquals(4, mirror.scopeCount());
77 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
78 CheckScope(mirror.scope(1), { z: 22, w: 5, v: "Capybara" }, ScopeType.Closure);
79 CheckScope(mirror.scope(2), { x: 5 }, ScopeType.Closure);
80 CheckScope(mirror.scope(3), {}, ScopeType.Global);
105 var mirror = Debug.MakeMirror(f2); variable
107 assertEquals(5, mirror.scopeCount());
110 CheckScope(mirror
[all...]
/external/icu/icu4c/source/layout/
H A DDefaultCharMapper.h42 DefaultCharMapper(le_bool filterControls, le_bool mirror) argument
43 : fFilterControls(filterControls), fMirror(mirror)
H A DLayoutEngine.cpp470 void LayoutEngine::mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, le_bool mirror, argument
479 DefaultCharMapper charMapper(TRUE, mirror);
/external/chromium_org/ui/ozone/platform/dri/
H A Dscreen_manager.cc70 // Either the mode or the location of the display changed, so exit mirror
72 // mirror mode, subsequent calls configuring the other controllers will
73 // restore mirror mode.
81 HardwareDisplayControllers::iterator mirror = local
83 // Handle mirror mode.
84 if (mirror != controllers_.end() && it != mirror)
85 return HandleMirrorMode(it, mirror, crtc, connector);
196 HardwareDisplayControllers::iterator mirror,
199 (*mirror)
194 HandleMirrorMode( HardwareDisplayControllers::iterator original, HardwareDisplayControllers::iterator mirror, uint32_t crtc, uint32_t connector) argument
[all...]
/external/chromium_org/third_party/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/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/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextRunRenderingContext.cpp153 GlyphData SVGTextRunRenderingContext::glyphDataForCharacter(const Font& font, const TextRun& run, WidthIterator& iterator, UChar32 character, bool mirror, int currentCharacter, unsigned& advanceLength) argument
158 pair<GlyphData, GlyphPage*> pair = font.glyphDataAndPageForCharacter(character, mirror);
204 if (svgFontData->applySVGGlyphSelection(iterator, glyphData, mirror, currentCharacter, advanceLength))
217 GlyphData fallbackGlyphData = font.glyphDataForCharacter(character, mirror);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFontData.cpp150 bool SVGFontData::applySVGGlyphSelection(WidthIterator& iterator, GlyphData& glyphData, bool mirror, int currentCharacter, unsigned& advanceLength) const argument
167 if (mirror)
170 arabicForms = charactersWithArabicForm(remainingTextInRun, mirror);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFont.h126 inline GlyphData glyphDataForCharacter(UChar32& c, bool mirror, bool spaceNormalize = false, FontDataVariant variant = AutoVariant) const argument
128 return glyphDataAndPageForCharacter(c, mirror, spaceNormalize, variant).first;
133 std::pair<GlyphData, GlyphPage*> glyphDataAndPageForCharacter(UChar32&, bool mirror, bool normalizeSpace = false, FontDataVariant = AutoVariant) const;
H A DFont.cpp439 std::pair<GlyphData, GlyphPage*> Font::glyphDataAndPageForCharacter(UChar32& c, bool mirror, bool normalizeSpace, FontDataVariant variant) const argument
460 if (mirror)
/external/chromium_org/third_party/skia/src/utils/
H A DSkInterpolator.cpp87 int mirror = fFlags & kMirror; local
88 offsetTime = offsetTime % (totalTime << mirror);
/external/deqp/framework/common/
H A DtcuTexVerifierUtil.cpp126 static inline int mirror (int a) function in namespace:tcu::TexVerifierUtil
149 return (size - 1) - mirror(imod(c, 2*size) - size);
/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/src/utils/
H A DSkInterpolator.cpp87 int mirror = fFlags & kMirror; local
88 offsetTime = offsetTime % (totalTime << mirror);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape.cc753 hb_bool_t mirror,
760 if (mirror)
782 bool mirror = hb_script_get_horizontal_direction (buffer->props.script) == HB_DIRECTION_RTL; local
787 add_char (font, buffer->unicode, mirror, info[i].codepoint, glyphs);
751 add_char(hb_font_t *font, hb_unicode_funcs_t *unicode, hb_bool_t mirror, hb_codepoint_t u, hb_set_t *glyphs) argument
/external/harfbuzz_ng/src/
H A Dhb-ot-shape.cc749 hb_bool_t mirror,
756 if (mirror)
778 bool mirror = hb_script_get_horizontal_direction (buffer->props.script) == HB_DIRECTION_RTL; local
783 add_char (font, buffer->unicode, mirror, info[i].codepoint, glyphs);
747 add_char(hb_font_t *font, hb_unicode_funcs_t *unicode, hb_bool_t mirror, hb_codepoint_t u, hb_set_t *glyphs) argument
/external/chromium_org/ash/display/
H A Ddisplay_controller.cc765 void DisplayController::SetMirrorModeAfterAnimation(bool mirror) { argument
766 GetDisplayManager()->SetMirrorMode(mirror);
/external/kernel-headers/original/uapi/linux/
H A Domapfb.h141 __u8 mirror; member in struct:omapfb_plane_info
/external/skia/src/pdf/
H A DSkPDFShader.cpp1030 SkMatrix mirror; local
1031 mirror.setScale(-1, -1);
1032 mirror.postTranslate(2 * width, 2 * height);
1033 canvas.drawBitmapMatrix(*image, mirror);

Completed in 708 milliseconds

12