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

1 2 3 4 5 6 7 891011>>

  /external/pdfium/core/fpdfapi/font/
ttgsubtable.cpp 31 _IntPair pair = {key, value}; local
33 m_Buffer.AppendBlock(&pair, sizeof(_IntPair));
48 m_Buffer.InsertBlock(low * sizeof(_IntPair), &pair, sizeof(_IntPair)); local
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVEntry.cpp 71 operator std::pair<const Op, SPIRVFactoryTy>() {
  /external/testng/src/main/java/org/testng/xml/dom/
XDom.java 12 import org.testng.internal.collections.Pair;
147 // private List<Pair<Method, ? extends Annotation>>
149 // List<Pair<Method, ? extends Annotation>> result = Lists.newArrayList();
153 // result.add(Pair.of(m, a));
178 List<Pair<Method, Wrapper>> pairs =
180 for (Pair<Method, Wrapper> pair : pairs) {
182 pair.first().invoke(bean, child.getTextContent());
191 Pair<Method, Wrapper> pair local
    [all...]
  /external/v8/src/builtins/
builtins-number.cc 626 Node* pair = assembler->IntPtrAddWithOverflow( local
629 Node* overflow = assembler->Projection(1, pair);
644 assembler->Projection(0, pair)));
991 Node* pair = assembler->IntPtrSubWithOverflow( local
    [all...]
  /external/v8/src/
lookup.cc 488 Handle<AccessorPair> pair; local
490 pair = Handle<AccessorPair>::cast(GetAccessors());
492 if (pair->Equals(*getter, *setter)) {
498 pair = AccessorPair::Copy(pair);
499 pair->SetComponents(*getter, *setter);
502 pair = factory()->NewAccessorPair();
503 pair->SetComponents(*getter, *setter);
506 TransitionToAccessorPair(pair, attributes);
516 void LookupIterator::TransitionToAccessorPair(Handle<Object> pair,
    [all...]
  /frameworks/av/services/camera/libcameraservice/device1/
CameraHardwareInterface.cpp 196 std::pair<bool, uint64_t> CameraHardwareInterface::getBufferId(
233 auto pair = getBufferId(anb); local
234 buf = (pair.first) ? anb->handle : nullptr;
235 bufferId = pair.second;
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 391 LanguagePair pair = mCounters[i]; local
402 if (pair.length > (SmsConstants.MAX_USER_DATA_SEPTETS - udhLength)) {
408 int msgCount = (pair.length + septetsPerPart - 1) / septetsPerPart;
409 numSeptetsWithHeader = udhLength * msgCount + pair.length;
411 numSeptetsWithHeader = udhLength + pair.length;
415 if (pair.missingChars7bit < minNumMissingChars || (pair.missingChars7bit ==
417 minNumSeptets = pair.length;
419 minNumMissingChars = pair.missingChars7bit;
420 langIndex = pair.langTableIndex
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
KeyPairGeneratorTest.java 438 KeyPair pair = kpg.generateKeyPair(); local
439 DSAPrivateKey privKey = (DSAPrivateKey) pair.getPrivate();
440 DSAPublicKey pubKey = (DSAPublicKey) pair.getPublic();
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/mbs/
A2dpMediaBrowserService.java 41 import android.util.Pair;
136 Pair<PlaybackState, MediaMetadata> pair = local
137 (Pair<PlaybackState, MediaMetadata>) (msg.obj);
138 inst.msgTrack(pair.first, pair.second);
363 MSG_TRACK, new Pair<PlaybackState, MediaMetadata>(pbb, mmd)).sendToTarget();
  /packages/services/Car/service/src/com/android/car/
SystemActivityMonitoringService.java 35 import android.util.Pair;
417 new Pair<TopTaskInfoContainer, Intent>(currentTask, newActivityIntent));
435 Pair<TopTaskInfoContainer, Intent> pair = local
436 (Pair<TopTaskInfoContainer, Intent>) msg.obj;
437 handleBlockActivity(pair.first, pair.second);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintPainter.java 301 Constraint pair = null; local
305 pair = constraint;
313 if (pair != null) {
316 sourceSegmentTypeX = pair.type.sourceSegmentTypeX;
319 sourceSegmentTypeY = pair.type.sourceSegmentTypeY;
322 targetSegmentTypeX = pair.type.targetSegmentTypeX;
325 targetSegmentTypeY = pair.type.targetSegmentTypeY;
354 allConstraints.remove(pair);
    [all...]
  /system/core/libbacktrace/
BacktraceOffline.cpp 579 auto pair = g_debug_frames->emplace(filename, std::unique_ptr<DebugFrameInfo>(debug_frame)); local
580 if (!pair.second) {
581 debug_frame = pair.first->second.get();
  /tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
BandwidthMicroBenchMarkTest.java 292 final String[] pair = responsePair.split(":", 2); local
293 if (pair.length >= 2) {
294 results.put(pair[0], pair[1]);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java 53 import com.android.util.Pair;
250 Pair<Integer, Integer> exactMeasure = measureView(
258 Pair<Integer, Integer> result = measureView(
592 * if <var>measuredView</var> is non null, the method returns a {@link Pair} of (width, height)
603 @SuppressWarnings("deprecation") // For the use of Pair
604 private static Pair<Integer, Integer> measureView(ViewGroup viewToMeasure, View measuredView,
611 return Pair.of(measuredView.getMeasuredWidth(), measuredView.getMeasuredHeight());
1069 Pair<View, Boolean> pair = context.inflateView( local
1081 Pair<View, Boolean> pair = context.inflateView( local
    [all...]
  /prebuilts/tools/common/api-generator/
api-generator-22.9.1.jar 
api-generator-22.9.2.jar 
api-generator-22.9.3.jar 
api-generator-22.9.4.jar 
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/video/
CameraVideoActivity.java 479 VideoSizeNamePair pair = new VideoSizeNamePair(qualityArray[i], nameArray[i]); local
480 availableSizes.add(pair);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodHelperActivity.java 36 import android.support.v4.util.Pair;
257 Pair<File, Uri> pair = getTempUri("image.jpg"); local
258 mImageFile = pair.first;
259 mImageUri = pair.second;
462 private Pair<File, Uri> getTempUri(String fileName) {
467 return new Pair<>(file, FileProvider.getUriForFile(this,
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Rule.java 185 Grammar.LabelElementPair pair = grammar.new LabelElementPair(label,elementRef); local
186 pair.type = type;
187 labelNameSpace.put(label.getText(), pair); local
191 tokenLabels.put(label.getText(), pair); local
195 wildcardTreeLabels.put(label.getText(), pair); local
199 wildcardTreeListLabels.put(label.getText(), pair); local
203 ruleLabels.put(label.getText(), pair); local
207 tokenListLabels.put(label.getText(), pair); local
211 ruleListLabels.put(label.getText(), pair); local
215 charLabels.put(label.getText(), pair); local
225 Grammar.LabelElementPair pair = null; local
241 Grammar.LabelElementPair pair = null; local
249 Grammar.LabelElementPair pair = null; local
257 Grammar.LabelElementPair pair = null; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
icusvtst.cpp 708 const StringPair* pair = (const StringPair*)names[i]; local
709 logln(" " + pair->displayName + " --> " + pair->id);
748 const StringPair* pair = (const StringPair*)names[i]; local
749 logln(" " + pair->displayName + " --> " + pair->id);
920 const StringPair* pair = (const StringPair*)names[i]; local
921 logln(" " + pair->displayName + " --> " + pair->id);
945 const StringPair* pair = (const StringPair*)names[i] local
    [all...]
tstnorm.cpp 1444 const StringPair &pair=pairs[i]; local
1476 const StringPair &pair=pairs[i]; local
    [all...]
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 380 // Insert (trail, composite) pair into compositions list for the lead character.
387 i=0; // "insert" the first pair at index 0
643 // A Jamo leading consonant or an LV pair combines-forward if it is at the end,
770 const CompositionPair &pair=pairs[i]; local
772 UChar32 compositeAndFwd=pair.composite<<1;
773 if(getNormRef(pair.composite).compositions!=NULL) {
778 if(pair.trail<Normalizer2Impl::COMP_1_TRAIL_LIMIT) {
780 firstUnit=pair.trail<<1;
784 firstUnit=(pair.trail<<1)|Normalizer2Impl::COMP_1_TRIPLE;
790 (pair.trail>>Normalizer2Impl::COMP_1_TRAIL_SHIFT))
    [all...]
  /external/lzma/CPP/7zip/Archive/
XzHandler.cpp 951 const CMethodNamePair &pair = g_NamePairs[k]; local
952 if (StringsAreEqualNoCase_Ascii(_filterMethod.MethodName, pair.Name))
954 _filterId = pair.Id;

Completed in 1024 milliseconds

1 2 3 4 5 6 7 891011>>