HomeSort by relevance Sort by last modified time
    Searched refs:end (Results 726 - 750 of 11955) sorted by null

<<21222324252627282930>>

  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_view.h 33 @end
39 @end
bookmark_editor_controller.h 30 @end
34 @end
  /external/chromium/chrome/browser/ui/cocoa/
browser_frame_view.h 57 @end
bubble_view.h 60 @end
66 @end
confirm_quit_panel_controller.h 68 @end
72 @end
page_info_bubble_controller.h 44 @end
48 @end
  /external/chromium/chrome/browser/ui/cocoa/tab_contents/
tab_contents_controller.h 25 @end
73 @end
  /external/chromium/chrome/browser/ui/gtk/
accelerators_gtk.h 27 const_iterator const end() { function in class:AcceleratorsGtk
28 return all_accelerators_.end();
  /external/chromium/googleurl/src/
url_canon_internal_file.h 53 static int FileDoDriveSpec(const CHAR* spec, int begin, int end,
57 int num_slashes = CountConsecutiveSlashes(spec, begin, end);
60 if (!DoesBeginWindowsDriveSpec(spec, after_slashes, end))
81 static void FileDoPath(const CHAR* spec, int begin, int end,
86 int num_slashes = CountConsecutiveSlashes(spec, begin, end);
93 ParsedURL::Component sub_path(after_slashes, end - after_slashes);
142 parsed.path.end(), output);
145 FileDoPath<CHAR, UCHAR>(source.path, after_drive, parsed.path.end(), output);
  /external/chromium/net/base/
ssl_false_start_blacklist.cc 16 const uint32 end = kHashTable[bucket + 1]; local
19 for (size_t i = start; i < end;) {
  /external/chromium/net/tools/flip_server/
balsa_headers_token_utils.cc 31 if (it == headers->header_lines_.end()) {
43 while (it != headers->header_lines_.end());
85 ParseTokenList(header_line->second.begin(), header_line->second.end(),
104 ParseTokenList(header_line->second.begin(), header_line->second.end(),
111 const char* end,
113 if (start == end) {
120 if (start == end) {
130 if (start == end) {
  /external/clang/test/CodeGenCXX/
for-range.cpp 27 B *end();
32 B *end(C&);
43 // CHECK-NOT: 3end
50 // CHECK: br i1 %[[CMP]], label %[[BODY:.*]], label %[[END:.*]]
61 // CHECK: [[END]]:
82 // CHECK: br label %[[END:.*]]
93 // CHECK: [[END]]:
114 // CHECK: br label %[[END:.*]]
125 // CHECK: [[END]]:
  /external/clang/test/PCH/
selector-warning.h 5 @end
24 @end
  /external/doclava/res/assets/templates/
trailer.cs 1 </div> <!-- end body-content --> <?cs # normally opened by header.cs ?>
  /external/guava/guava/src/com/google/common/collect/
DiscreteDomains.java 57 @Override public long distance(Integer start, Integer end) {
58 return (long) end - start;
97 @Override public long distance(Long start, Long end) {
98 long result = end - start;
99 if (end > start && result < 0) { // overflow
102 if (end < start && result > 0) { // underflow
148 @Override public long distance(BigInteger start, BigInteger end) {
149 return start.subtract(end).max(MIN_LONG).min(MAX_LONG).longValue();
  /external/icu4c/common/
uset_imp.h 31 USetAddRange(USet *set, UChar32 start, UChar32 end);
40 USetRemoveRange(USet *set, UChar32 start, UChar32 end);
  /external/llvm/include/llvm/CodeGen/
GCMetadataPrinter.h 59 /// begin/end - Iterate over the collected function metadata.
61 iterator end() { return S->end(); } function in class:llvm::GCMetadataPrinter
  /external/llvm/lib/Support/
DeltaAlgorithm.cpp 35 ie = S.end(); it != ie; ++it, ++idx)
61 ie = Sets.end(); it != ie; ++it)
74 ie = Sets.end(); it != ie; ++it) {
89 Changes.begin(), Changes.end(), it->begin(), it->end(),
93 ComplementSets.insert(ComplementSets.end(), Sets.begin(), it);
94 ComplementSets.insert(ComplementSets.end(), it + 1, Sets.end());
  /external/llvm/lib/Target/NVPTX/
NVPTXAllocaHoisting.cpp 26 for (Function::iterator E = function.end(); I != E; ++I) {
27 for (BasicBlock::iterator BI = I->begin(), BE = I->end(); BI != BE;) {
48 } // end namespace llvm
  /external/mdnsresponder/mDNSShared/
dnssd_ipc.c 66 uint32_t get_uint32(const char **ptr, const char *end)
68 if (!*ptr || *ptr + sizeof(uint32_t) > end)
88 uint16_t get_uint16(const char **ptr, const char *end)
90 if (!*ptr || *ptr + sizeof(uint16_t) > end)
111 int get_string(const char **ptr, const char *const end, char *buffer, int buflen)
121 while (*ptr < end && buffer < lim)
139 const char *get_rdata(const char **ptr, const char *end, int rdlen)
141 if (!*ptr || *ptr + rdlen > end)
  /external/okhttp/src/main/java/libcore/io/
Base64.java 138 int index = 0, end = in.length - in.length % 3; local
139 for (int i = 0; i < end; i += 3) {
147 out[index++] = MAP[(in[end] & 0xff) >> 2];
148 out[index++] = MAP[(in[end] & 0x03) << 4];
153 out[index++] = MAP[(in[end] & 0xff) >> 2];
154 out[index++] = MAP[((in[end] & 0x03) << 4) | ((in[end + 1] & 0xff) >> 4)];
155 out[index++] = MAP[((in[end + 1] & 0x0f) << 2)];
  /external/openssl/apps/
crl2p7.c 169 goto end;
179 goto end;
191 goto end;
201 goto end;
207 goto end;
211 if ((p7=PKCS7_new()) == NULL) goto end;
212 if ((p7s=PKCS7_SIGNED_new()) == NULL) goto end;
217 if (!ASN1_INTEGER_set(p7s->version,1)) goto end;
218 if ((crl_stack=sk_X509_CRL_new_null()) == NULL) goto end;
226 if ((cert_stack=sk_X509_new_null()) == NULL) goto end;
    [all...]
  /external/oprofile/libpp/
sample_container.cpp 42 sample_container::samples_iterator sample_container::end() const function in class:sample_container
44 return samples.end();
58 sample_container::end(symbol_entry const * symbol) const function in class:sample_container
72 if (it != samples.end()) {
105 if (it != samples.end())
138 samples_iterator end = samples.end(); local
139 for (; cit != end; ++cit)
  /external/qemu/memcheck/
memcheck_mmrange_map.h 74 * end - Ending address of a mapping range.
81 target_ulong end);
88 * end - Ending address of a mapping range.
97 target_ulong end,
118 }; /* end of extern "C" */
  /external/quake/quake/src/QW/client/
d_sky.c 38 vec3_t end; local
48 end[0] = 4096*vpn[0] + wu*vright[0] + wv*vup[0];
49 end[1] = 4096*vpn[1] + wu*vright[1] + wv*vup[1];
50 end[2] = 4096*vpn[2] + wu*vright[2] + wv*vup[2];
51 end[2] *= 3;
52 VectorNormalize (end);
55 *s = (int)((temp + 6*(SKYSIZE/2-1)*end[0]) * 0x10000);
56 *t = (int)((temp + 6*(SKYSIZE/2-1)*end[1]) * 0x10000);
100 // calculate s and t at far end of span,

Completed in 904 milliseconds

<<21222324252627282930>>