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

1 2 3 4 5

  /external/skia/legacy/src/animator/
SkAnimateProperties.h 15 SK_PROPERTY(mirror),
  /external/skia/src/animator/
SkAnimateProperties.h 15 SK_PROPERTY(mirror),
  /external/v8/test/mjsunit/
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 hierachy');
53 assertTrue(mirror instanceof debug.ValueMirror, 'Unexpected mirror hierachy')
    [all...]
debug-referenced-by.js 35 // 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.referencedBy().length)
    [all...]
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...]
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-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-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...]
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-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-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-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
55 // Create mirror and JSON representation.
56 var mirror = debug.MakeMirror(r);
58 var json = JSON.stringify(serializer.serializeValue(mirror));
62 // Check the mirror hierachy.
63 assertTrue(mirror instanceof debug.Mirror);
64 assertTrue(mirror instanceof debug.ValueMirror);
65 assertTrue(mirror instanceof debug.ObjectMirror);
66 assertTrue(mirror instanceof debug.RegExpMirror)
    [all...]
  /external/icu4c/layout/
DefaultCharMapper.h 42 DefaultCharMapper(le_bool filterControls, le_bool mirror)
43 : fFilterControls(filterControls), fMirror(mirror)
  /cts/tests/tests/text/src/android/text/cts/
AndroidCharacterTest.java 122 assertFalse(AndroidCharacter.mirror(src, 0, 0));
123 assertTrue(AndroidCharacter.mirror(src, 40, 24));
125 AndroidCharacter.mirror(src, 65, 1);
131 AndroidCharacter.mirror(src, 60, 10);
137 AndroidCharacter.mirror(src, -1024, 1);
143 AndroidCharacter.mirror(src, 0, -1);
150 assertTrue(AndroidCharacter.mirror(strChar, 0, str.length()));
152 assertFalse(AndroidCharacter.mirror(str.toCharArray(), 0, 2));
  /external/v8/src/
mirror-debugger.js 32 // Mirror cache.
37 * Clear the mirror handle cache.
46 * Returns the mirror for a specified value or object.
48 * @param {value or Object} value the value or object to retreive the mirror for
50 * should not be added to the mirror cache. The default is not transient.
51 * @returns {Mirror} the mirror reflects the passed value or object
54 var mirror;
56 // Look for non transient mirrors in the mirror cache.
59 mirror = mirror_cache_[id]
    [all...]
  /frameworks/base/core/java/android/text/
AndroidCharacter.java 77 * @param text array of characters to apply mirror operation
78 * @param start first character in array to mirror
79 * @param count maximum number of characters to mirror
82 public native static boolean mirror(char[] text, int start, int count); method in class:AndroidCharacter
85 * Return the right-to-left mirror (or the original char if none)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar 
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 102 * whether the interpolator should mirror its repeats. The default settings
103 * are repeatCount = 1, and mirror = false.
105 public void setRepeatMirror(float repeatCount, boolean mirror) {
107 nativeSetRepeatMirror(native_instance, repeatCount, mirror);
160 private static native void nativeSetRepeatMirror(int native_instance, float repeatCount, boolean mirror);
  /external/skia/include/utils/
SkInterpolator.h 42 @param mirror If true, the odd repeats interpolate from the last key
45 void setMirror(bool mirror) {
46 fFlags = SkToU8((fFlags & ~kMirror) | (int)mirror);
  /external/skia/legacy/include/utils/
SkInterpolator.h 42 @param mirror If true, the odd repeats interpolate from the last key
45 void setMirror(bool mirror) {
46 fFlags = SkToU8((fFlags & ~kMirror) | (int)mirror);
  /external/iproute2/tc/
m_mirred.c 2 * m_egress.c ingress/egress packet mirror/redir actions module
35 fprintf(stderr, "\tACTION := <mirror | redirect>\n");
56 return "Egress Mirror";
58 return "Ingress Mirror";
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) {
    [all...]

Completed in 761 milliseconds

1 2 3 4 5