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

1 2 3 4 5 6 7 8

  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharsetEncoder.java 55 private final byte unshift; field in class:UTF7StyleCharsetEncoder
74 this.unshift = cs.unshift();
111 out.put(unshift);
150 unshift(out, ch); method
154 out.put(unshift);
174 * include an unshift character.
180 private void unshift(ByteBuffer out, char ch) { method in class:UTF7StyleCharsetEncoder
185 if (base64.contains(ch) || ch == unshift || strict)
186 out.put(unshift);
    [all...]
ModifiedUTF7Charset.java 54 byte unshift() { method in class:ModifiedUTF7Charset
UTF7Charset.java 70 * @see com.beetstra.jutf7.UTF7StyleCharset#unshift()
72 byte unshift() { method in class:UTF7Charset
UTF7StyleCharsetDecoder.java 43 private final byte unshift; field in class:UTF7StyleCharsetDecoder
56 this.unshift = cs.unshift();
68 if (b == unshift) {
UTF7StyleCharset.java 114 * @return The unshift character
116 abstract byte unshift(); method in class:UTF7StyleCharset
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.stdcvt/
codecvt_utf16_unshift.pass.cpp 21 // unshift(stateT& state,
35 std::codecvt_base::result r = c.unshift(m, n, n+4, np);
44 std::codecvt_base::result r = c.unshift(m, n, n+4, np);
53 std::codecvt_base::result r = c.unshift(m, n, n+4, np);
codecvt_utf8_unshift.pass.cpp 21 // unshift(stateT& state,
35 std::codecvt_base::result r = c.unshift(m, n, n+4, np);
44 std::codecvt_base::result r = c.unshift(m, n, n+4, np);
53 std::codecvt_base::result r = c.unshift(m, n, n+4, np);
codecvt_utf8_utf16_unshift.pass.cpp 21 // unshift(stateT& state,
35 std::codecvt_base::result r = c.unshift(m, n, n+4, np);
44 std::codecvt_base::result r = c.unshift(m, n, n+4, np);
53 std::codecvt_base::result r = c.unshift(m, n, n+4, np);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
char16_t_unshift.pass.cpp 14 // result unshift(stateT& state,
31 assert(f.unshift(mbs, to.data(), to.data() + to.size(), to_next) == F::noconv);
char32_t_unshift.pass.cpp 14 // result unshift(stateT& state,
31 assert(f.unshift(mbs, to.data(), to.data() + to.size(), to_next) == F::noconv);
char_unshift.pass.cpp 14 // result unshift(stateT& state,
31 assert(f.unshift(mbs, to.data(), to.data() + to.size(), to_next) == F::noconv);
wchar_t_unshift.pass.cpp 14 // result unshift(stateT& state,
33 assert(f.unshift(mbs, to.data(), to.data() + to.size(), to_next) == F::ok);
  /external/chromium_org/v8/test/mjsunit/
array-unshift.js 32 assertEquals(13, array.unshift('1st', '2ns', '3rd'));
40 // Check that unshift with no args has a side-effect of
63 assertEquals(len, array.unshift());
68 // unshift makes array own 0 and 2...
92 assertEquals(len + 1, array.unshift('head'));
95 // Note that unshift copies values from prototype into the array.
118 // Check that unshift with no args has a side-effect of
143 assertEquals(len, array.unshift());
145 // unshift makes array own 0 and 2...
171 assertEquals(len + 1, array.unshift('head'))
    [all...]
  /external/v8/test/mjsunit/
array-unshift.js 32 assertEquals(13, array.unshift('1st', '2ns', '3rd'));
40 // Check that unshift with no args has a side-effect of
63 assertEquals(len, array.unshift());
68 // unshift makes array own 0 and 2...
92 assertEquals(len + 1, array.unshift('head'));
95 // Note that unshift copies values from prototype into the array.
118 // Check that unshift with no args has a side-effect of
143 assertEquals(len, array.unshift());
145 // unshift makes array own 0 and 2...
171 assertEquals(len + 1, array.unshift('head'))
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/
sha1-armv4-large.pl 175 &BODY_00_15(@V); unshift(@V,pop(@V));
182 &BODY_00_15(@V); unshift(@V,pop(@V));
183 &BODY_16_19(@V); unshift(@V,pop(@V));
184 &BODY_16_19(@V); unshift(@V,pop(@V));
185 &BODY_16_19(@V); unshift(@V,pop(@V));
186 &BODY_16_19(@V); unshift(@V,pop(@V));
194 &BODY_20_39(@V); unshift(@V,pop(@V));
206 &BODY_40_59(@V); unshift(@V,pop(@V));
sha1-s390x.pl 93 unshift(@X,pop(@X));
207 for ($i=0;$i<20;$i++) { &BODY_00_19($i,@V); unshift(@V,pop(@V)); }
211 for (;$i<40;$i++) { &BODY_20_39($i,@V); unshift(@V,pop(@V)); }
215 for (;$i<60;$i++) { &BODY_40_59($i,@V); unshift(@V,pop(@V)); }
219 for (;$i<80;$i++) { &BODY_20_39($i,@V); unshift(@V,pop(@V)); }
  /external/chromium_org/v8/test/webkit/fast/js/
array-functions-non-arrays.js 187 shouldBe("Array.prototype.unshift.call({})", "0");
188 shouldBe("Array.prototype.unshift.call(['b', 'a'])", "2");
189 shouldBe("Array.prototype.unshift.call({ length:2, 0:'b', 1:'a' })", "2");
190 shouldBe("Array.prototype.unshift.call(new TwoItemConstructor)", "2");
191 shouldBe("Array.prototype.unshift.call(x = {}); properties(x)", "'length:0'");
192 shouldBe("Array.prototype.unshift.call(x = ['b', 'a']); properties(x)", "'0:b, 1:a, length:2(DontDelete, DontEnum)'");
193 shouldBe("Array.prototype.unshift.call(x = { length:2, 0:'b', 1:'a' }); properties(x)", "'0:b, 1:a, length:2'");
194 shouldBe("Array.prototype.unshift.call(x = new TwoItemConstructor); properties(x)", "'0:b(FromPrototype), 1:a(FromPrototype), length:2'");
195 shouldBe("Array.prototype.unshift.call({}, 'c')", "1");
196 shouldBe("Array.prototype.unshift.call(['b', 'a'], 'c')", "3")
    [all...]
  /external/openssl/crypto/sha/asm/
sha1-armv4-large.pl 175 &BODY_00_15(@V); unshift(@V,pop(@V));
182 &BODY_00_15(@V); unshift(@V,pop(@V));
183 &BODY_16_19(@V); unshift(@V,pop(@V));
184 &BODY_16_19(@V); unshift(@V,pop(@V));
185 &BODY_16_19(@V); unshift(@V,pop(@V));
186 &BODY_16_19(@V); unshift(@V,pop(@V));
194 &BODY_20_39(@V); unshift(@V,pop(@V));
206 &BODY_40_59(@V); unshift(@V,pop(@V));
sha1-s390x.pl 93 unshift(@X,pop(@X));
207 for ($i=0;$i<20;$i++) { &BODY_00_19($i,@V); unshift(@V,pop(@V)); }
211 for (;$i<40;$i++) { &BODY_20_39($i,@V); unshift(@V,pop(@V)); }
215 for (;$i<60;$i++) { &BODY_40_59($i,@V); unshift(@V,pop(@V)); }
219 for (;$i<80;$i++) { &BODY_20_39($i,@V); unshift(@V,pop(@V)); }
  /external/chromium_org/chrome/common/extensions/docs/examples/api/idle/idle_simple/
background.js 15 history_log.unshift({'state':newstate, 'time':time});
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-2615.js 30 assertThrows("a.unshift(1);", RangeError);
44 assertThrows("a.unshift(4);", TypeError);
53 assertThrows("a.unshift(0);", TypeError);
63 a.unshift(10);
  /external/chromium_org/chrome/renderer/resources/extensions/
chrome_direct_setting.js 11 extendedSchema.unshift({'type': 'string'});
chrome_setting.js 11 extendedSchema.unshift({'type': 'string'});
storage_area.js 11 extendedSchema.unshift({'type': 'string'});
  /build/tools/droiddoc/templates-ds/assets/scroller/
jquery.mousewheel.min.js 12 (function(a){function d(b){var c=b||window.event,d=[].slice.call(arguments,1),e=0,f=!0,g=0,h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(e=-c.detail/3),h=e,c.axis!==undefined&&c.axis===c.HORIZONTAL_AXIS&&(h=0,g=-1*e),c.wheelDeltaY!==undefined&&(h=c.wheelDeltaY/120),c.wheelDeltaX!==undefined&&(g=-1*c.wheelDeltaX/120),d.unshift(b,e,g,h),(a.event.dispatch||a.event.handle).apply(this,d)}var b=["DOMMouseScroll","mousewheel"];if(a.event.fixHooks)for(var c=b.length;c;)a.event.fixHooks[b[--c]]=a.event.mouseHooks;a.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=b.length;a;)this.addEventListener(b[--a],d,!1);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=b.length;a;)this.removeEventListener(b[--a],d,!1);else this.onmousewheel=null}},a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery)

Completed in 1855 milliseconds

1 2 3 4 5 6 7 8