Home
last modified time | relevance | path

Searched refs:compareValues (Results 1 – 25 of 28) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPSInt.h177 return compareValues(*this, get(RHS)) == 0;
180 return compareValues(*this, get(RHS)) != 0;
183 return compareValues(*this, get(RHS)) <= 0;
186 return compareValues(*this, get(RHS)) >= 0;
189 return compareValues(*this, get(RHS)) < 0;
192 return compareValues(*this, get(RHS)) > 0;
302 return !compareValues(I1, I2); in isSameValue()
306 static int compareValues(const APSInt &I1, const APSInt &I2) { in compareValues() function
312 return compareValues(I1, I2.extend(I1.getBitWidth())); in compareValues()
314 return compareValues(I1.extend(I2.getBitWidth()), I2); in compareValues()
/third_party/typescript/src/compiler/
Dsemver.ts91 return compareValues(this.major, other.major)
92 || compareValues(this.minor, other.minor)
93 || compareValues(this.patch, other.patch)
168 const result = compareValues(+leftIdentifier, +rightIdentifier);
182 return compareValues(left.length, right.length);
Dsourcemap.ts632 return compareValues(left.sourcePosition, right.sourcePosition);
636 return compareValues(left.generatedPosition, right.generatedPosition);
735 … targetIndex = binarySearchKey(sourceMappings, loc.pos, getSourcePositionOfMapping, compareValues);
753 …tIndex = binarySearchKey(generatedMappings, loc.pos, getGeneratedPositionOfMapping, compareValues);
Dcore.ts1017 indices.sort((x, y) => comparer(array[x], array[y]) || compareValues(x, y));
1929 export function compareValues(a: number | undefined, b: number | undefined): Comparison { function
1937 return compareValues(a?.start, b?.start) || compareValues(a?.length, b?.length);
2111 return compareValues(a ? 1 : 0, b ? 1 : 0);
Dpath.ts699 return compareValues(aComponents.length, bComponents.length);
Ddebug.ts349 … const sorted = stableSort<[number, string]>(result, (x, y) => compareValues(x[0], y[0]));
Dutilities.ts588 return binarySearch(nodeArray, node, getPos, compareValues);
6256 compareValues(d1.start, d2.start) ||
6257 compareValues(d1.length, d2.length) ||
6258 compareValues(d1.code, d2.code) ||
6268 …return compareValues(d1.relatedInformation.length, d2.relatedInformation.length) || forEach(d1.rel…
7081 return compareValues(
Dbuilder.ts1097 const fileIds = arrayFrom(set.keys(), toFileId).sort(compareValues);
Dscanner.ts450 let lineNumber = binarySearch(lineStarts, position, identity, compareValues, lowerBound);
/third_party/typescript/src/compiler/factory/
DparenthesizerRules.ts99 switch (compareValues(operandPrecedence, binaryOperatorPrecedence)) {
261 … if (compareValues(conditionPrecedence, conditionalPrecedence) !== Comparison.GreaterThan) {
DemitHelpers.ts412 return compareValues(x.priority, y.priority);
/third_party/typescript/src/services/
DnavigateTo.ts115 return compareValues(i1.matchKind, i2.matchKind)
DpatternMatcher.ts266 … : compareValues(a.kind, b.kind) || compareBooleans(!a.isCaseSensitive, !b.isCaseSensitive);
DorganizeImports.ts521 return compareValues(getImportKindOrder(s1), getImportKindOrder(s2));
DfindAllReferences.ts807 return compareValues(entry1File, entry2File);
813 compareValues(entry1Span.start, entry2Span.start) :
814 compareValues(entry1Span.length, entry2Span.length);
Dservices.ts2103 … return flatMap(deduplicate<number>(errorCodes, equateValues, compareValues), errorCode => {
2333 insertSorted(positions, textRange.pos, compareValues);
2335 insertSorted(positions, textRange.end, compareValues);
DnavigationBar.ts680 || compareValues(navigationBarNodeKind(child1), navigationBarNodeKind(child2));
DstringCompletions.ts568 return compareValues(lengthB, lengthA);
Dutilities.ts3241 … let index = binarySearchKey(sortedFileDiagnostics, span.start, diag => diag.start, compareValues);
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
DesextcTessellationShaderTessellation.hpp425 …bool compareValues(char const* description, glw::GLfloat* reference_values, int n_reference_values…
DesextcTessellationShaderTessellation.cpp2380 test_passed &= compareValues("Per-vertex components test ", m_ref_vertex_attributes, in iterate()
2403compareValues("Per-patch components test ", m_ref_patch_attributes, 1 /* amount of output vectors … in iterate()
2846 bool TessellationShaderTessellationMaxInOut::compareValues(char const* description, glw::GLfloat* r… in compareValues() function in glcts::TessellationShaderTessellationMaxInOut
/third_party/typescript/src/services/refactors/
DconvertParamsToDestructuredObject.ts63 …ndDeduplicate(groupedReferences.functionCalls, /*comparer*/ (a, b) => compareValues(a.pos, b.pos));
DextractSymbol.ts1391 return compareProperties(declaration1, declaration2, "pos", compareValues)
1395 || compareValues(type1.id, type2.id);
/third_party/typescript/src/services/codefixes/
DimportFixes.ts760 compareValues(a.fix.kind, b.fix.kind) ||
/third_party/typescript/lib/
Dtsc.js924 … indices.sort(function (x, y) { return comparer(array[x], array[y]) || compareValues(x, y); });
1601 function compareValues(a, b) { function
1604 ts.compareValues = compareValues;
1606 …return compareValues(a === null || a === void 0 ? void 0 : a.start, b === null || b === void 0 ? v…
1718 return compareValues(a ? 1 : 0, b ? 1 : 0);
2330 … var sorted = ts.stableSort(result, function (x, y) { return ts.compareValues(x[0], y[0]); });
2786 return ts.compareValues(this.major, other.major)
2787 || ts.compareValues(this.minor, other.minor)
2788 || ts.compareValues(this.patch, other.patch)
2850 var result = ts.compareValues(+leftIdentifier, +rightIdentifier);
[all …]

12