Home
last modified time | relevance | path

Searched refs:index (Results 7626 - 7650 of 10594) sorted by relevance

1...<<301302303304305306307308309310>>...424

/third_party/skia/samplecode/
H A DSampleAtlas.cpp61 int index = i % strlen(s); in make_atlas() local
62 SkTextUtils::Draw(canvas, &s[index], 1, SkTextEncoding::kUTF8, in make_atlas()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
H A DOffsetRecordTable.java42 public S subTableAt(int index) { in subTableAt() argument
43 NumRecord record = recordList.get(index); in subTableAt()
312 // the index, then the in serializeFromBuilders()
313 // scriptTables from the index in index order. All in serializeFromBuilders()
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_hlsl.hpp241 std::string layout_for_member(const SPIRType &type, uint32_t index) override;
268 void emit_struct_member(const SPIRType &type, uint32_t member_type_id, uint32_t index, const std::string &qualifier,
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Ddef_use_manager.cpp182 WhileEachUse(def, [&f](Instruction* user, uint32_t index) { in ForEachUse()
183 f(user, index); in ForEachUse()
H A Dfix_storage_class.cpp321 uint32_t index = index_const->GetU32(); in WalkAccessChainType() local
322 id = type_inst->GetSingleWordInOperand(index); in WalkAccessChainType()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Ddef_use_manager.cpp182 WhileEachUse(def, [&f](Instruction* user, uint32_t index) { in ForEachUse()
183 f(user, index); in ForEachUse()
H A Dfix_storage_class.cpp321 uint32_t index = index_const->GetU32(); in WalkAccessChainType() local
322 id = type_inst->GetSingleWordInOperand(index); in WalkAccessChainType()
/third_party/skia/third_party/externals/jinja2/
H A Dasyncsupport.py200 self._length = len(iterable) + self.index + (self._after is not missing)
206 return await self.length - self.index
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Djcparam.c329 #define SET_COMP(index, id, hsamp, vsamp, quant, dctbl, actbl) \ in jpeg_set_colorspace()
330 (compptr = &cinfo->comp_info[index], \ in jpeg_set_colorspace()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumber_modifiers.h88 * <code>startIndex</code> and <code>endIndex</code> by inserting characters before the start index and after the
89 * end index.
97 * The left index of the value within the string builder.
99 * The right index of the value within the string builder.
119 int32_t index, int32_t* outPrefixLength, int32_t* outSuffixLength,
221 static int32_t applyCurrencySpacingAffix(FormattedStringBuilder &output, int32_t index, EAffix affix,
/third_party/skia/src/sksl/dsl/
H A DDSLVar.cpp119 /*binding=*/-1, /*index=*/-1, /*set=*/-1, in DSLGlobalVar()
157 DSLPossibleExpression DSLVarBase::operator[](DSLExpression&& index) { in operator []() argument
158 return DSLExpression(*this, PositionInfo())[std::move(index)]; in operator []()
/third_party/skia/tests/
H A DRecordDrawTest.cpp173 int index = find_first_instances_of_type<SkRecords::DrawRect>(rerecord); in DEF_TEST() local
174 const SkRecords::DrawRect* drawRect = assert_type<SkRecords::DrawRect>(r, rerecord, index); in DEF_TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/
H A DYAMLRemarkSerializer.cpp127 static Argument &element(IO &io, ArrayRef<T> &seq, size_t index) { in element()
130 return const_cast<T &>(seq[index]); in element()
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dparser_impl_unary_expression_test.cc37 ASSERT_TRUE(idx->index->Is<ast::SintLiteralExpression>()); in TEST_F()
38 ASSERT_EQ(idx->index->As<ast::SintLiteralExpression>()->value, 2); in TEST_F()
/third_party/skia/third_party/externals/tint/src/transform/
H A Drobustness.cc52 /// @param expr the array, vector or matrix index expression
86 // The row accessor would have been an embedded index accessor and already in Transform()
104 // Calculate the maximum possible index value (size-1u) in Transform()
117 Value idx; // index value in Transform()
119 auto* idx_sem = ctx.src->Sem().Get(expr->index); in Transform()
123 << "index must be u32 or i32, got " << idx_sem->Type()->type_name(); in Transform()
128 // Constant value index in Transform()
143 // Dynamic value index in Transform()
144 idx.expr = ctx.Clone(expr->index); in Transform()
148 // Clamp the index s in Transform()
[all...]
/third_party/skia/tools/
H A DToolUtils.h197 static TopoTestNode* Dependency(TopoTestNode* node, int index) { in Dependency() argument
198 return node->fDependencies[index]; in Dependency()
/third_party/skia/tools/viewer/
H A DSkSLSlide.cpp222 std::find_if(fShaders.begin(), fShaders.end(), [tgt = fChildren[c.index]](auto p) { in draw()
230 fChildren[c.index] = namedShader.second; in draw()
/third_party/skia/third_party/externals/icu/source/common/
H A Dubrk.cpp276 ubrk_getAvailable(int32_t index) in ubrk_getAvailable() argument
279 return uloc_getAvailable(index); in ubrk_getAvailable()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h246 virtual StringRef getPatternForIndex(unsigned index) { in getPatternForIndex() argument
251 virtual StringRef getIncludePathForIndex(unsigned index) { in getIncludePathForIndex() argument
/third_party/python/Lib/test/
H A Dtest_hash.py155 def __getitem__(self, index):
156 return self.seq[index]
H A Dtest_type_comments.py333 for index, c in enumerate(t.name[1:]):
341 if index < len(t.args.posonlyargs):
H A Dtest_slice.py21 return operator.index(arg)
33 length = operator.index(length)
221 # ... but it should be fine to use a custom class that provides index.
/third_party/python/Include/cpython/
H A Dobject.h41 Py_ssize_t index; member
48 #define _Py_static_string_init(value) { .string = value, .index = -1 }
/third_party/protobuf/src/google/protobuf/util/internal/
H A Dproto_writer.h200 // Returns true if the index is already taken by a preceding oneof input.
201 bool IsOneofIndexTaken(int32 index);
203 // Marks the oneof 'index' as taken. Future inputs to this oneof will
205 void TakeOneofIndex(int32 index);
228 // size_index_ : index into ProtoWriter::size_insert_
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dstr_replace_test.cc184 template <int index>
188 for (int i = 0; i < index; ++i) ++it; in get()

Completed in 19 milliseconds

1...<<301302303304305306307308309310>>...424