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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/text/
TextBoundaries.cpp 41 TextBreakIterator* it = wordBreakIterator(chars, len); local
44 position = textBreakFollowing(it, position);
51 position = textBreakFollowing(it, position);
56 position = textBreakPreceding(it, position);
63 position = textBreakPreceding(it, position);
72 TextBreakIterator* it = wordBreakIterator(chars, len); local
73 *end = textBreakFollowing(it, position);
75 *end = textBreakLast(it);
76 *start = textBreakPrevious(it);
  /bionic/libc/unistd/
alarm.c 46 struct itimerval it, oitv; local
47 struct itimerval *itp = ⁢
  /external/webkit/WebCore/storage/chromium/
QuotaTracker.cpp 51 HashMap<String, SizeMap>::const_iterator it = m_databaseSizes.find(originIdentifier); local
52 ASSERT(it->second.contains(databaseName));
53 *databaseSize = it->second.get(databaseName);
65 HashMap<String, SizeMap>::iterator it = m_databaseSizes.add(originIdentifier, SizeMap()).first; local
66 it->second.set(databaseName, databaseSize);
  /external/webkit/WebCore/dom/
CheckedRadioButtons.cpp 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
9 * This library is distributed in the hope that it will be useful,
76 NameToInputMap::iterator it = m_nameToCheckedRadioButtonMap->find(element->name().impl()); local
77 if (it == m_nameToCheckedRadioButtonMap->end() || it->second != element)
85 m_nameToCheckedRadioButtonMap->remove(it);
  /external/wpa_supplicant/wpa_gui/
