/third_party/skia/third_party/externals/harfbuzz/test/shape/ |
H A D | hb_test_tools.py | 95 i = self.symbols.index (l[0]) 114 i = self.symbols.index (l[0]) 238 i = l.index (':') 266 return l[1:l.index (':')]
|
/third_party/pulseaudio/src/modules/rtp/ |
H A D | rtp-native.c | 336 c->memchunk.index = 0; in pa_rtp_recv() 344 chunk->index = c->memchunk.index; in pa_rtp_recv() 347 c->memchunk.index += audio_length; in pa_rtp_recv()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | YAMLTraits.cpp | 243 bool Input::preflightFlowElement(unsigned index, void *&SaveInfo) { in preflightFlowElement() argument 248 CurrentNode = SQ->Entries[index].get(); in preflightFlowElement() 540 bool Output::preflightDocument(unsigned index) { in preflightDocument() argument 541 if (index > 0) in preflightDocument()
|
/third_party/skia/tools/viewer/ |
H A D | ParticlesSlide.cpp | 178 int index = fArrayCounterStack.back()++; in item() local 180 fScratchLabel = SkStringPrintf("[%d]", index); in item() 182 ImGui::PushID(index); in item() 186 edit.fIndex = index; in item()
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | uniset.h | 914 * @param start the start index in the string for the span operation 947 * @param limit the exclusive-end index in the string for the span operation 1021 * where last is the index of the last character to match. 1055 * Returns the index of the given character within this set, where 1059 * @return an index from 0..size()-1, or -1 1065 * Returns the character at the given index within this set, where 1066 * the set is ordered by ascending code point. If the index is 1069 * @param index an index from 0..size()-1 1070 * @return the character at the given index, o [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | parserRealSource9.js | 138 if (type.index) { 139 this.resolveSignatureGroup(type.index, scope, null); 340 if (type.index) {
341 this.resolveSignatureGroup(type.index, scope, null);
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | IsValidUtf8TestUtil.java | 168 final long index; field in IsValidUtf8TestUtil.Shard 173 public Shard(long index, long start, long lim, long expected) { in Shard() argument 175 this.index = index; in Shard()
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | pgen.py | 43 arcs.append((self.make_label(c, label), dfa.index(next))) 45 arcs.append((0, dfa.index(state))) 212 j = todo.index(next) 226 print(" %s -> %d" % (label, dfa.index(next)))
|
/third_party/python/Lib/test/ |
H A D | test_enumerate.py | 211 def __getitem__(self, index): 212 return index 221 def __getitem__(self, index): 222 return index
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | poisson_distribution_test.cc | 178 size_t index; member 194 absl::StrCat(c.index, ": pmf=", c.pmf, " cdf=", c.cdf)); in LogCDF() 388 if (!cutoffs_.empty() && cutoffs_.back() == result.index) { in InitChiSquaredTest() 392 cutoffs_.push_back(result.index); in InitChiSquaredTest()
|
/third_party/skia/bench/ |
H A D | MathBench.cpp | 261 IsFiniteBench(int index) { in IsFiniteBench() argument 268 if (index < 0) { in IsFiniteBench() 272 fProc = gRec[index].fProc; in IsFiniteBench() 273 fName = gRec[index].fName; in IsFiniteBench()
|
/third_party/spirv-tools/source/opt/ |
H A D | loop_dependence.h | 139 DistanceEntry& GetEntry(size_t index) { return entries[index]; } in GetEntry() argument 140 const DistanceEntry& GetEntry(size_t index) const { return entries[index]; } in GetEntry()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuWaiverUtil.cpp | 98 deUint32 parentIndex; // index in allComponents vector 99 std::vector<deUint32> childrenIndex; // index in allComponents vector 126 // helper method used in buildTreeFromPathList; returns index 129 deUint32 findComponentInBuildTree(const std::vector<std::string>& pathComponents, deUint32 index) const; 298 deUint32 WaiverTreeBuilder::findComponentInBuildTree(const std::vector<std::string>& pathComponents, deUint32 index) const in findComponentInBuildTree() 300 const std::string& checkedName = pathComponents[index]; in findComponentInBuildTree() 310 deUint32 reverseLevel = index; in findComponentInBuildTree()
|
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluShaderProgram.hpp | 373 deUint32 index; member 376 SpecializationData (void) : index(0), value(0) {} in SpecializationData() 377 SpecializationData (const deUint32 index_, const deUint32 value_) : index(index_), value(value_) {} in SpecializationData() 414 specializationIndices.push_back(specData.index); in operator <<()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | OutputSPIRV.cpp | 78 // If a vector component is selected dynamically (i.e. indexed with a non-literal index), 79 // dynamicComponent will contain the id of the index. 223 void accessChainOnPush(NodeData *data, const TType &parentType, size_t index); 224 void accessChainPush(NodeData *data, spirv::IdRef index, spirv::IdRef typeId) const; 226 spirv::LiteralInteger index, 232 void accessChainPushDynamicComponent(NodeData *data, spirv::IdRef index, spirv::IdRef typeId); 717 void OutputSPIRVTraverser::accessChainOnPush(NodeData *data, const TType &parentType, size_t index) in accessChainOnPush() argument 721 // Adjust |typeSpec| based on the type (which implies what the index does; select an array in accessChainOnPush() 737 const TType &fieldType = *block->fields()[index]->type(); in accessChainOnPush() 752 spirv::IdRef index, in accessChainPush() 751 accessChainPush(NodeData *data, spirv::IdRef index, spirv::IdRef typeId) const accessChainPush() argument 761 accessChainPushLiteral(NodeData *data, spirv::LiteralInteger index, spirv::IdRef typeId) const accessChainPushLiteral() argument 797 accessChainPushDynamicComponent(NodeData *data, spirv::IdRef index, spirv::IdRef typeId) accessChainPushDynamicComponent() argument 4969 const uint32_t index = node->getRight()->getAsConstantUnion()->getIConst(0); visitBinary() local [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/ |
H A D | distributeddb_relational_ver_p2p_sync_test.cpp | 150 int index = 0; in CreateTable() local 152 if (index != 0) { in CreateTable() 158 if (index == 0) { in CreateTable() 161 index++; in CreateTable() 172 int index = 0; in PrepareInsert() local 174 if (index != 0) { in PrepareInsert() 178 index++; in PrepareInsert() 181 while (index > 0) { in PrepareInsert() 183 if (index != 1) { in PrepareInsert() 186 index in PrepareInsert() 253 const int index = i + 1; InsertValue() local 605 int index = 0; CheckSearchData() local [all...] |
/foundation/arkui/ace_engine/frameworks/core/common/ |
H A D | event_manager.cpp | 988 TAG_LOGI(AceLogTag::ACE_INPUTTRACKING, "Tab index focus system handled this event"); in DispatchTabIndexEvent() 1008 "Dispatch tab index event: code:%{private}d/action:%{public}d on node: %{public}s/%{public}d.", event.code, in DispatchTabIndexEventNG() 1013 TAG_LOGD(AceLogTag::ACE_FOCUS, "Tab index handled the key event: code:%{private}d/action:%{public}d", in DispatchTabIndexEventNG() 1678 uint8_t index = 0; in AddKeyboardShortcutSingleKey() local 1684 permutation.emplace_back(++index); in AddKeyboardShortcutSingleKey() 1689 permutation.emplace_back(++index); in AddKeyboardShortcutSingleKey() 1694 permutation.emplace_back(++index); in AddKeyboardShortcutSingleKey() 1703 uint8_t index = 0; in AddKeyboardShortcutDoubleKeysWithCtrlShift() local 1713 permutation.emplace_back(++index); in AddKeyboardShortcutDoubleKeysWithCtrlShift() 1719 permutation.emplace_back(++index); in AddKeyboardShortcutDoubleKeysWithCtrlShift() 1730 uint8_t index = 0; AddKeyboardShortcutDoubleKeysWithCtrlAlt() local 1757 uint8_t index = 0; AddKeyboardShortcutDoubleKeysWithShiftAlt() local 1798 uint8_t index = 0; AddKeyboardShortcutTripleKeys() local [all...] |
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | canvas_component.cpp | 312 for (uint16_t index = 0; index < attrMapLength; index++) { in GetContext() 313 RegisterAttributeFunc(component->dom_, attrMap_[index].attrName, attrMap_[index].setterName, in GetContext() 314 attrMap_[index].getterName); in GetContext() 319 for (uint16_t index = 1; index < methodMapLength; index++) { in GetContext() 320 RegisterDrawMethodFunc(component->dom_, methodMap_[index] in GetContext() 2178 GetSubFont(const char *font, const uint8_t index, char *&subFont) const GetSubFont() argument [all...] |
/third_party/mesa3d/src/compiler/glsl/ |
H A D | linker.cpp | 307 * array using an index too large for its actual size assigned at in visit() 809 "`%s' but outermost dimension has an index" in validate_intrastage_arrays() 821 "`%s' but outermost dimension has an index" in validate_intrastage_arrays() 1181 int index = link_cross_validate_uniform_block(prog->data, &blks, in interstage_cross_validate_uniform_blocks() local 1184 if (index == -1) { in interstage_cross_validate_uniform_blocks() 1200 ifc_blk_stage_idx[i][index] = j; in interstage_cross_validate_uniform_blocks() 1510 unsigned index = ifc_type->field_index(var->name); in visit() local 1511 assert(index < ifc_type->length); in visit() 1512 assert(interface_vars[index] == NULL); in visit() 1513 interface_vars[index] in visit() 2776 unsigned index; assign_attribute_or_color_locations() local [all...] |
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-array-gen.cc | 213 [&](TNode<UintPtrT> index) { in VisitAllTypedArrayElements() 218 // If `index` is out of bounds, Get returns undefined. in VisitAllTypedArrayElements() 219 CheckJSTypedArrayIndex(index, typed_array, &detached); in VisitAllTypedArrayElements() 225 value = LoadFixedTypedArrayElementAsTagged(data_ptr, index, in VisitAllTypedArrayElements() 238 k_ = index; in VisitAllTypedArrayElements() 239 a_ = processor(this, value.value(), index); in VisitAllTypedArrayElements() 1225 // Let index be O.[[ArrayIteratorNextIndex]]. in TF_BUILTIN() 1226 TNode<Number> index = LoadJSArrayIteratorNextIndex(iterator); in TF_BUILTIN() local 1227 CSA_DCHECK(this, IsNumberNonNegativeSafeInteger(index)); in TF_BUILTIN() 1238 // If {array} is a JSArray, then the {index} mus in TF_BUILTIN() [all...] |
/third_party/node/deps/v8/src/compiler/backend/mips64/ |
H A D | code-generator-mips64.cc | 42 FloatRegister OutputSingleRegister(size_t index = 0) { in OutputSingleRegister() 43 return ToSingleRegister(instr_->OutputAt(index)); in OutputSingleRegister() 46 FloatRegister InputSingleRegister(size_t index) { in InputSingleRegister() argument 47 return ToSingleRegister(instr_->InputAt(index)); in InputSingleRegister() 56 Register InputOrZeroRegister(size_t index) { in InputOrZeroRegister() argument 57 if (instr_->InputAt(index)->IsImmediate()) { in InputOrZeroRegister() 58 DCHECK_EQ(0, InputInt32(index)); in InputOrZeroRegister() 61 return InputRegister(index); in InputOrZeroRegister() 64 DoubleRegister InputOrZeroDoubleRegister(size_t index) { in InputOrZeroDoubleRegister() argument 65 if (instr_->InputAt(index) in InputOrZeroDoubleRegister() 70 InputOrZeroSingleRegister(size_t index) InputOrZeroSingleRegister() argument 76 InputImmediate(size_t index) InputImmediate() argument 102 InputOperand(size_t index) InputOperand() argument 111 const size_t index = *first_index; MemoryOperand() local 139 HasRegisterInput(Instruction* instr, size_t index) HasRegisterInput() argument 147 OutOfLineRecordWrite(CodeGenerator* gen, Register object, Register index, Register value, Register scratch0, Register scratch1, RecordWriteMode mode, StubCallMode stub_mode) OutOfLineRecordWrite() argument 837 Register index = i.InputRegister(1); AssembleArchInstruction() local 1674 size_t index = 0; AssembleArchInstruction() local 1684 size_t index = 0; AssembleArchInstruction() local 4419 RootIndex index; AssembleConstructFrame() local [all...] |
/third_party/node/deps/v8/src/compiler/backend/mips/ |
H A D | code-generator-mips.cc | 41 FloatRegister OutputSingleRegister(size_t index = 0) { in OutputSingleRegister() 42 return ToSingleRegister(instr_->OutputAt(index)); in OutputSingleRegister() 45 FloatRegister InputSingleRegister(size_t index) { in InputSingleRegister() argument 46 return ToSingleRegister(instr_->InputAt(index)); in InputSingleRegister() 55 Register InputOrZeroRegister(size_t index) { in InputOrZeroRegister() argument 56 if (instr_->InputAt(index)->IsImmediate()) { in InputOrZeroRegister() 57 DCHECK_EQ(0, InputInt32(index)); in InputOrZeroRegister() 60 return InputRegister(index); in InputOrZeroRegister() 63 DoubleRegister InputOrZeroDoubleRegister(size_t index) { in InputOrZeroDoubleRegister() argument 64 if (instr_->InputAt(index) in InputOrZeroDoubleRegister() 69 InputOrZeroSingleRegister(size_t index) InputOrZeroSingleRegister() argument 75 InputImmediate(size_t index) InputImmediate() argument 100 InputOperand(size_t index) InputOperand() argument 109 const size_t index = *first_index; MemoryOperand() local 137 HasRegisterInput(Instruction* instr, size_t index) HasRegisterInput() argument 145 OutOfLineRecordWrite(CodeGenerator* gen, Register object, Register index, Register value, Register scratch0, Register scratch1, RecordWriteMode mode, StubCallMode stub_mode) OutOfLineRecordWrite() argument 876 Register index = i.InputRegister(1); AssembleArchInstruction() local 1560 size_t index = 0; AssembleArchInstruction() local 1570 size_t index = 0; AssembleArchInstruction() local 4215 RootIndex index; AssembleConstructFrame() local [all...] |
/applications/standard/contacts_data/ability/common/utils/include/ |
H A D | contacts_json_utils.h | 35 void GetValue(std::vector<std::string> &columnNames, unsigned int &index, Json::Value &data,
|
/foundation/ability/form_fwk/test/unittest/fms_form_info_mgr_test/ |
H A D | fms_form_info_mgr_test.cpp | 37 "src": "./js/pages/card/index",
|
/foundation/arkui/ace_engine/frameworks/core/components/grid/ |
H A D | grid_element.h | 37 void BuildGridData(int32_t index, int32_t count);
|