HomeSort by relevance Sort by last modified time
    Searched defs:rest (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/nist-sip/java/gov/nist/javax/sip/parser/
CallIDParser.java 74 String rest = lexer.getRest(); local
75 callID.setCallId(rest.trim());
  /external/oprofile/libabi/tests/
abi_test.cpp 40 vector<string> rest; local
41 popt::parse_options(argc, argv, rest);
  /external/libmtp/examples/
newplaylist.c 44 char *rest; local
59 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
thumb.c 52 char *rest; local
63 id = strtoul(optarg, &rest, 0);
albumart.c 54 char *rest; local
70 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
pathutils.c 65 char *rest; local
70 item_id = strtoul(path, &rest, 0);
71 // really should check contents of "rest" here...
  /external/chromium/net/ftp/
ftp_util_unittest.cc 116 const char* rest; member in struct:__anon4051::__anon4055
159 kTestCases[i].rest));
164 UTF8ToUTF16(kTestCases[i].rest), mock_current_time, &time));
  /external/qemu/
keymaps.c 127 const char *rest = end_of_keysym + 1; local
129 int keycode = strtol(rest, &rest2, 0);
131 if (rest && strstr(rest, "numlock")) {
  /system/core/toolbox/
umount.c 34 char rest[256]; local
45 count = fscanf(f, "%255s %255s %255s\n", device, mount_path, rest);
  /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/grub/stage2/
fsys_ffs.c 185 char *rest, ch; local
228 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
230 *rest = 0;
247 *rest = ch;
261 *rest = ch;
286 *(dirname = rest) = ch;
fsys_ufs2.c 209 char *rest, ch; local
253 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
255 *rest = 0;
268 *rest = ch;
282 *rest = ch;
307 *(dirname = rest) = ch;
fsys_fat.c 294 char *rest, ch, dir_buf[FAT_DIRENTRY_LENGTH]; local
343 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
345 *rest = 0;
370 *rest = ch;
476 *(dirname = rest) = ch;
fsys_jfs.c 275 char *ptr, *rest, ch; local
332 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
333 *rest = 0;
370 *(dirname = rest) = ch;
379 *rest = ch;
  /cts/tests/tests/text/src/android/text/style/cts/
LeadingMarginSpan_StandardTest.java 46 int rest = 5; local
48 Standard standard = new LeadingMarginSpan.Standard(first, rest);
50 assertEquals(rest, standard.getLeadingMargin(false));
  /external/bluetooth/glib/gio/
glocalvfs.c 136 char *rest; local
175 rest = NULL;
177 rest = g_filename_from_utf8 (user_end, -1, NULL, NULL, NULL);
179 filename = g_build_filename (user_prefix, rest, NULL);
180 g_free (rest);
gmemoryinputstream.c 276 gsize offset, start, rest, size; local
295 rest = count;
297 for (; l && rest > 0; l = l->next)
300 size = MIN (rest, chunk->len - start);
302 memcpy ((guint8 *)buffer + (count - rest), chunk->data + start, size);
303 rest -= size;
  /external/linux-tools-perf/util/
parse-options.c 208 const char *rest; local
214 rest = skip_prefix(arg, options->long_name);
216 if (!rest)
218 if (*rest == '=')
220 if (*rest)
225 if (!rest) {
254 rest = skip_prefix(arg + 3, options->long_name);
256 if (!rest && !prefixcmp(options->long_name, arg + 3))
258 if (!rest)
261 if (*rest) {
    [all...]
  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 120 String rest = lexer.getRest(); local
122 if(rest == null || rest.length() == 0){
129 int stripLen = rest.indexOf(']');
  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContentImpl.java 122 String rest = nextPart.substring(position + off); local
124 if (rest == null)
126 // logger.debug("rest = [[" + rest + "]]");
128 ContentImpl content = new ContentImpl(rest, boundary);
  /libcore/luni/src/main/java/java/lang/
IntegralToString.java 378 int rest = ((int) ((n - midDigit) >>> 1)) * 0xCCCCCCCD; local
379 cursor = intIntoCharArray(buf, cursor, rest);
  /external/guava/guava/src/com/google/common/collect/
Lists.java 226 * rest} array will be reflected in the returned list. Unlike {@link
236 * @param rest an array of additional elements, possibly empty
239 public static <E> List<E> asList(@Nullable E first, E[] rest) {
240 return new OnePlusArrayList<E>(first, rest);
247 final E[] rest; field in class:Lists.OnePlusArrayList
249 OnePlusArrayList(@Nullable E first, E[] rest) {
251 this.rest = checkNotNull(rest);
254 return rest.length + 1;
259 return (index == 0) ? first : rest[index - 1]
291 final E[] rest; field in class:Lists.TwoPlusArrayList
    [all...]
  /external/openssl/crypto/bio/
bss_bio.c 190 size_t rest; local
233 rest = size;
235 assert(rest > 0);
240 assert(rest <= peer_b->len);
241 if (peer_b->offset + rest <= peer_b->size)
242 chunk = rest;
262 assert(chunk == rest);
265 rest -= chunk;
267 while (rest);
355 size_t rest; local
    [all...]
  /external/v8/src/
fast-dtoa.cc 60 // * rest = (too_high - buffer * 10^kappa).f() * unit
70 uint64_t rest,
92 // . . . . rest
143 // Conceptually rest ~= too_high - buffer
146 ASSERT(rest <= unsafe_interval);
147 while (rest < small_distance && // Negated condition 1
148 unsafe_interval - rest >= ten_kappa && // Negated condition 2
149 (rest + ten_kappa < small_distance || // buffer{-1} > w_high
150 small_distance - rest >= rest + ten_kappa - small_distance))
441 uint64_t rest = local
556 uint64_t rest = local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/
BodyDescriptor.java 156 String rest; local
159 rest = null;
162 rest = headerValue.substring(main.length() + 1);
166 if (rest != null) {
167 char[] chars = rest.toCharArray();

Completed in 649 milliseconds

1 2 3 4