Searched defs:mirror (Results 1 - 25 of 34) 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/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/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/icu4c/layout/
H A DDefaultCharMapper.h42 DefaultCharMapper(le_bool filterControls, le_bool mirror) argument
43 : fFilterControls(filterControls), fMirror(mirror)
H A DLayoutEngine.cpp468 void LayoutEngine::mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, le_bool mirror, argument
477 DefaultCharMapper charMapper(TRUE, mirror);
/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.cpp172 GlyphData SVGTextRunRenderingContext::glyphDataForCharacter(const Font& font, const TextRun& run, WidthIterator& iterator, UChar32 character, bool mirror, int currentCharacter, unsigned& advanceLength) argument
177 pair<GlyphData, GlyphPage*> pair = font.glyphDataAndPageForCharacter(character, mirror);
223 if (svgFontData->applySVGGlyphSelection(iterator, glyphData, mirror, currentCharacter, advanceLength))
236 GlyphData fallbackGlyphData = font.glyphDataForCharacter(character, mirror);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFontData.cpp134 bool SVGFontData::applySVGGlyphSelection(WidthIterator& iterator, GlyphData& glyphData, bool mirror, int currentCharacter, unsigned& advanceLength) const argument
151 if (mirror)
154 arabicForms = charactersWithArabicForm(remainingTextInRun, mirror);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DWidthIterator.cpp71 GlyphData WidthIterator::glyphDataForCharacter(UChar32 character, bool mirror, int currentCharacter, unsigned& advanceLength) argument
77 return renderingContext->glyphDataForCharacter(*m_font, m_run, *this, character, mirror, currentCharacter, advanceLength);
80 return m_font->glyphDataForCharacter(character, mirror);
H A DFont.h146 inline GlyphData glyphDataForCharacter(UChar32 c, bool mirror, FontDataVariant variant = AutoVariant) const argument
148 return glyphDataAndPageForCharacter(c, mirror, variant).first;
153 std::pair<GlyphData, GlyphPage*> glyphDataAndPageForCharacter(UChar32, bool mirror, FontDataVariant = AutoVariant) const;
H A DFontFastPath.cpp164 std::pair<GlyphData, GlyphPage*> Font::glyphDataAndPageForCharacter(UChar32 c, bool mirror, FontDataVariant variant) const argument
180 if (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/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape.cc652 hb_bool_t mirror,
659 if (mirror)
681 bool mirror = hb_script_get_horizontal_direction (buffer->props.script) == HB_DIRECTION_RTL; local
685 add_char (font, buffer->unicode, mirror, buffer->info[i].codepoint, glyphs);
650 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/third_party/skia/src/utils/
H A DSkInterpolator.cpp87 int mirror = fFlags & kMirror; local
88 offsetTime = offsetTime % (totalTime << mirror);
/external/harfbuzz_ng/src/
H A Dhb-ot-shape.cc605 hb_bool_t mirror,
612 if (mirror)
634 bool mirror = hb_script_get_horizontal_direction (buffer->props.script) == HB_DIRECTION_RTL; local
638 add_char (font, buffer->unicode, mirror, buffer->info[i].codepoint, glyphs);
603 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/skia/src/utils/
H A DSkInterpolator.cpp87 int mirror = fFlags & kMirror; local
88 offsetTime = offsetTime % (totalTime << mirror);

Completed in 783 milliseconds

12