HomeSort by relevance Sort by last modified time
    Searched refs:last (Results 151 - 175 of 1729) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-complex-sea-machine.hh 101 if (0) fprintf (stderr, "syllable %d..%d %s\n", last, p+1, #syllable_type); \
102 for (unsigned int i = last; i < p+1; i++) \
104 last = p+1; \
130 unsigned int last = 0; local
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_linkage.c 121 int last = -1; local
130 last = i;
133 if(last < efficient_slots)
138 else if((last - first) < efficient_slots)
  /external/clang/test/Index/
complete-exprs.cpp 15 vector(InputIterator first, InputIterator last);
61 // CHECK-CC1: FunctionTemplate:{ResultType void}{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder InputIterator first}{Comma , }{Placeholder InputIterator last}{RightParen )} (50)
75 // CHECK-CC3: FunctionTemplate:{ResultType void}{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder InputIterator first}{Comma , }{Placeholder InputIterator last}{RightParen )} (50)
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-sea-machine.hh 101 if (0) fprintf (stderr, "syllable %d..%d %s\n", last, p+1, #syllable_type); \
102 for (unsigned int i = last; i < p+1; i++) \
104 last = p+1; \
130 unsigned int last = 0; local
  /external/libcxx/test/support/
nasty_containers.hpp 38 template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, last) {}
45 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); }
109 iterator insert(const_iterator pos, InputIterator first, InputIterator last)
110 { return v_.insert(pos, first, last); }
117 iterator erase(const_iterator first, const_iterator last) { return v_.erase(first, last); }
160 nasty_list(Iter first, Iter last) : l_(first, last) {}
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_linkage.c 121 int last = -1; local
130 last = i;
133 if(last < efficient_slots)
138 else if((last - first) < efficient_slots)
  /external/openssl/crypto/perlasm/
ppc-xlate.pl 25 last;
28 last;
32 last;
44 last;
118 # GNU assembler can't handle extrdi rA,rS,16,48, or when sum of last two
  /development/apps/Development/src/com/android/development/
