HomeSort by relevance Sort by last modified time
    Searched defs:it (Results 876 - 900 of 1441) sorted by null

<<31323334353637383940>>

  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 57 // Pass to appropriate stream according to pid, and set event if it's a PES
172 // Feed the payload into mQueue and if a packet is identified, queue it
339 Vector<int32_t>::iterator it = newPIDs.begin(); local
341 // change the PID of the stream, and add it back
342 temp.editValueAt(i)->setPID(*it);
346 newPIDs.erase(it);
394 // variable length section of ES_infos. It does not include the
501 // We only have the lower 33-bit of the PTS. It could overflow within a
515 // Clamp it to 0 as rest of the pipeline doesn't take negative pts.
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreSpi.java 66 * it can be created via the {@link java.security.KeyStore#getInstance(String)
124 final Iterator<X509Certificate> it = caChain.iterator(); local
126 while (it.hasNext()) {
127 caList[i++] = it.next();
195 // the public key in this certificate, but it does not for some reason. It's probably a
389 * If we have a chain, store it in the CA certificate slot for this
577 // KeyStore-backed secret key. It cannot be duplicated into another entry and cannot
    [all...]
  /frameworks/base/media/java/android/media/tv/
TvInputManager.java 120 * Time shifting is currently available. In this status, the application assumes it can
132 * normal operation mode. It is mostly relevant to hardware inputs such as HDMI input. This is
144 * mode. It is mostly relevant to hardware inputs such as HDMI input.
153 * <p>This state indicates that a source device is disconnected from the input port. It is
300 * This is invoked when the video size has been changed. It is also called when the first
591 * <p>Normally it happens when the user installs a new TV input package that implements
602 * <p>Normally it happens when the user uninstalls the previously installed TV input
613 * <p>Normally it happens when a previously installed TV input package is re-installed or
    [all...]
  /frameworks/base/media/jni/
android_media_ImageReader.cpp 179 // Return a LockedBuffer pointer and remove it from the list
180 List<CpuConsumer::LockedBuffer*>::iterator it = mBuffers.begin(); local
181 CpuConsumer::LockedBuffer* buffer = *it;
182 mBuffers.erase(it);
194 // Return an opaque buffer pointer and remove it from the list
195 List<BufferItem*>::iterator it = mOpaqueBuffers.begin(); local
196 BufferItem* buffer = *it;
197 mOpaqueBuffers.erase(it);
219 for (List<CpuConsumer::LockedBuffer *>::iterator it = mBuffers.begin();
220 it != mBuffers.end(); it++)
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
WifiTracker.java 172 * Resume scanning for wifi networks after it has been paused.
268 for (Iterator<Map.Entry<String, Integer>> it = mSeenBssids.entrySet().iterator();
269 it.hasNext(); /* nothing */) {
270 Map.Entry<String, Integer> e = it.next();
275 it.remove();
302 // Clear out the configs so we don't think something is saved when it isn't.
376 /* SSID match is not going to work for it; so update explicitly */
  /frameworks/base/services/core/java/com/android/server/job/
JobStore.java 120 * Add a job to the master list, persisting it if necessary. If the JobStatus already exists,
121 * it will be replaced.
159 * Remove the provided job. Will also delete the job if it was persisted.
188 Iterator<JobStatus> it = mJobSet.iterator(); local
189 while (it.hasNext()) {
190 JobStatus ts = it.next();
204 Iterator<JobStatus> it = mJobSet.iterator(); local
205 while (it.hasNext()) {
206 JobStatus ts = it.next();
220 Iterator<JobStatus> it = mJobSet.iterator() local
    [all...]
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalService.java 236 // add the dummy value for TOFF now. update it once meta tag parsed
437 // Consider it as if we have only one 'Default' Profile.
499 // Set it to true so that we don't write ThermalManager.DISABLE_DYNAMIC_TURBO
576 Iterator it = ThermalManager.sProfileZoneMap.entrySet().iterator(); local
577 while (it.hasNext()) {
578 Map.Entry entry = (Map.Entry) it.next();
  /hardware/qcom/camera/QCamera2/HAL3/
QCamera3Channel.cpp 515 * @name : 1 if it is ISP output/pproc input, 2 if it is pproc output
976 * start it
2445 List<uint32_t>::iterator it = mFreeBufferList.begin(); local
3117 List<OfflineBuffer>::iterator it = mOfflineBuffers.begin(); local
3142 List<OfflineBuffer>::iterator it = mOfflineMetaBuffers.begin(); local
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ConcurrentHashMapTest.java 400 Iterator it = s.iterator(); local
401 while (it.hasNext()) {
402 Map.Entry e = (Map.Entry) it.next();
798 // Unless it happens to be first (in which case remainder of
  /libcore/luni/src/main/java/java/security/
Provider.java 198 Iterator<? extends Map.Entry<?, ?>> it = t.entrySet().iterator(); local
201 while (it.hasNext()) {
202 Map.Entry<?, ?> entry = it.next();
245 * ,or {@code null} if it did not have one.
380 for (Iterator<Service> it = getServices().iterator(); it.hasNext();) {
381 service = it.next();
472 * same name was registered via this method, it is replace.
592 for (Iterator<Service> it = propertyServiceTable.values().iterator(); it
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state_utils.cpp 261 // Cannot calculate speed; thus, it gives an average value (1.0);
338 for (NearKeysDistanceMap::const_iterator it = prevNearKeysDistances->begin();
339 it != prevNearKeysDistances->end(); ++it) {
340 NearKeysDistanceMap::const_iterator itPP = prevPrevNearKeysDistances->find(it->first);
341 NearKeysDistanceMap::const_iterator itC = currentNearKeysDistances->find(it->first);
343 || itPP->second > it->second + ProximityInfoParams::MARGIN_FOR_PREV_LOCAL_MIN);
345 || itC->second > it->second + ProximityInfoParams::MARGIN_FOR_PREV_LOCAL_MIN);
422 // Pop previous point because it would be useless.
434 // This point is not used because it's too close to the previous point
808 std::unordered_map<int, float>::iterator it = (*charProbabilities)[i].find(j); local
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
PhoneAccountRegistrar.java 144 // TODO: This file path is subject to change -- it is storing the phone account registry
163 * Retrieves the subscription id for a given phone account if it exists. Subscription ids
168 * @return The value of the subscription id or -1 if it does not exist or is not valid.
193 // If there is a default PhoneAccount, ensure it supports calls to handles with the
216 * @return The user-selected outgoing {@link PhoneAccount}, or null if it hasn't been set (or
217 * if it was set by another user).
299 // Get the default dialer in case it has a connection manager associated with it.
396 // If this PhoneAccount has CAPABILITY_MULTI_USER, it should be visible to all users and
527 // !!! IMPORTANT !!! It is important that we do not read the enabled state that th
568 Iterator<PhoneAccount> it = mState.accounts.iterator(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
pat_trie_base.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
660 inode_iterator it = p_parent->begin(); local
661 while (*it != p_nd)
662 ++it;
664 inode_iterator next_it = it;
674 inode_iterator it = p_parent->begin(); local
675 if (*it == p_nd
915 typename Inode::iterator it = inp->begin(); local
980 typename Inode::iterator it = local
1304 iterator it = begin(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
pat_trie_base.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
660 inode_iterator it = p_parent->begin(); local
661 while (*it != p_nd)
662 ++it;
664 inode_iterator next_it = it;
674 inode_iterator it = p_parent->begin(); local
675 if (*it == p_nd
915 typename Inode::iterator it = inp->begin(); local
980 typename Inode::iterator it = local
1304 iterator it = begin(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pat_trie_/
pat_trie_base.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
660 inode_iterator it = p_parent->begin(); local
661 while (*it != p_nd)
662 ++it;
664 inode_iterator next_it = it;
674 inode_iterator it = p_parent->begin(); local
675 if (*it == p_nd
915 typename Inode::iterator it = inp->begin(); local
980 typename Inode::iterator it = local
1304 iterator it = begin(); local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/pat_trie_/
pat_trie_base.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
660 inode_iterator it = p_parent->begin(); local
661 while (*it != p_nd)
662 ++it;
664 inode_iterator next_it = it;
674 inode_iterator it = p_parent->begin(); local
675 if (*it == p_nd
915 typename Inode::iterator it = inp->begin(); local
980 typename Inode::iterator it = local
1304 iterator it = begin(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/pat_trie_/
pat_trie_base.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
660 inode_iterator it = p_parent->begin(); local
661 while (*it != p_nd)
662 ++it;
664 inode_iterator next_it = it;
674 inode_iterator it = p_parent->begin(); local
675 if (*it == p_nd
915 typename Inode::iterator it = inp->begin(); local
980 typename Inode::iterator it = local
1304 iterator it = begin(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/pat_trie_/
pat_trie_base.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
660 inode_iterator it = p_parent->begin(); local
661 while (*it != p_nd)
662 ++it;
664 inode_iterator next_it = it;
674 inode_iterator it = p_parent->begin(); local
675 if (*it == p_nd
915 typename Inode::iterator it = inp->begin(); local
980 typename Inode::iterator it = local
1304 iterator it = begin(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/pat_trie_/
pat_trie_base.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
660 inode_iterator it = p_parent->begin(); local
661 while (*it != p_nd)
662 ++it;
664 inode_iterator next_it = it;
674 inode_iterator it = p_parent->begin(); local
675 if (*it == p_nd
915 typename Inode::iterator it = inp->begin(); local
980 typename Inode::iterator it = local
1304 iterator it = begin(); local
    [all...]
  /prebuilts/tools/common/gradle-plugins/repository/com/android/tools/internal/internal-plugins/1.1/
internal-plugins-1.1.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManager.java 83 * It holds (and can be asked about) the set of selected items, and it also has
87 * This class implements {@link ISelectionProvider} so that it can delegate
91 * manager so that it can invoke its own fireSelectionChanged when the canvas'
98 /** The current selection list. The list is never null, however it can be empty. */
201 * Sets the selection. It must be an {@link ITreeSelection} where each segment
207 * changed. Typically it means the outline selection has changed and we're
253 // This view info is already selected. Remove it from the
254 // oldSelected list so that we don't deselect it later.
257 // This view info is not already selected. Select it now
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 458 Iterator<MergeCookie> it = cookies.iterator(); local
461 ViewInfo childView = new ViewInfo("childView" + i, it.next(), 0, i * 20, 50,
647 // childView1 should have been removed since it has the wrong merge cookie
    [all...]
  /system/extras/perfprofd/quipper/
perf_reader.cc 30 // If the buffer is read-only, it is not sufficient to mark the previous struct
116 // it conforms to the same ABI (bitfield layout is not completely specified by
158 // In this case, if |event| is non-null, it will be freed.
182 // It is guaranteed that we are changing the filename - otherwise, the old
670 // Check if it is normal perf data.
678 // Otherwise it is piped data.
686 std::map<string, string>::const_iterator it; local
687 for (it = build_ids_to_filenames.begin();
688 it != build_ids_to_filenames.end();
689 ++it) {
1591 const auto it = filename_map.find(filename); local
    [all...]
  /system/netd/server/
BandwidthController.cpp 22 * If they ever were to allow it, then netd/ would need some tweaking.
70 * - when an interface is marked as costly it should be INSERTED into the INPUT/OUTPUT chains.
103 * E.g Adding an app, it has to preserve the appened bw_happy_box, so "-I":
413 std::list<int /*uid*/>::iterator it; local
440 for (it = specialAppUids.begin(); it != specialAppUids.end(); it++) {
441 if (*it == uid)
444 bool found = (it != specialAppUids.end());
451 specialAppUids.erase(it);
603 std::list<std::string>::iterator it; local
669 std::list<std::string>::iterator it; local
710 std::list<QuotaInfo>::iterator it; local
807 std::list<QuotaInfo>::iterator it; local
1017 std::list<QuotaInfo>::iterator it; local
1042 std::list<QuotaInfo>::iterator it; local
    [all...]
CommandListener.cpp 496 TtyCollection::iterator it; local
498 for (it = tlist->begin(); it != tlist->end(); ++it) {
499 cli->sendMsg(ResponseCode::TtyListResult, *it, false);
592 InterfaceCollection::iterator it; local
593 for (it = ilist->begin(); it != ilist->end(); ++it) {
594 cli->sendMsg(ResponseCode::TetherInterfaceListResult, *it, false)
602 NetAddressCollection::iterator it; local
    [all...]

Completed in 1050 milliseconds

<<31323334353637383940>>