eventhistory.ui.h 25 WpaMsgList::iterator it; local
26 for (it = msgs.begin(); it != msgs.end(); it++) {
27 addEvent(*it);
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
eventhistory.ui.h 25 WpaMsgList::iterator it; local
26 for (it = msgs.begin(); it != msgs.end(); it++) {
27 addEvent(*it);
  /cts/tools/signature-tools/src/signature/converter/dex/
DexFactory.java 39 Iterator<IPackage> it = api.getPackages().iterator(); local
40 while (it.hasNext()) {
41 IPackage aPackage = it.next();
49 it.remove();
  /dalvik/libcore/luni/src/main/java/java/util/
AbstractSet.java 78 Iterator<?> it = iterator(); local
79 while (it.hasNext()) {
80 Object next = it.next();
101 Iterator<?> it = iterator(); local
102 while (it.hasNext()) {
103 if (collection.contains(it.next())) {
104 it.remove();
109 Iterator<?> it = collection.iterator(); local
110 while (it.hasNext()) {
111 result = remove(it.next()) || result
    [all...]
AbstractCollection.java 26 * modifiable collection it's necessary to override the {@code add()} method that
69 * if {@code collection} is {@code null}, or if it contains
75 Iterator<? extends E> it = collection.iterator(); local
76 while (it.hasNext()) {
77 if (add(it.next())) {
85 * Removes all elements from this {@code Collection}, leaving it empty (optional).
94 * it the iterator does not support removing elements from
101 Iterator<E> it = iterator(); local
102 while (it.hasNext()) {
103 it.next()
128 Iterator<E> it = iterator(); local
166 Iterator<?> it = collection.iterator(); local
226 Iterator<?> it = iterator(); local
276 Iterator<?> it = iterator(); local
317 Iterator<?> it = iterator(); local
341 Iterator<?> it = iterator(); local
380 Iterator<?> it = iterator(); local
    [all...]
AbstractSequentialList.java 43 ListIterator<E> it = listIterator(location); local
45 int next = it.nextIndex();
47 it.add(colIt.next());
49 return next != it.nextIndex();
72 ListIterator<E> it = listIterator(location); local
73 E result = it.next();
74 it.remove();
83 ListIterator<E> it = listIterator(location); local
84 if (!it.hasNext()) {
87 E result = it.next()
    [all...]
  /dalvik/libcore/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 75 Iterator<Integer> it = col.iterator(); local
77 while (it.hasNext()) {
78 ss.add(it.next());
80 it = ss.iterator();
81 for (int counter = 0; it.hasNext(); counter++) {
82 int nextValue = it.next().intValue();
97 for (int counter = 0; it.hasNext(); counter++) {
100 objArray[counter] == it.next());
106 for (int counter = 0; it.hasNext(); counter++) {
109 objArray[counter] == it.next())
    [all...]
Support_UnmodifiableMapTest.java 133 Iterator<?> it = keySet.iterator(); local
134 while (it.hasNext()) {
137 keySet.contains(it.next()));
148 for (int counter = 0; it.hasNext(); counter++) {
151 objArray[counter] == it.next());
157 for (int counter = 0; it.hasNext(); counter++) {
160 objArray[counter] == it.next());
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
WeakHashMapTest.java 66 Iterator<Map.Entry<Object, Object>> it = entrySet.iterator(); local
67 while (it.hasNext()) {
68 Map.Entry<Object, Object> entry = it.next();
104 it = entrySet.iterator();
105 while (it.hasNext()) {
106 it.next();
107 it.remove();
109 if (it.hasNext()) {
110 it.next();
118 it = entrySet.iterator()
    [all...]
  /external/gtest/src/
gtest-typed-test.cc 59 for (DefinedTestIter it = defined_test_names_.begin();
60 it != defined_test_names_.end();
61 ++it) {
62 if (name == *it) {
76 for (DefinedTestIter it = defined_test_names_.begin();
77 it != defined_test_names_.end();
78 ++it) {
79 if (tests.count(*it) == 0) {
80 errors << "You forgot to list test " << *it << ".\n"; local
  /external/stlport/test/eh/
test.cpp 8 typename T::const_iterator it; local
10 for(it = coll.begin(); it != coll.end(); ++it) {
11 std::cout << *it << ' '; local
  /frameworks/base/awt/org/apache/harmony/awt/
ReadOnlyIterator.java 32 private final Iterator<E> it; field in class:ReadOnlyIterator
34 public ReadOnlyIterator(Iterator<E> it) {
35 if (it == null) {
38 this.it = it;
47 return it.hasNext();
51 return it.next();
  /frameworks/base/media/libdrm/mobile2/src/rights/
Right.cpp 29 vector<OperationPermission*>::iterator it; local
31 for (it = mOpList.begin(); it != mOpList.end(); it++)
33 delete(*it);
54 for (vector<OperationPermission*>::iterator it = mOpList.begin();
55 it != mOpList.end(); it++)
57 if ((*it)->getType() == type)
69 for (vector<OperationPermission*>::iterator it = mOpList.begin()
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
GeneralNames.java 103 Iterator it = generalNames.iterator(); local
104 while (it.hasNext()) {
105 result.add(((GeneralName) it.next()).getAsList());
160 for (Iterator it=generalNames.iterator(); it.hasNext();) {
162 buffer.append(it.next());
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/icons/
ImageFactory.java 73 // Store the image in the hash, even if this failed. If it fails now, it will fail later.
125 Iterator<Image> it = mImages.values().iterator(); local
126 while(it.hasNext()) {
127 Image img = it.next();
131 it.remove();
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
NoticeReference.java 52 Enumeration it = numbers.elements(); local
54 while (it.hasMoreElements())
56 Integer nm = (Integer) it.nextElement();
103 * instance or from parsing it from a DER-encoded stream.
PolicyMappings.java 49 Enumeration it = mappings.keys(); local
51 while (it.hasMoreElements())
53 String idp = (String) it.nextElement();
  /external/apache-http/src/org/apache/http/impl/client/
DefaultConnectionKeepAliveStrategy.java 60 HeaderElementIterator it = new BasicHeaderElementIterator( local
62 while (it.hasNext()) {
63 HeaderElement he = it.nextElement();
  /external/guava/src/com/google/common/io/
MultiInputStream.java 32 private Iterator<? extends InputSupplier<? extends InputStream>> it; field in class:MultiInputStream
38 * @param it an iterator of I/O suppliers that will provide each substream
41 Iterator<? extends InputSupplier<? extends InputStream>> it)
43 this.it = it;
62 if (it.hasNext()) {
63 in = it.next().getInput();
MultiReader.java 32 private final Iterator<? extends InputSupplier<? extends Reader>> it; field in class:MultiReader
37 this.it = readers;
46 if (it.hasNext()) {
47 current = it.next().getInput();
  /external/opencore/oscl/oscl/osclio/src/
oscl_socket_serv_imp_reqlist.cpp 76 //in the new request queue, it might seem simpler to just complete the
100 Oscl_Vector<OsclSocketRequest*, OsclMemAllocator>::iterator it; local
103 for (it = iAddRequests.begin(); it != iAddRequests.end(); it++)
105 OsclSocketServRequestQElem elem(*it);
112 for (it = iCancelRequests.begin(); it != iCancelRequests.end(); it++)
116 if (iActiveRequests[i].iSocketRequest == *it)
    [all...]

Completed in 1477 milliseconds

1 2 3 4 5 6 7 8 91011>>