Searched defs:ip (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/awt/java/awt/image/
H A DImageFilter.java101 * @param ip
104 public void resendTopDownLeftRight(ImageProducer ip) { argument
105 ip.requestTopDownLeftRightResend(this);
H A DPixelGrabber.java59 public PixelGrabber(ImageProducer ip, int x, int y, int w, int h, int[] pix, argument
61 initialize(ip, x, y, w, h, pix, off, scansize, true);
359 private void initialize(ImageProducer ip, int x, int y, int w, int h, argument
362 producer = ip;
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dmemblock.cpp167 const uoff_t ip = start - begin(); local
168 assert (ip <= size());
170 memlink::insert (iat(ip), n);
171 return (iat (ip));
H A Dulist.h49 void splice (iterator ip, list<T>& l, iterator first = NULL, iterator last = NULL);
61 /// Moves the range [first, last) from \p l to this list at \p ip.
63 void list<T>::splice (iterator ip, list<T>& l, iterator first, iterator last) argument
69 insert (ip, first, last);
H A Dumultiset.h81 iterator ip = upper_bound (begin(), end(), v); local
82 return (base_class::insert (ip, v));
H A Duset.h66 iterator ip = lower_bound (begin(), end(), v); local
67 if (ip == end() || v < *ip)
68 ip = base_class::insert (ip, v);
70 *ip = v;
71 return (ip);
88 iterator ip = find (v); local
89 if (ip != end())
90 erase (ip);
[all...]
H A Duiterator.h121 explicit insert_iterator (Container& ctr, iterator ip) : m_rCtr (ctr), m_ip (ip) {} argument
134 inline insert_iterator<Container> inserter (Container& ctr, typename Container::iterator ip) argument
136 return (insert_iterator<Container> (ctr, ip));
H A Dumap.h125 iterator ip = lower_bound (k); local
126 if (ip == end() || k < ip->first)
127 ip = base_class::insert (ip, make_pair (k, V()));
128 return (ip->second);
135 iterator ip = lower_bound (v.first); local
136 if (ip == end() || v.first < ip->first)
137 ip
157 iterator ip = find (k); local
[all...]
H A Dumultimap.h104 iterator ip = const_cast<iterator> (upper_bound (v.first)); local
105 return (base_class::insert (ip, v));
H A Dustring.cpp160 /// Inserts wide character \p c at \p ip \p n times as a UTF-8 string.
162 /// \p ip is a character position, not a byte position, and must fall in
169 void string::insert (const uoff_t ip, wchar_t c, size_type n) argument
171 iterator ipp (utf8_iat (ip));
177 /// Inserts sequence of wide characters at \p ip.
178 void string::insert (const uoff_t ip, const wchar_t* first, const wchar_t* last, const size_type n) argument
180 iterator ipp (utf8_iat (ip));
H A Dustring.h129 void insert (const uoff_t ip, wvalue_type c, size_type n = 1);
130 void insert (const uoff_t ip, const_wpointer first, const_wpointer last, const size_type n = 1);
134 inline void insert (uoff_t ip, const_pointer s, size_type nlen) { insert (iat(ip), s, s + nlen); } argument
135 inline void insert (uoff_t ip, size_type n, value_type c) { insert (iat(ip), c, n); } argument
136 inline void insert (uoff_t ip, const string& s, uoff_t sp, size_type slen) { insert (iat(ip), s.iat(sp), s.iat(sp + slen)); } argument
/frameworks/base/media/libstagefright/codecs/amrnb/common/src/
H A Daz_lsp.cpp385 Word16 i, j, nf, ip;
434 ip = 0; // indicator for f1 or f2
509 if (ip == 0)
511 ip = 1;
516 ip = 0;
570 register Word16 ip; local
628 ip = 0; /* indicator for f1 or f2 */
704 if (ip == 0)
706 ip = 1;
711 ip
[all...]
/frameworks/base/awt/org/apache/harmony/awt/gl/image/
H A DOffscreenImage.java68 public OffscreenImage(ImageProducer ip){ argument
70 src = ip;
/frameworks/base/libs/utils/
H A DCallStack.cpp54 void* ip = (void*)_Unwind_GetIP(context); local
55 if (ip) {
59 state->addrs[0] = ip;
295 const void* ip = mStack[level]; local
296 if (!ip) return res;
302 const char* name = lookup_symbol(ip, &offs, namebuf, sizeof(namebuf));
306 snprintf(tmp1, 32, "0x%p: <", ip);
313 name = MapInfo::mapAddressToName(ip, "<unknown>", &start);
315 long(uintptr_t(ip)-uintptr_t(start)), name);
H A DResourceTypes.cpp1925 size_t ip = grp->packages.size(); local
1926 while (ip > 0) {
1927 ip--;
1929 const Package* const package = grp->packages[ip];
1938 resID, t, e, (int)ip, (int)offset);
2169 size_t ip = grp->packages.size(); local
2170 while (ip > 0) {
2171 ip--;
2173 const Package* const package = grp->packages[ip];
2191 (void*)resID, (int)ip);
[all...]
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java525 private void installFromRawResource(InstallParams ip, argument
529 PackageParser.Package pkg = ip.pkg;
530 Uri packageURI = ip.packageURI;
559 cleanUpInstall(ip);
573 InstallParams ip = new InstallParams(outFileName, rawResId);
574 installFromRawResource(ip, flags, cleanUp, fail, result, expInstallLocation);
575 return ip;
654 InstallParams ip = sampleInstallFromRawResource(flags, false);
659 receiver = new ReplaceReceiver(ip.pkg.packageName);
662 receiver = new InstallReceiver(ip
1048 cleanUpInstall(InstallParams ip) argument
[all...]

Completed in 1599 milliseconds