MediaScannerActivity.java 204 * and last name.
236 String last = getRandomWord(3);
239 if (!last.startsWith("Di")) {
240 last = "di " + last;
244 last = "van " + last;
247 last = "de " + last;
250 return first + " " + last;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlnsstack.cc 150 size_t last = len; local
151 while (last > 0) {
152 last -= 1;
153 if (IsAsciiLetter(ns[last])) {
154 size_t first = last;
155 last += 1;
161 if (last - first > 4)
162 last = first + 3;
163 std::string candidate(AsciiLower(ns.substr(first, last - first)));
  /external/chromium_org/third_party/webrtc/libjingle/xmllite/
xmlnsstack.cc 133 size_t last = len; local
134 while (last > 0) {
135 last -= 1;
136 if (IsAsciiLetter(ns[last])) {
137 size_t first = last;
138 last += 1;
144 if (last - first > 4)
145 last = first + 3;
146 std::string candidate(AsciiLower(ns.substr(first, last - first)));
  /external/guava/guava/src/com/google/common/collect/
RegularContiguousSet.java 70 final C last = last();
74 return equalsOrThrow(previous, last) ? null : domain.next(previous);
91 @Override public C last() { method
96 long distance = domain.distance(first(), last());
137 C upperEndpoint = Ordering.natural().min(this.last(), other.last());
160 && this.last().equals(that.last());
  /external/e2fsprogs/lib/blkid/
devname.c 404 int which = 0, last = 0; local
428 last = which;
466 * If last was a whole disk and we just found a partition
470 if (lens[last] && !strncmp(ptnames[last], ptname, lens[last])) {
477 if (tmp->bid_devno == devs[last]) {
486 lens[last] = 0;
489 * If last was not checked because it looked like a whole-disk
491 * check last as well
    [all...]
  /external/chromium_org/third_party/libxml/src/
nanohttp.c 151 int last; /* return code for last operation */ member in struct:xmlNanoHTTPCtxt
536 ctxt->last = -1;
562 ctxt->last = -1;
569 ctxt->last = recv(ctxt->fd, ctxt->inptr, XML_NANO_HTTP_CHUNK, 0);
570 if (ctxt->last > 0) {
571 ctxt->inptr += ctxt->last;
572 return (ctxt->last);
574 if (ctxt->last == 0) {
577 if (ctxt->last == -1)
732 const xmlChar *charset, *last, *mime; local
758 const xmlChar *charset, *last, *mime; local
    [all...]
  /external/libxml2/
nanohttp.c 146 int last; /* return code for last operation */ member in struct:xmlNanoHTTPCtxt
541 ctxt->last = -1;
567 ctxt->last = -1;
574 ctxt->last = recv(ctxt->fd, ctxt->inptr, XML_NANO_HTTP_CHUNK, 0);
575 if (ctxt->last > 0) {
576 ctxt->inptr += ctxt->last;
577 return (ctxt->last);
579 if (ctxt->last == 0) {
582 if (ctxt->last == -1)
737 const xmlChar *charset, *last, *mime; local
763 const xmlChar *charset, *last, *mime; local
    [all...]
  /external/chromium_org/third_party/zlib/
infback.c 257 code last; /* parent table entry */ local
271 state->last = 0;
280 /* Inflate until end of block marked as last */
285 if (state->last) {
291 state->last = BITS(1);
296 state->last ? " (last)" : ""));
302 state->last ? " (last)" : ""));
307 state->last ? " (last)" : ""))
    [all...]
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 313 THREAD_LOCAL struct timeval last = {0, 0}; local
358 last.tv_sec = tv1;
359 last.tv_usec = tv2;
364 if ((last.tv_sec == 0) && (last.tv_usec == 0)) {
367 gettimeofday(&last, 0);
368 last.tv_sec--;
373 if ((tv.tv_sec < last.tv_sec) ||
374 ((tv.tv_sec == last.tv_sec) &&
375 (tv.tv_usec < last.tv_usec)))
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/examples/id/
id.pl 17 last if $token->get_type() == IDLexer->EOF;
  /external/chromium_org/chrome/browser/extensions/
blob_reader.cc 62 int64 first = 0, last = 0, length = 0; local
64 source->GetResponseHeaders()->GetContentRange(&first, &last, &length);
  /external/chromium_org/chrome/browser/resources/chromeos/first_run/
step.css 38 .step .controls button:last-of-type {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
QuotesData.cpp 53 return m_quotePairs.last().first;
63 return m_quotePairs.last().second;
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
sse.c 73 GLfloat *last,
79 GLfloat *last,
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prprf.h 81 ** "append" sprintf into a PR_MALLOC'd buffer. "last" is the last value of
82 ** the PR_MALLOC'd buffer. sprintf will append data to the end of last,
83 ** growing it as necessary using realloc. If last is NULL, PR_sprintf_append
85 ** last for subsequent calls, or NULL if there is a malloc failure.
87 NSPR_API(char*) PR_sprintf_append(char *last, const char *fmt, ...);
110 NSPR_API(char*) PR_vsprintf_append(char *last, const char *fmt, va_list ap);
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_mathops.c 101 opus_int32 min_d,max_d,last,chk; local
103 last=min_d=32767;
109 d = last - q;
112 last = q;
125 opus_int32 min_d,max_d,last,chk; local
127 last=min_d=15059;
135 d = last - q;
140 last = q;
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_format_vp8_test_helper.cc 74 bool last = false;
79 EXPECT_TRUE(packetizer->NextPacket(buffer_, &send_bytes, &last));
80 CheckPacket(send_bytes, expected_sizes[i], last,
83 EXPECT_TRUE(last);
230 // Verify that the input variable "last" agrees with the position of data_ptr_.
232 // we are at the end and last should be true. Otherwise, it should be false.
233 void RtpFormatVp8TestHelper::CheckLast(bool last) const {
234 EXPECT_EQ(last, data_ptr_ == payload_data_ + payload_size_);
238 // the header, payload, and "last" flag.
241 bool last,
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/css/
processes.css 20 #ps-tracer-dialog > div > :last-child {

Completed in 469 milliseconds

1 2 3 4 5 67 8 91011>>