Home
last modified time | relevance | path

Searched refs:otherId (Results 1 – 25 of 89) sorted by relevance

1234

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/storage/
H A Drecord_store_test_capped_visibility.cpp73 RecordId otherId; in TEST() local
84 otherId = doInsert(opCtx, rs); in TEST()
89 ASSERT_ID_EQ(rs->getCursor(opCtx.get())->seekExact(otherId), otherId); in TEST()
98 ASSERT(!rs->getCursor(longLivedOp.get())->seekExact(otherId)); in TEST()
106 ASSERT_ID_EQ(rs->getCursor(longLivedOp.get())->seekExact(otherId), otherId); in TEST()
140 RecordId otherId; in TEST() local
152 otherId = doInsert(opCtx, rs); in TEST()
156 ASSERT_ID_EQ(rs->getCursor(opCtx.get())->seekExact(otherId), otherId); in TEST()
162 ASSERT_ID_EQ(rs->getCursor(opCtx.get())->seekExact(otherId), otherId); in TEST()
170 ASSERT(!rs->getCursor(longLivedOp.get())->seekExact(otherId)); in TEST()
[all …]
/dports/games/scorched3d/scorched/src/common/image/
H A DImageFactory.cpp34 ImageID &otherId = (ImageID &) imageId; in loadImageID() local
35 if (otherId.getImageName()[0] && !otherId.getAlphaName()[0]) in loadImageID()
37 return loadImageInternal(otherId.getImageLocation(), otherId.getImageName(), false); in loadImageID()
39 else if (!otherId.getImageName()[0] && otherId.getAlphaName()[0]) in loadImageID()
41 return loadImageInternal(otherId.getImageLocation(), otherId.getAlphaName(), true); in loadImageID()
43 else if (otherId.getImageName()[0] && otherId.getAlphaName()[0]) in loadImageID()
45 Image bitmap = loadImageInternal(otherId.getImageLocation(), otherId.getImageName(), false); in loadImageID()
46 Image alpha = loadImageInternal(otherId.getImageLocation(), otherId.getAlphaName(), false); in loadImageID()
47 return combineImage(bitmap, alpha, otherId.getInvert()); in loadImageID()
/dports/audio/polyphone/polyphone-75a5e88/sources/editor/tools/unlink_sample/
H A Dtoolunlinksample.cpp33 EltID otherId = id;
34 otherId.indexElt = sm->get(id, champ_wSampleLink).wValue;
38 if (sm->isValid(otherId)) in eventFilter()
39 unlink(sm, otherId); in eventFilter()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/3rdparty/cplusplus/
H A DName.cpp89 const Identifier *otherId = other->identifier(); in operator ()() local
91 if (id == otherId) in operator ()()
93 if (id == nullptr || otherId == nullptr) in operator ()()
96 return std::strcmp(id->chars(), otherId->chars()) == 0; in operator ()()
H A DNames.cpp119 const Identifier *otherId = other->identifier(); in operator ()() local
121 if (!id != !otherId) // mimic logical xor (id == nullptr ^^ otherId == nullptr) in operator ()()
124 const int c = id ? std::strcmp(id->chars(), otherId->chars()) : 0; // 0 if both are nullptr in operator ()()
/dports/audio/sonic-visualiser/sonic-visualiser-4.0.1/svapp/framework/
H A DAlign.cpp92 Align::abandonOngoingAlignment(ModelId otherId) in abandonOngoingAlignment() argument
94 auto other = ModelById::getAs<RangeSummarisableTimeValueModel>(otherId); in abandonOngoingAlignment()
105 << otherId << " (alignment model id " << alignmentModelId in abandonOngoingAlignment()
155 ModelId otherId, in alignModelViaTransform() argument
163 ModelById::getAs<RangeSummarisableTimeValueModel>(otherId); in alignModelViaTransform()
170 abandonOngoingAlignment(otherId); in alignModelViaTransform()
220 (AggregateWaveModel::ModelChannelSpec(otherId, -1)); in alignModelViaTransform()
227 (referenceId, otherId, ModelId()); in alignModelViaTransform()
486 ModelId otherId, in alignModelViaProgram() argument
495 auto other = ModelById::getAs<ReadOnlyWaveFileModel>(otherId); in alignModelViaProgram()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/offlinepages/
H A DClientId.java34 ClientId otherId = (ClientId) o; in equals() local
35 return otherId.getNamespace().equals(mNamespace) && otherId.getId().equals(mId); in equals()
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmRESTPlugin/lib/Api/Pim/Entity/
H A DEmployee.php74 private $otherId; variable in Orangehrm\\Rest\\Api\\Pim\\Entity\\Employee
498 return $this->otherId;
502 * @param mixed $otherId
504 public function setOtherId($otherId) argument
506 $this->otherId = $otherId;
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/adaptagrams/libcola/
H A Dcc_nonoverlapconstraints.cpp98 unsigned otherId = curr->first; in addShape() local
99 … if ((shapeOffsets[otherId].group == group) && (id != otherId) && exemptions.count(otherId)==0) in addShape()
102 m_exemptions->shapePairIsExempt(ShapePair(otherId, id))) in addShape()
108 pairInfoList.push_back(ShapePairInfo(otherId, id)); in addShape()
145 unsigned otherId = curr->first; in addCluster() local
146 if (shapeOffsets[otherId].group != group) in addCluster()
151 if (cluster->nodes.count(otherId) > 0) in addCluster()
156 if (m_cluster_cluster_exemptions.count(ShapePair(id, otherId)) > 0) in addCluster()
162 pairInfoList.push_back(ShapePairInfo(otherId, id)); in addCluster()
/dports/games/0ad/0ad-0.0.23b-alpha/build/premake/premake5/src/base/
H A Dsemver.lua102 local function compareIds(myId, otherId)
103 if myId == otherId then return 0
105 elseif not otherId then return 1
108 local selfNumber, otherNumber = tonumber(myId), tonumber(otherId)
118 return compare(myId, otherId) -- alphanumerical comparison
/dports/devel/premake5/premake-5.0.0-alpha16-src/src/base/
H A Dsemver.lua102 local function compareIds(myId, otherId)
103 if myId == otherId then return 0
105 elseif not otherId then return 1
108 local selfNumber, otherNumber = tonumber(myId), tonumber(otherId)
118 return compare(myId, otherId) -- alphanumerical comparison
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/serviceregistry/
H A DServiceReferenceImpl.java219 final long otherId = other.getId(); in compareTo() local
220 if (thisId == otherId) { in compareTo()
223 if (thisId < otherId) { in compareTo()
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/fo/properties/
H A DPageDimensionMaker.java66 int otherId = (propId == Constants.PR_PAGE_HEIGHT) in get() local
71 if (propertyList.getExplicit(otherId) != null in get()
72 && propertyList.getExplicit(otherId).getEnum() == Constants.EN_INDEFINITE) { in get()
/dports/audio/polyphone/polyphone-75a5e88/sources/editor/tools/link_sample/
H A Dtoollinksample.cpp88 int otherId = _smplIds.takeAt(match); in process() local
91 _processedIds << id.indexElt << otherId; in process()
95 this->associate(sm, id, EltID(elementSmpl, id.indexSf2, otherId)); in process()
97 this->associate(sm, EltID(elementSmpl, id.indexSf2, otherId), id); in process()
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/test/testdata/gototest/src/
H A DLib2.hs12 otherId :: DataType -> DataType
13 otherId dataType = dataType function
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/test/testdata/gototest/src/
H A DLib2.hs12 otherId :: DataType -> DataType
13 otherId dataType = dataType function
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/context/
H A DServiceHolder.java101 final long otherId = o.getServiceId(); in compareTo() local
102 if (thisId == otherId) { in compareTo()
105 if (thisId < otherId) { in compareTo()
/dports/net/kitinerary/kitinerary-21.12.3/src/lib/knowledgedb/
H A Dtrainstationdb.h35 constexpr bool operator<(T otherId) const
37 return stationId < otherId;
/dports/lang/oo2c/oo2c_64-2.1.11/tests/lib/
H A DLibMsg1.Mod14 otherId = 1;
47 msg := Msg.New (context, otherId);
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/internal/p2/metadata/
H A DEnumDefinition.java43 String otherId = other.definition.getIdentifier(other.ordinal); in compareTo() local
44 if (thisId.equals(otherId)) in compareTo()
48 int otherOrdinalInThis = definition.getOrdinal(otherId); in compareTo()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/registration/
H A DFilterRegistration.java87 long otherId = Math.abs(otherFilterRegistration.getD().serviceId); in compareTo() local
88 return (thisId < otherId) ? -1 : ((thisId == otherId) ? 0 : 1); in compareTo()
/dports/www/orangehrm/orangehrm-4.9/symfony/data/fixtures/
H A Ddata.yml494 otherId: ''
535 otherId: ''
576 otherId: ''
617 otherId: ''
658 otherId: ''
699 otherId: ''
740 otherId: ''
781 otherId: ''
822 otherId: ''
863 otherId: ''
[all …]
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/mpi/examples/
H A Dsimple-distributed-mpi-comm.cc94 int otherId=0; in ReportRank() local
97 MPI_Comm_rank (splitComm, &otherId); in ReportRank()
110 << ", in splitComm: " << otherId << ":" << otherSize in ReportRank()
/dports/devel/binaryen/binaryen-version_98/src/
H A Dwasm-type.h143 bool operator==(const BasicID& otherId) const { return id == otherId; }
145 bool operator!=(const BasicID& otherId) const { return id != otherId; }
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/gettext/languages/bin/
H A Dexport-plural-rules.php214 foreach ($otherIds as $otherId) {
215 …if (($check->id === $otherId) && ($check->formula === $language->formula) && (serialize($check->ca…

1234