HomeSort by relevance Sort by last modified time
    Searched defs:pair (Results 226 - 250 of 938) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/lzma/CPP/7zip/UI/Common/
Update.cpp 1441 CRefSortPair pair; local
    [all...]
ArchiveCommandLine.cpp 343 CRenamePair &pair = renamePairs->AddNew(); local
344 pair.OldName = oldName;
345 pair.NewName = newName;
346 pair.RecursedType = type;
347 pair.WildcardParsing = wildcardMatching;
349 if (!pair.Prepare())
352 val += pair.OldName;
354 val += pair.NewName;
429 throw CArcCmdLineException("There is no second file name for rename pair:", nonSwitchStrings[oldIndex]);
641 NWildcard::CPair &pair = censor.Pairs[i]; local
884 const CCodePagePair &pair = g_CodePagePairs[i]; local
    [all...]
  /external/mksh/src/
histrap.c 998 const struct mksh_sigpair *pair; local
1009 pair = mksh_sigpairs;
1010 while ((pair->nr != i) && (pair->name != NULL))
1011 ++pair;
1012 cs = pair->name;
    [all...]
  /external/skia/src/core/
SkGeometry.cpp 616 * Given an array and count, remove all pair-wise duplicates from the array,
841 SkDCubicPair pair = cubic.chopAt(roots[0]); local
843 dst[i] = pair.pts[i].asSkPoint();
980 SkConic pair[2]; local
981 if (this->chopAt(t1 ? t1 : t2, pair)) {
982 *dst = pair[SkToBool(t1)];
    [all...]
  /external/v8/src/
messages.cc 227 Handle<AccessorPair> pair = Handle<AccessorPair>::cast(accessors); local
228 return pair->getter() == *fun || pair->setter() == *fun;
    [all...]
code-stubs.cc 752 Node* pair = local
755 Node* overflow = assembler->Projection(1, pair);
773 assembler->Projection(0, pair)));
958 Node* pair = local
1704 Node* pair = assembler->IntPtrAddWithOverflow( local
1844 Node* pair = assembler->IntPtrSubWithOverflow( local
    [all...]
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 49 /** Timeout for pair/unpair in ms. */
728 public void pair(BluetoothAdapter adapter, BluetoothDevice device, int passkey, byte[] pin) { method in class:BluetoothTestUtils
747 * Helper method used by {@link #pair(BluetoothAdapter, BluetoothDevice, int, byte[])} and
748 * {@link #acceptPair(BluetoothAdapter, BluetoothDevice, int, byte[])} to either pair or accept
755 * @param shouldPair Whether to pair or accept the pair.
763 methodName = String.format("pair(device=%s)", device);
    [all...]
  /frameworks/base/media/java/android/media/tv/
TvInputInfo.java 1028 String[] pair = pairString.split(CUSTOM_NAME_SEPARATOR); local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java 35 import com.android.util.Pair;
93 private final static Map<Integer, Pair<ResourceType, String>> sRMap =
94 new HashMap<Integer, Pair<ResourceType, String>>();
298 sRMap.put(value, Pair.of(resType, f.getName()));
392 sRMap.put(attrValue, Pair.of(ResourceType.ATTR, attrName));
395 sRMap.put(index, Pair.of(ResourceType.STYLEABLE, name));
581 * @return a Pair containing the resource type and name, or null if the id
584 public static Pair<ResourceType, String> resolveResourceId(int value) {
585 Pair<ResourceType, String> pair = sRMap.get(value) local
    [all...]
  /frameworks/opt/net/voip/src/jni/rtp/
AudioGroup.cpp 589 int pair[2]; local
590 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, pair)) {
594 mDeviceSocket = pair[0];
598 if (!mChain->set(AudioStream::NORMAL, pair[1], NULL, NULL,
600 close(pair[1]);
609 if (setsockopt(pair[0], SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv))) {
618 if (epoll_ctl(mEventQueue, EPOLL_CTL_ADD, pair[1], &event)) {
624 ALOGD("stream[%d] joins group[%d]", pair[1], pair[0]);
  /frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/util/
SortedListTest.java 40 List<Pair> mAdditions = new ArrayList<Pair>();
41 List<Pair> mRemovals = new ArrayList<Pair>();
42 List<Pair> mMoves = new ArrayList<Pair>();
43 List<Pair> mUpdates = new ArrayList<Pair>();
75 mAdditions.add(new Pair(position, count));
83 mRemovals.add(new Pair(position, count))
805 Pair pair = (Pair) o; local
    [all...]
  /hardware/interfaces/camera/device/3.2/default/
CameraDeviceSession.cpp 312 for (const auto& pair : mBatchBufs) {
313 if (!pair.second.mDelivered) {
350 std::pair<int, std::shared_ptr<CameraDeviceSession::ResultBatcher::InflightBatch>>
535 for (auto& pair : batch->mResultMds) {
536 uint32_t partialIdx = pair.first;
541 InflightBatch::MetadataBatch& mb = pair.second;
577 auto pair = getBatch(frameNumber); local
578 int batchIdx = pair.first;
608 std::shared_ptr<InflightBatch> batch = pair.second;
667 auto pair = getBatch(result.frameNumber) local
    [all...]
  /packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
BluetoothDeviceListAdapter.java 29 import android.util.Pair;
190 Pair<Integer, String> pair = getBtClassDrawableWithDescription(bluetoothDevice); local
191 holder.mIcon.setImageResource(pair.first);
361 private Pair<Integer, String> getBtClassDrawableWithDescription(
367 return new Pair<>(R.drawable.ic_bt_laptop, mComputerDescription);
370 return new Pair<>(R.drawable.ic_bt_cellphone, mPhoneDescription);
373 return new Pair<>(HidProfile.getHidClassDrawable(btClass),
377 return new Pair<>(R.drawable.ic_bt_imaging, mImagingDescription);
390 return new Pair<Integer, String>(resId, null)
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/
InCallActivityCommon.java 42 import android.util.Pair;
506 Pair<Dialog, CharSequence> pair = local
508 showErrorDialog(pair.first, pair.second);
510 Pair<Dialog, CharSequence> pair = getDisconnectErrorDialog(inCallActivity, cause); local
511 showErrorDialog(pair.first, pair.second);
566 private static Pair<Dialog, CharSequence> getDisconnectErrorDialog
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 46 import com.android.utils.Pair;
159 Pair<Node, Node> context = DomUtilities.getNodeContext(viewer.getDocument(), offset);
559 * - Pair of Strings: the first value is the keyword to insert, and the second value
610 } else if (choice instanceof Pair<?, ?>) {
612 Pair<String, String> pair = (Pair<String, String>) choice; local
613 keyword = pair.getFirst();
614 tooltip = pair.getSecond();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
Configuration.java 57 import com.android.utils.Pair;
806 Pair<Locale, IAndroidTarget> pair = loadRenderState(mConfigChooser); local
807 if (pair != null) {
810 mLocale = pair.getFirst();
812 mTarget = pair.getSecond();
835 * @return a pair of a locale and a render target
838 static Pair<Locale, IAndroidTarget> loadRenderState(ConfigurationChooser chooser) {
896 return Pair.of(locale, target);
899 return Pair.of(Locale.ANY, ConfigurationMatcher.findDefaultRenderTarget(chooser))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 48 import com.android.utils.Pair;
613 * The selection can also be set to a {@link Pair} of {@link IProject} and a workspace
677 } else if (element instanceof Pair<?,?>) {
678 // Pair of Project/String
680 Pair<IProject,String> pair = (Pair<IProject,String>)element; local
682 targetProject = pair.getFirst();
683 targetWsFolderPath = pair.getSecond();
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/util/config/
OptionSetter.java 349 MapEntry pair = null; local
351 pair = ((MapHandler) handler).translate(keyText, valueText);
352 if (pair == null) {
392 map.put(pair.mKey, pair.mValue);
    [all...]
  /prebuilts/tools/common/api-generator/
api-generator-25.0.0.jar 
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketTest.java 119 import tests.util.Pair;
202 SSLSocket[] pair = TestSSLSocketPair.connect(c, local
206 SSLSocket server = pair[0];
207 SSLSocket client = pair[1];
778 TestSSLSocketPair pair = TestSSLSocketPair.create(); local
1462 TestSSLSocketPair pair = TestSSLSocketPair.create(); local
    [all...]
  /external/clang/lib/CodeGen/
CGBlocks.cpp 355 std::pair<CharUnits,CharUnits> tinfo
2138 auto pair = BlockByrefInfos.insert({D, info}); local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gpos-table.hh 588 * pair--first glyph is listed in the
740 * in the pair--may be zero (0) */
743 * in the pair--may be zero (0) */
828 * first glyph of the pair--may be zero
831 * second glyph of the pair--may be
836 * the first glyph of the pair */
840 * the second glyph of the pair */
1437 PairPos pair; member in union:OT::PosLookupSubTable::__anon19711
    [all...]
  /external/ipsec-tools/src/racoon/
ipsec_doi.c 184 struct prop_pair **pair; local
186 /* get proposal pair */
187 pair = get_proppair(sa, IPSECDOI_TYPE_PH1);
188 if (pair == NULL)
192 newsa = get_ph1approval(iph1, pair);
194 free_proppair(pair);
209 get_ph1approval(iph1, pair)
211 struct prop_pair **pair;
225 if (pair[i] == NULL)
227 for (s = pair[i]; s; s = s->next)
892 struct prop_pair **pair; local
1290 struct prop_pair **pair = NULL; local
1635 struct prop_pair **pair, *p; local
1695 struct prop_pair **pair = NULL; local
    [all...]
  /external/openssh/
monitor.c 1911 int pair[2]; local
    [all...]
  /external/protobuf/src/google/protobuf/
map.h 468 // std::pair as value_type, we use this class which provides us more control of
484 // Implicitly convertible to std::pair of compatible types.
486 operator std::pair<T1, T2>() const {
487 return std::pair<T1, T2>(first, second);
566 MapAllocator<std::pair<const Key, MapPair<Key, T>*> >(arena_));
    [all...]

Completed in 2412 milliseconds

1 2 3 4 5 6 7 8 91011>>