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

12

/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...]
H A Ddebug-function-scopes.js70 var mirror = Debug.MakeMirror(f1); variable
72 assertEquals(6, mirror.scopeCount());
74 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
75 CheckScope(mirror.scope(1), { w: 5, v: "Capybara" }, ScopeType.With);
76 CheckScope(mirror.scope(2), { y: 17, z: 22 }, ScopeType.Closure);
77 CheckScope(mirror.scope(3), { x: 5 }, ScopeType.Closure);
78 CheckScope(mirror.scope(4), {}, ScopeType.Script);
79 CheckScope(mirror.scope(5), {}, ScopeType.Global);
83 var mirror = Debug.MakeMirror(f2); variable
85 assertEquals(2, mirror
103 var mirror = Debug.MakeMirror(f3); variable
127 var mirror = Debug.MakeMirror(f4); variable
147 var mirror = Debug.MakeMirror(f5); variable
[all...]
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
H A DTypeNames.java51 public static TypeName forTypeMirror(TypeMirror mirror) { argument
52 return mirror.accept(new SimpleTypeVisitor6<TypeName, Void>() {
H A DWildcardName.java36 static WildcardName forTypeMirror(WildcardType mirror) { argument
38 Optional.fromNullable(mirror.getExtendsBound()).transform(FOR_TYPE_MIRROR),
39 Optional.fromNullable(mirror.getSuperBound()).transform(FOR_TYPE_MIRROR));
H A DPrimitiveName.java42 static PrimitiveName forTypeMirror(PrimitiveType mirror) { argument
43 switch (mirror.getKind()) {
/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/v8/test/mjsunit/es6/
H A Ddebug-function-scopes.js75 var mirror = Debug.MakeMirror(f1); variable
77 assertEquals(5, mirror.scopeCount());
79 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
80 CheckScope(mirror.scope(1), { z: 22, w: 5, v: "Capybara" }, ScopeType.Closure);
81 CheckScope(mirror.scope(2), { x: 5 }, ScopeType.Closure);
82 CheckScope(mirror.scope(3), { top_level_let: 255 }, ScopeType.Script);
83 CheckScope(mirror.scope(4), {}, ScopeType.Global);
108 var mirror = Debug.MakeMirror(f2); variable
110 assertEquals(5, mirror.scopeCount());
112 CheckScope(mirror
[all...]
/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");
71 int ok = 0, iok = 0, mirror=0,redir=0; local
105 } else if (!mirror && matches(*argv, "mirror") == 0) {
106 mirror=1;
108 fprintf(stderr, "Can't have both mirror and redir\n");
116 if (mirror) {
117 fprintf(stderr, "Can't have both mirror and redir\n");
123 } 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/deqp/framework/common/
H A DtcuTexVerifierUtil.cpp126 static inline int mirror (int a) function in namespace:tcu::TexVerifierUtil
153 return (size - 1) - mirror(imod(c, 2*size) - size);
/external/skia/src/utils/
H A DSkInterpolator.cpp86 int mirror = fFlags & kMirror; local
87 offsetTime = offsetTime % (totalTime << mirror);
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DRendererCommon.java179 * Returns layout transformation matrix that applies an optional mirror effect and compensates
183 boolean mirror, float videoAspectRatio, float displayAspectRatio) {
193 if (mirror) {
182 getLayoutMatrix( boolean mirror, float videoAspectRatio, float displayAspectRatio) argument
H A DSurfaceViewRenderer.java105 private boolean mirror; field in class:SurfaceViewRenderer
278 public void setMirror(final boolean mirror) { argument
280 this.mirror = mirror;
492 mirror, frameAspectRatio(), (float) layoutSize.x / layoutSize.y);
H A DVideoRendererGui.java114 private boolean mirror; field in class:VideoRendererGui.YuvImageRenderer
142 // |screenHeight|, |videoWidth|, |videoHeight|, |rotationDegree|, |scalingType|, and |mirror|.
160 RendererCommon.ScalingType scalingType, boolean mirror, RendererCommon.GlDrawer drawer) {
165 this.mirror = mirror;
213 + " x " + videoHeight + ". Rotation: " + rotationDegree + ". Mirror: " + mirror);
225 mirror, videoAspectRatio, (float) displayLayout.width() / displayLayout.height());
327 RendererCommon.ScalingType scalingType, boolean mirror) {
332 && mirror == this.mirror) {
157 YuvImageRenderer( GLSurfaceView surface, int id, int x, int y, int width, int height, RendererCommon.ScalingType scalingType, boolean mirror, RendererCommon.GlDrawer drawer) argument
326 setPosition(int x, int y, int width, int height, RendererCommon.ScalingType scalingType, boolean mirror) argument
449 createGui(int x, int y, int width, int height, RendererCommon.ScalingType scalingType, boolean mirror) argument
456 createGuiRenderer( int x, int y, int width, int height, RendererCommon.ScalingType scalingType, boolean mirror) argument
467 create(int x, int y, int width, int height, RendererCommon.ScalingType scalingType, boolean mirror) argument
477 create(int x, int y, int width, int height, RendererCommon.ScalingType scalingType, boolean mirror, RendererCommon.GlDrawer drawer) argument
521 update( VideoRenderer.Callbacks renderer, int x, int y, int width, int height, RendererCommon.ScalingType scalingType, boolean mirror) argument
[all...]
/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/opencv3/modules/videoio/src/
H A Dcap_openni2.cpp491 bool mirror = propValue > 0.0 ? true : false; local
492 isSet = color.setMirroringEnabled(mirror) == openni::STATUS_OK;
493 isSet = depth.setMirroringEnabled(mirror) == openni::STATUS_OK;
/external/pdfium/xfa/src/fxbarcode/pdf417/
H A DBC_PDF417Detector.cpp80 CBC_CommonBitArray* row = mirror(temp, tmpBitArray);
84 CBC_CommonBitArray* rowfirstRow = mirror(firstRowBitArray, tmpBitArray);
92 CBC_CommonBitArray* CBC_Detector::mirror(CBC_CommonBitArray* input, function in class:CBC_Detector
/external/harfbuzz_ng/src/
H A Dhb-ot-shape.cc817 hb_bool_t mirror,
824 if (mirror)
851 bool mirror = hb_script_get_horizontal_direction (buffer->props.script) == HB_DIRECTION_RTL; local
856 add_char (font, buffer->unicode, mirror, info[i].codepoint, glyphs);
815 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/kernel-headers/original/uapi/linux/
H A Domapfb.h141 __u8 mirror; member in struct:omapfb_plane_info
/external/skia/src/pdf/
H A DSkPDFShader.cpp900 SkMatrix mirror; local
901 mirror.setScale(-1, -1);
902 mirror.postTranslate(2 * width, 2 * height);
903 drawBitmapMatrix(&canvas, *image, mirror);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_blorp_blit.cpp38 * Helper function for handling mirror image blits.
40 * If coord0 > coord1, swap them and invert the "mirror" boolean.
43 fixup_mirroring(bool &mirror, GLint &coord0, GLint &coord1) argument
46 mirror = !mirror;
69 clip_or_scissor(bool mirror, GLint &src_x0, GLint &src_x1, GLint &dst_x0, argument
98 if (mirror) {
1580 bool mirror)
1582 if (!mirror) {
1579 setup(GLuint src0, GLuint dst0, GLuint dst1, bool mirror) argument

Completed in 687 milliseconds

12