HomeSort by relevance Sort by last modified time
    Searched full:rest (Results 51 - 75 of 5718) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
atmppp.h 16 * the first element of the structure is the backend number and the rest
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/
crldump.py 26 key, rest = decoder.decode(substrate, asn1Spec=asn1Spec)
28 if rest: substrate = substrate[:-len(rest)]
pkcs10dump.py 27 cert, rest = decoder.decode(substrate, asn1Spec=certType)
29 if rest: substrate = substrate[:-len(rest)]
pkcs1dump.py 30 key, rest = decoder.decode(substrate, asn1Spec=asn1Spec)
32 if rest: substrate = substrate[:-len(rest)]
pkcs7dump.py 21 contentInfo, rest = decoder.decode(substrate, asn1Spec=rfc2315.ContentInfo())
23 if rest: substrate = substrate[:-len(rest)]
pkcs8dump.py 29 key, rest = decoder.decode(substrate, asn1Spec=asn1Spec)
31 if rest: substrate = substrate[:-len(rest)]
x509dump.py 28 cert, rest = decoder.decode(substrate, asn1Spec=certType)
30 if rest: substrate = substrate[:-len(rest)]
  /external/llvm/test/TableGen/
lisp.td 6 // CHECK-NEXT: list<string> rest = [];
13 // CHECK-NEXT: list<string> rest = ["Dick", "Harry"];
27 list<string> rest = r;
  /packages/apps/TV/common/src/com/android/tv/common/
