/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/table/ |
D | SchemaTest.java | 39 private static final Column<Boolean> REGION_US = REGIONS.getColumn(PhoneRegion.of("US")); 40 private static final Column<Boolean> REGION_CA = REGIONS.getColumn(PhoneRegion.of("CA")); 59 assertThat(SCHEMA.getColumn("Type")).isEqualTo(TYPE); in test() 60 assertThat(SCHEMA.getColumn("Region:US")).isEqualTo(REGION_US); in test() 61 assertThrows(IllegalArgumentException.class, () -> SCHEMA.getColumn("Region")); in test() 62 assertThrows(IllegalArgumentException.class, () -> SCHEMA.getColumn("Bogus")); in test()
|
D | ColumnGroupTest.java | 38 Column<Boolean> ca = group.getColumn(PhoneRegion.of("CA")); in testGroupColumns() 52 Column<Boolean> ca = group.getColumn(PhoneRegion.of("CA")); in testExtractGroupColumns()
|
D | RangeTableTest.java | 58 private static final Column<Boolean> REGION_US = REGIONS.getColumn(PhoneRegion.of("US")); 59 private static final Column<Boolean> REGION_CA = REGIONS.getColumn(PhoneRegion.of("CA")); 233 assertThat(table.getAssignedRanges(REGIONS.getColumn(PhoneRegion.of("CH")))).isEmpty(); in testColumnGroupMapping() 236 Column<String> nope = ColumnGroup.byRegion(bogus).getColumn(PhoneRegion.of("US")); in testColumnGroupMapping()
|
D | CsvTableTest.java | 65 private static final Column<Boolean> REGION_CA = REGIONS.getColumn(PhoneRegion.of("CA")); 66 private static final Column<Boolean> REGION_US = REGIONS.getColumn(PhoneRegion.of("US"));
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderMatrixTests.cpp | 607 …u::Vec3 reduceToVec3 (const tcu::Mat2x3& value) { return value.getColumn(0) + value.getColumn(1); } in reduceToVec3() 608 …educeToVec3 (const tcu::Mat2x4& value) { return value.getColumn(0).swizzle(0,1,2) + value.getColum… in reduceToVec3() 610 …uceToVec3 (const tcu::Mat3& value) { return value.getColumn(0) + value.getColumn(1) + value.getCo… in reduceToVec3() 611 … tcu::Mat3x4& value) { return value.getColumn(0).swizzle(0,1,2) + value.getColumn(1).swizzle(1,2,3… in reduceToVec3() 613 …onst tcu::Mat4x3& value) { return value.getColumn(0) + value.getColumn(1) + value.getColumn(2) + v… in reduceToVec3() 614 …) { return value.getColumn(0).swizzle(0,1,2) + value.getColumn(1).swizzle(1,2,3) + value.getColum… in reduceToVec3() 1494 result.setColumn(0, matrix.getColumn(0).toWidth<4>()); in addMatrixUniform() 1495 result.setColumn(1, matrix.getColumn(1).toWidth<4>()); in addMatrixUniform() 1501 result.setColumn(0, matrix.getColumn(0).toWidth<4>()); in addMatrixUniform() 1502 result.setColumn(1, matrix.getColumn(1).toWidth<4>()); in addMatrixUniform() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | AddDiscriminators.cpp | 216 << DIL->getColumn() << ":" << Discriminator << " " in addDiscriminators() 221 << DIL->getColumn() << ":" << Discriminator << " " << I in addDiscriminators() 254 << CurrentDIL->getLine() << ":" << CurrentDIL->getColumn() in addDiscriminators()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | TextFormatParseLocation.java | 75 public int getColumn() { in getColumn() method in TextFormatParseLocation 93 return (this.line == that.getLine()) && (this.column == that.getColumn()); in equals()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | DebugLoc.cpp | 32 return get()->getColumn(); in getCol() 109 Ctx, MD->getLine(), MD->getColumn(), MD->getScope(), Last); in appendInlinedAt()
|
D | DiagnosticInfo.cpp | 116 Column = DL->getColumn(); in DiagnosticLocation() 151 Column = Loc.getColumn(); in getLocation()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
D | es3fShaderMatrixTests.cpp | 613 …u::Vec3 reduceToVec3 (const tcu::Mat2x3& value) { return value.getColumn(0) + value.getColumn(1); } in reduceToVec3() 614 …educeToVec3 (const tcu::Mat2x4& value) { return value.getColumn(0).swizzle(0,1,2) + value.getColum… in reduceToVec3() 616 …uceToVec3 (const tcu::Mat3& value) { return value.getColumn(0) + value.getColumn(1) + value.getCo… in reduceToVec3() 617 … tcu::Mat3x4& value) { return value.getColumn(0).swizzle(0,1,2) + value.getColumn(1).swizzle(1,2,3… in reduceToVec3() 619 …onst tcu::Mat4x3& value) { return value.getColumn(0) + value.getColumn(1) + value.getColumn(2) + v… in reduceToVec3() 620 …) { return value.getColumn(0).swizzle(0,1,2) + value.getColumn(1).swizzle(1,2,3) + value.getColum… in reduceToVec3()
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuMatrix.hpp | 62 Vector<T, Rows>& getColumn (int ndx); 63 const Vector<T, Rows>& getColumn (int ndx) const; 65 Vector<T, Rows>& operator[] (int ndx) { return getColumn(ndx); } in operator []() 66 const Vector<T, Rows>& operator[] (int ndx) const { return getColumn(ndx); } in operator []() 407 Vector<T, Rows>& Matrix<T, Rows, Cols>::getColumn (int colNdx) in getColumn() function in tcu::Matrix 413 const Vector<T, Rows>& Matrix<T, Rows, Cols>::getColumn (int colNdx) const in getColumn() function in tcu::Matrix
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LowerMatrixIntrinsics.cpp | 148 Value *getColumn(unsigned i) const { return Columns[i]; } in getColumn() function in __anonca03dac30111::LowerMatrixIntrinsics::ColumnMatrixTy 619 Value *Col = LM.getColumn(J); in extractVector() 743 Value *RH = Builder.CreateExtractElement(Rhs.getColumn(J), K); in LowerMultiply() 748 Result.setColumn(J, insertVector(Result.getColumn(J), I, Sum, Builder)); in LowerMultiply() 840 BuildColumnOp(LoweredLhs.getColumn(C), LoweredRhs.getColumn(C))); in VisitBinaryOperator()
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | TextFormatParseLocationTest.java | 46 assertEquals(1, location.getColumn()); in testCreate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | FormattedStream.cpp | 72 indent(std::max(int(NewCol - getColumn()), 1)); in PadToColumn()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | FormattedStream.h | 109 unsigned getColumn() { return Position.first; } in getColumn() function
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fShaderMatrixTests.cpp | 387 …duceToVec3 (const tcu::Mat3& value) { return value.getColumn(0) + value.getColumn(1) + value.getCo… in reduceToVec3() 388 …e) { return value.getColumn(0).swizzle(0,1,2) + value.getColumn(1).swizzle(1,2,3) + value.getColum… in reduceToVec3()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCCodeView.cpp | 298 FilteredLines.back().getColumn() != IA.Col) { in getFunctionLineEntries() 343 return LineEntry.getColumn() != 0; in emitLineTableForFunction() 378 OS.EmitIntValue(J->getColumn(), 2); in emitLineTableForFunction() 488 << ' ' << Loc.getLine() << ' ' << Loc.getColumn() in encodeInlineLineTable()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
D | Assignment.java | 45 Column<?> column = schema.getColumn(parts.get(0)); in parse()
|
D | ColumnGroup.java | 58 public Column<T> getColumn(K key) { in getColumn() method in ColumnGroup
|
D | CsvSchema.java | 77 header.subList(hsize, header.size()).forEach(s -> columns.add(columns().getColumn(s))); in parseHeader()
|
D | Schema.java | 100 public Column<?> getColumn(String key) { in getColumn() method in Schema
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
D | NumberingScheme.java | 284 allNationalOnly.subtract(xmlTable.getRanges(REGIONS.getColumn(main), true)); in checkNationalOnly() 291 xmlTable.getRanges(REGIONS.getColumn(r), true).intersect(allNationalOnly); in checkNationalOnly() 541 table.subTable(table.getRanges(REGIONS.getColumn(r), TRUE), XmlRangesSchema.TYPE); in checkExampleNumbers() 599 .subTable(getTable().getRanges(REGIONS.getColumn(region), TRUE), PER_REGION_COLUMNS); in getTableFor()
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/testing/ |
D | TestNumberingScheme.java | 117 .collect(toImmutableMap(identity(), RangesTableSchema.REGIONS::getColumn)); in TestNumberingScheme() 350 RangesTableSchema.GEOCODES.getColumn(lang), name, ranges, OverwriteMode.ALWAYS); in setGeocode() 449 Column<Boolean> regionColumn = XmlRangesSchema.REGIONS.getColumn(region); in addMissingExampleNumbersFor()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86DiscriminateMemOps.cpp | 156 << " Column: " << DI->getColumn() in runOnMachineFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCCodeView.h | 62 unsigned getColumn() const { return Column; } in getColumn() function
|