HomeSort by relevance Sort by last modified time
    Searched refs:Mirror (Results 1 - 25 of 33) sorted by null

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterMirrorRepresentation.java 34 public static final String SERIALIZATION_NAME = "MIRROR";
38 Mirror mMirror;
40 public enum Mirror {
44 private Mirror(char value) {
52 public static Mirror fromValue(char value) {
68 public FilterMirrorRepresentation(Mirror mirror) {
75 setTextId(R.string.mirror);
77 setMirror(mirror);
94 FilterMirrorRepresentation mirror = (FilterMirrorRepresentation) rep local
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Mirror.java 29 public class Mirror extends TestBase {
  /external/v8/src/debug/
mirrors.js 37 // Mirror hierarchy:
38 // - Mirror
94 // Mirror cache.
123 * Returns the mirror for a specified value or object.
125 * @param {value or Object} value the value or object to retreive the mirror for
127 * should not be added to the mirror cache. The default is not transient.
128 * @returns {Mirror} the mirror reflects the passed value or object
131 var mirror;
133 // Look for non transient mirrors in the mirror cache
    [all...]
  /external/dng_sdk/source/
dng_orientation.h 113 static dng_orientation Mirror ()
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 31 import com.android.gallery3d.filtershow.filters.FilterMirrorRepresentation.Mirror;
52 public Mirror mirror = FilterMirrorRepresentation.getNil(); field in class:GeometryMathUtils.GeometryHolder
58 mirror = h.mirror;
65 mirror = FilterMirrorRepresentation.getNil();
72 mirror == FilterMirrorRepresentation.getNil();
86 mirror == h.mirror;
93 + ",mirror:" + mirror.value() + "]"
    [all...]
  /external/v8/test/mjsunit/
mirror-function.js 29 // 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)
    [all...]
debug-mirror-cache.js 53 // Check that mirror cache is cleared when entering debugger.
54 assertTrue(debug.MirrorCacheIsEmpty(), "Mirror cache not cleared");
68 assertFalse(debug.MirrorCacheIsEmpty(), "Mirror cache not used");
mirror-array.js 29 // 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')
    [all...]
mirror-boolean.js 29 // 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
    [all...]
mirror-null.js 29 // 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())
    [all...]
mirror-undefined.js 29 // 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())
    [all...]
mirror-object.js 29 // 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 hierarchy');
53 assertTrue(mirror instanceof debug.ValueMirror, 'Unexpected mirror hierarchy')
    [all...]
mirror-date.js 29 // 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)
    [all...]
mirror-error.js 29 // 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)
    [all...]
mirror-number.js 29 // 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
    [all...]
mirror-regexp.js 29 // Test the mirror object for regular expression values
54 // Create mirror and JSON representation.
55 var mirror = debug.MakeMirror(r);
57 var json = JSON.stringify(serializer.serializeValue(mirror));
61 // Check the mirror hierachy.
62 assertTrue(mirror instanceof debug.Mirror);
63 assertTrue(mirror instanceof debug.ValueMirror);
64 assertTrue(mirror instanceof debug.ObjectMirror);
65 assertTrue(mirror instanceof debug.RegExpMirror)
    [all...]
mirror-string.js 29 // 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)
    [all...]
mirror-script.js 29 // 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
92 var mirror = debug.MakeMirror(eval('(function(){\\n 1;\\n})')).script(); variable
    [all...]
mirror-unresolved-function.js 29 // 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
    [all...]
  /external/v8/test/mjsunit/es6/
mirror-symbols.js 6 // Test the mirror object for symbols.
9 // Create mirror and JSON representation.
10 var mirror = debug.MakeMirror(symbol);
12 var json = JSON.stringify(serializer.serializeValue(mirror));
14 // Check the mirror hierachy.
15 assertTrue(mirror instanceof debug.Mirror);
16 assertTrue(mirror instanceof debug.ValueMirror);
17 assertTrue(mirror instanceof debug.SymbolMirror);
19 // Check the mirror properties
    [all...]
mirror-promises.js 6 // Test the mirror object for promises.
21 // Create mirror and JSON representation.
22 var mirror = debug.MakeMirror(promise);
24 var json = JSON.stringify(serializer.serializeValue(mirror));
28 // Check the mirror hierachy.
29 assertTrue(mirror instanceof debug.Mirror);
30 assertTrue(mirror instanceof debug.ValueMirror);
31 assertTrue(mirror instanceof debug.ObjectMirror);
32 assertTrue(mirror instanceof debug.PromiseMirror)
    [all...]
mirror-collections.js 7 function testMapMirror(mirror) {
10 var json = JSON.stringify(serializer.serializeValue(mirror));
12 // Check the mirror hierachy.
13 assertTrue(mirror instanceof debug.Mirror);
14 assertTrue(mirror instanceof debug.ValueMirror);
15 assertTrue(mirror instanceof debug.ObjectMirror);
16 assertTrue(mirror instanceof debug.MapMirror);
18 assertTrue(mirror.isMap());
25 function testSetMirror(mirror) {
    [all...]
generators-mirror.js 6 // Test the mirror object for functions.
28 // Create mirror and JSON representation.
29 var mirror = debug.MakeMirror(g);
31 var json = JSON.stringify(serializer.serializeValue(mirror));
35 // Check the mirror hierachy.
36 assertTrue(mirror instanceof debug.Mirror);
37 assertTrue(mirror instanceof debug.ValueMirror);
38 assertTrue(mirror instanceof debug.ObjectMirror);
39 assertTrue(mirror instanceof debug.GeneratorMirror)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
apply-preserving-inline-style.js 89 // Mirror the indexed getters and setters of the surrogate style.

Completed in 255 milliseconds

1 2