CollectionUtils.java 32 public static <T> T[] concatAll(T[] first, T[]... rest) {
34 for (T[] array : rest) {
39 for (T[] array : rest) {
  /external/v8/test/mjsunit/es6/
destructuring-assignment.js 237 var result = [, a, , obj.b, , ...obj["rest"]] = value;
242 assertArrayEquals([6, 7, 8, 9], obj.rest);
363 var x, rest, array = [1, 2, 3];
364 assertEquals(array, [x, ...rest] = array);
366 assertEquals([2, 3], rest);
369 assertEquals(array, [, ...rest] = array);
370 assertEquals([5, 6], rest);
439 for ([x.firstLetter, ...x.rest] in object) {
441 assertEquals(["p", "e", "n", "g", "u", "i", "n"], x.rest);
445 assertEquals(["s", "p", "o", "r", "k"], x.rest);
    [all...]
rest-params.js 137 // Strict/Unmapped arguments should always be used for functions with rest
139 assertThrows(function(...rest) { return arguments.caller; }, TypeError);
140 assertThrows(function(...rest) { return arguments.callee; }, TypeError);
143 // assertThrows(function(...rest) { arguments.caller = 1; }, TypeError);
144 // assertThrows(function(...rest) { arguments.callee = 1; }, TypeError);
151 return (function strictF(a, ...rest) {
155 assertArrayEquals([4, 5], rest);
162 function sloppyF(a, ...rest) {
166 assertArrayEquals([4, 5], rest);
207 function(){ eval("function(...rest){'use strict';}") }, SyntaxError)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
named_params.hpp 118 template<typename NP, typename Rest = nil>
120 : Rest
121 , named_parameter_base<named_parameter_combine<NP,Rest> > {
123 typedef named_parameter_combine<NP,Rest> self_type;
126 named_parameter_combine( NP const& np, Rest const& r )
127 : Rest( r )
134 using Rest::operator[];
137 using Rest::has;
140 using Rest::erase;
148 using named_parameter_base<named_parameter_combine<NP,Rest> >::operator,
    [all...]
  /external/valgrind/coregrind/m_sigframe/
sigframe-arm-linux.c 280 //ZZ # define REST(reg,REG) tst->arch.vex.guest_##REG = mc->arm_##reg;
281 //ZZ REST(r0,R0);
282 //ZZ REST(r1,R1);
283 //ZZ REST(r2,R2);
284 //ZZ REST(r3,R3);
285 //ZZ REST(r4,R4);
286 //ZZ REST(r5,R5);
287 //ZZ REST(r6,R6);
288 //ZZ REST(r7,R7);
289 //ZZ REST(r8,R8)
    [all...]
sigframe-arm64-linux.c 256 //ZZ # define REST(reg,REG) tst->arch.vex.guest_##REG = mc->arm_##reg;
257 //ZZ REST(r0,R0);
258 //ZZ REST(r1,R1);
259 //ZZ REST(r2,R2);
260 //ZZ REST(r3,R3);
261 //ZZ REST(r4,R4);
262 //ZZ REST(r5,R5);
263 //ZZ REST(r6,R6);
264 //ZZ REST(r7,R7);
265 //ZZ REST(r8,R8)
    [all...]
  /external/webp/src/dsp/
argb_mips_dsp_r2.c 21 const int rest = len & 1; local
22 const uint32_t* const loop_end = out + len - rest;
40 "beq %[rest], $zero, 1f \n\t"
53 [loop_end]"r"(loop_end), [rest]"r"(rest)
61 const int rest = len & 1; local
63 const uint32_t* const loop_end = out + len - rest;
79 "beq %[rest], $zero, 1f \n\t"
91 [loop_end]"r"(loop_end), [rest]"r"(rest)
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
LineBreakBufferedWriter.java 149 int rest = bufferSize - bufferIndex; local
150 appendToBuffer(buf, off, rest);
153 off += rest;
154 len -= rest;
203 int rest = bufferSize - bufferIndex; local
204 appendToBuffer(s, off, rest);
207 off += rest;
208 len -= rest;
275 int rest = bufferIndex - i; local
276 if (rest > 0)
    [all...]
  /external/clang/test/SemaCXX/
discrim-union.cpp 27 either_impl<Ts...> rest; member in union:detail::either_impl
34 constexpr either_impl(select<N>, U &&u) : rest(select<N-1>(), move(u)) {}
39 return decltype(rest)::index(t) + 1;
44 rest.destroy(elem - 1);
50 template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{})) get(select<N>) {
51 return rest.get(select<N-1>{});
  /external/libbrillo/brillo/dbus/
dbus_param_writer.h 30 const RestOfParams&... rest) {
35 Append(writer, rest...);
49 const RestOfParams&... rest) {
53 AppendDBusOutParams(writer, rest...);
63 const RestOfParams&... rest) {
68 AppendDBusOutParams(writer, rest...);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_check.py 65 # let's see if it detects broken rest
70 # and non-broken rest
71 rest = 'title\n=====\n\ntest'
72 msgs = cmd._check_rst_data(rest)
78 # let's see if it detects broken rest in long_description
93 # and non-broken rest, including a non-ASCII character to test #12114
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_check.py 65 # let's see if it detects broken rest
70 # and non-broken rest
71 rest = 'title\n=====\n\ntest'
72 msgs = cmd._check_rst_data(rest)
78 # let's see if it detects broken rest in long_description
93 # and non-broken rest, including a non-ASCII character to test #12114
  /art/tools/
generate-operator-out.py 139 rest = m.group(2).strip()
140 m_literal = re.compile(r'= (0x[0-9a-f]+|-?[0-9]+|\'.\')').search(rest)
142 rest = rest[(len(m_literal.group(0))):]
146 if rest.startswith('= k'):
150 if rest.startswith(','):
151 rest = rest[1:]
152 rest = rest.strip(
    [all...]
  /build/tools/ijar/
Android.mk 3 # The rest of files in this directory comes from
  /development/ndk/platforms/android-21/arch-x86_64/include/machine/
setjmp.h 7 * will expect the rest to be clobbered anyway.
  /external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
stats.h 16 unsigned int calls; /* Need at least one member, but the rest only if needed. */
  /external/curl/tests/data/
test104 39 REST 0

Completed in 1383 milliseconds

1 23 4 5 6 7 8 91011>>