Searched refs:theirs (Results 1 - 6 of 6) sorted by relevance
/third_party/node/deps/npm/node_modules/diff/lib/patch/ |
H A D | merge.js | 63 function merge(mine, theirs, base) { 65 theirs = loadPatch(theirs, base); 70 if (mine.index || theirs.index) { 71 ret.index = mine.index || theirs.index; 74 if (mine.newFileName || theirs.newFileName) { 76 // No header or no change in ours, use theirs (and ours if theirs does not exist) 77 ret.oldFileName = theirs.oldFileName || mine.oldFileName; 78 ret.newFileName = theirs [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/video/ |
H A D | vktVideoTestUtils.hpp | 506 auto* theirs = (VkVideoDecodeH264ProfileInfoKHR*)other.m_profile.pNext; in operator ==() local 507 if (ours->sType != theirs->sType) in operator ==() 509 if (ours->stdProfileIdc != theirs->stdProfileIdc) in operator ==() 511 if (ours->pictureLayout != theirs->pictureLayout) in operator ==() 518 auto* theirs = (VkVideoDecodeH265ProfileInfoKHR*)other.m_profile.pNext; in operator ==() local 519 if (ours->sType != theirs->sType) in operator ==() 521 if (ours->stdProfileIdc != theirs->stdProfileIdc) in operator ==()
|
/third_party/node/deps/npm/node_modules/diff/lib/ |
H A D | index.es6.js | 1229 function merge(mine, theirs, base) { 1231 theirs = loadPatch(theirs, base); 1236 if (mine.index || theirs.index) { 1237 ret.index = mine.index || theirs.index; 1240 if (mine.newFileName || theirs.newFileName) { 1242 // No header or no change in ours, use theirs (and ours if theirs does not exist) 1243 ret.oldFileName = theirs.oldFileName || mine.oldFileName; 1244 ret.newFileName = theirs [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
H A D | DecimalFormatProperties.java | 301 private boolean _equalsHelper(boolean mine, boolean theirs) { in _equalsHelper() argument 302 return mine == theirs; in _equalsHelper() 305 private boolean _equalsHelper(int mine, int theirs) { in _equalsHelper() argument 306 return mine == theirs; in _equalsHelper() 309 private boolean _equalsHelper(Object mine, Object theirs) { in _equalsHelper() argument 310 if (mine == theirs) in _equalsHelper() 314 return mine.equals(theirs); in _equalsHelper()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/ |
H A D | DecimalFormatProperties.java | 302 private boolean _equalsHelper(boolean mine, boolean theirs) { in _equalsHelper() argument 303 return mine == theirs; in _equalsHelper() 306 private boolean _equalsHelper(int mine, int theirs) { in _equalsHelper() argument 307 return mine == theirs; in _equalsHelper() 310 private boolean _equalsHelper(Object mine, Object theirs) { in _equalsHelper() argument 311 if (mine == theirs) in _equalsHelper() 315 return mine.equals(theirs); in _equalsHelper()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | MessageSchema.java | 1386 Object theirs = UnsafeUtil.getObject(other, offset); in mergeMessage() 1387 if (mine != null && theirs != null) { in mergeMessage() 1388 Object merged = Internal.mergeMessage(mine, theirs); in mergeMessage() 1391 } else if (theirs != null) { in mergeMessage() 1392 UnsafeUtil.putObject(message, offset, theirs); in mergeMessage() 1407 Object theirs = UnsafeUtil.getObject(other, offset); in mergeOneofMessage() 1408 if (mine != null && theirs != null) { in mergeOneofMessage() 1409 Object merged = Internal.mergeMessage(mine, theirs); in mergeOneofMessage() 1412 } else if (theirs != null) { in mergeOneofMessage() 1413 UnsafeUtil.putObject(message, offset, theirs); in mergeOneofMessage() [all...] |
Completed in 9 milliseconds