Home
last modified time | relevance | path

Searched refs:index (Results 3651 - 3675 of 11953) sorted by relevance

1...<<141142143144145146147148149150>>...479

/foundation/arkui/ace_engine/frameworks/core/components/tab_bar/
H A Dtabs_event.h27 explicit TabContentChangeEvent(int32_t index) : BaseEventInfo("TabContentChangeEvent"), index_(index) {} in TabContentChangeEvent() argument
/foundation/arkui/ace_engine/frameworks/core/components_v2/water_flow/
H A Dwater_flow_position_controller.cpp22 int32_t index, bool /* smooth */, ScrollAlign /* align */, std::optional<float> /* extraOffset */) in ScrollToIndex()
28 waterFlow->ScrollToIndex(index); in ScrollToIndex()
21 ScrollToIndex( int32_t index, bool , ScrollAlign , std::optional<float> ) ScrollToIndex() argument
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/
H A Dsingle_ver_natural_store.h35 int index; member
38 static RegisterFuncType GetFuncType(int index, const TransPair *transMap, int32_t len);
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/include/
H A Ddrawing_typeface.h65 * @param index file index.
70 OH_Drawing_Typeface* OH_Drawing_TypefaceCreateFromFile(const char* path, int index);
116 * @param index memory stream index.
121 OH_Drawing_Typeface* OH_Drawing_TypefaceCreateFromStream(OH_Drawing_MemoryStream*, int32_t index);
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/
H A Dfont_style_set_impl.h33 virtual Typeface* CreateTypeface(int index) = 0;
35 virtual void GetStyle(int32_t index, FontStyle* fontStyle, std::string* styleName) = 0;
/test/testfwk/developer_test/
H A Dohtest27 for index in range (1, len(sys.argv)):
28 cmd += " " + sys.argv[index]
/third_party/icu/icu4c/source/test/intltest/
H A Dunits_router_test.cpp17 void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par = NULL) override;
24 void UnitsRouterTest::runIndexedTest(int32_t index, UBool exec, const char *&name, char * /*par*/) { in runIndexedTest() argument
H A Ditutil.h20 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ) override;
25 void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL) override;
/third_party/libphonenumber/cpp/src/phonenumbers/geocoding/
H A Ddefault_map_storage.h44 // Returns the phone number prefix located at the provided index.
45 int32_t GetPrefix(int index) const;
48 // at the provided index. If the description is not available in the current
50 const char* GetDescription(int index) const;
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_query_sw.h51 etna_sw_get_driver_query_info(struct pipe_screen *pscreen, unsigned index,
56 unsigned index,
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DDescriptorBase.cs42 internal DescriptorBase(FileDescriptor file, string fullName, int index) in DescriptorBase() argument
46 Index = index; in DescriptorBase()
50 /// The index of this descriptor within its parent descriptor.
53 /// This returns the index of this descriptor within its parent, for
55 /// types, e.g. one enum type with index 0 and one message type with index 0.)
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/
H A Dbyte_array_table_builder.h29 // Get the byte value at the specified index. The index is relative to the
31 // @param index index relative to the start of the table
32 // @return byte value at the given index
33 virtual int32_t ByteValue(int32_t index);
35 // Set the byte value at the specified index. The index is relative to the
37 // @param index index relativ
[all...]
/third_party/typescript/tests/baselines/reference/
H A DassignmentCompat1.js3 var y: { [index: string]: any };
4 var z: { [index: number]: any };
6 y = x; // Ok because index signature type is any
8 z = x; // Ok because index signature type is any
20 y = x; // Ok because index signature type is any
22 z = x; // Ok because index signature type is any
H A DindexSignaturesInferentialTyping.js2 function foo<T>(items: { [index: number]: T }): T { return undefined; }
3 function bar<T>(items: { [index: string]: T }): T { return undefined; }
/third_party/zlib/examples/
H A Dzran.h26 // build an index, with access points about every span bytes of uncompressed
33 // On success, *built points to the resulting index.
36 // Use the index to read len bytes from offset into buf. Return the number of
40 // index, this function should not return an error unless the file was modified
41 // somehow since the index was generated, given that deflate_index_build() had
45 // Z_STREAM_ERROR if the index is not valid, or Z_ERRNO if there is an error
47 ptrdiff_t deflate_index_extract(FILE *in, struct deflate_index *index,
50 // Deallocate an index built by deflate_index_build().
51 void deflate_index_free(struct deflate_index *index);
/third_party/mesa3d/src/compiler/nir/
H A Dnir_builder.h362 nir_load_system_value(nir_builder *build, nir_intrinsic_op op, int index,
1146 nir_ssa_def *index)
1152 assert(index->bit_size == parent->dest.ssa.bit_size);
1160 deref->arr.index = nir_src_for_ssa(index);
1173 int64_t index)
1176 nir_ssa_def *idx_ssa = nir_imm_intN_t(build, index,
1184 nir_ssa_def *index)
1190 assert(index->bit_size == parent->dest.ssa.bit_size);
1198 deref->arr.index
[all...]
/third_party/node/deps/v8/src/runtime/
H A Druntime-regexp.cc52 // capture index or -1 on failure.
128 // If tag <= 0 then it is the negation of a start index of a substring of
135 // the negation of an index into the replacement string.
142 // tag == REPLACEMENT_STRING: data is index into array of substrings
457 int index = 0; in FindStringIndices() local
460 index = search.Search(subject, index); in FindStringIndices()
461 if (index < 0) return; in FindStringIndices()
462 indices->push_back(index); in FindStringIndices()
463 index in FindStringIndices()
883 RegExpExec(Isolate* isolate, Handle<JSRegExp> regexp, Handle<String> subject, int32_t index, Handle<RegExpMatchInfo> last_match_info, RegExp::ExecQuirks exec_quirks) RegExpExec() argument
896 ExperimentalOneshotExec( Isolate* isolate, Handle<JSRegExp> regexp, Handle<String> subject, int32_t index, Handle<RegExpMatchInfo> last_match_info, RegExp::ExecQuirks exec_quirks) ExperimentalOneshotExec() argument
916 int32_t index = 0; RUNTIME_FUNCTION() local
929 int32_t index = 0; RUNTIME_FUNCTION() local
942 int32_t index = 0; RUNTIME_FUNCTION() local
957 int32_t index = 0; RUNTIME_FUNCTION() local
1538 const int index = match_indices->Capture(0); RUNTIME_FUNCTION() local
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Dsqlite_single_ver_relational_storage_extend_executor.cpp167 int index = 1; in IncreaseCursorOnAssetData() local
168 errCode = SQLiteUtils::BindInt64ToStatement(statement, index++, cursor); in IncreaseCursorOnAssetData()
173 errCode = SQLiteUtils::BindTextToStatement(statement, index, gid); in IncreaseCursorOnAssetData()
287 const TableSchema &tableSchema, const CloudSyncBatch &data, const int &index, sqlite3_stmt *&statement) in InitFillUploadAssetStatement()
289 VBucket vBucket = data.assets.at(index); in InitFillUploadAssetStatement()
294 std::tie(errCode, std::ignore) = GetAssetsByGidOrHashKey(tableSchema, cloudGid, data.hashKey.at(index), dbAssets); in InitFillUploadAssetStatement()
306 if (DBCommon::IsRecordError(data.extend.at(index)) || DBCommon::IsRecordAssetsMissing(data.extend.at(index))) { in InitFillUploadAssetStatement()
320 int64_t rowid = data.rowid[index]; in InitFillUploadAssetStatement()
884 errCode = SQLiteUtils::BindInt64ToStatement(statement, 1, syncBatch.rowid[i]); // 1 is rowid index in GetReferenceGidByStmt()
286 InitFillUploadAssetStatement(OpType opType, const TableSchema &tableSchema, const CloudSyncBatch &data, const int &index, sqlite3_stmt *&statement) InitFillUploadAssetStatement() argument
1062 GetLocalDataKey(size_t index, const DownloadData &downloadData) GetLocalDataKey() argument
1156 size_t index = 0; UpdateAssetIdOnUserTable() local
1291 int index = 0; GetAssetsByGidOrHashKey() local
1328 int index = 1; InitGetAssetStmt() local
1533 BindAssetToBlobStatement(const Asset &asset, int index, sqlite3_stmt *&stmt) BindAssetToBlobStatement() argument
1549 BindAssetsToBlobStatement(const Assets &assets, int index, sqlite3_stmt *&stmt) BindAssetsToBlobStatement() argument
1781 int index = 1; MarkFlagAsUploadFinished() local
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dwasm-code-manager.cc202 const int index = in RegisterTrapHandlerData() local
206 // TODO(eholk): if index is negative, fail. in RegisterTrapHandlerData()
207 CHECK_LE(0, index); in RegisterTrapHandlerData()
208 set_trap_handler_index(index); in RegisterTrapHandlerData()
229 module->lazily_generated_names.LookupFunctionName(wire_bytes, index()); in DebugName()
237 const FunctionSig* sig = module->functions[index()].sig; in DebugName()
250 "wasm-function[%d]", index())); in DebugName()
353 FLAG_print_wasm_code_function_index == static_cast<int>(index())); in MaybePrint()
378 if (!IsAnonymous()) os << "index: " << index() << "\ in Disassemble()
1190 AddCode( int index, const CodeDesc& desc, int stack_slots, uint32_t tagged_parameter_slots, base::Vector<const byte> protected_instructions_data, base::Vector<const byte> source_position_table, WasmCode::Kind kind, ExecutionTier tier, ForDebugging for_debugging) AddCode() argument
1210 AddCodeWithCodeSpace( int index, const CodeDesc& desc, int stack_slots, uint32_t tagged_parameter_slots, base::Vector<const byte> protected_instructions_data, base::Vector<const byte> source_position_table, WasmCode::Kind kind, ExecutionTier tier, ForDebugging for_debugging, base::Vector<uint8_t> dst_code_bytes, const JumpTablesRef& jump_tables) AddCodeWithCodeSpace() argument
1420 AddDeserializedCode( int index, base::Vector<byte> instructions, int stack_slots, uint32_t tagged_parameter_slots, int safepoint_table_offset, int handler_table_offset, int constant_pool_offset, int code_comments_offset, int unpadded_binary_size, base::Vector<const byte> protected_instructions_data, base::Vector<const byte> reloc_info, base::Vector<const byte> source_position_table, WasmCode::Kind kind, ExecutionTier tier) AddDeserializedCode() argument
1471 HasCodeWithTier(uint32_t index, ExecutionTier tier) const HasCodeWithTier() argument
1834 GetNearRuntimeStubEntry( WasmCode::RuntimeStubId index, const JumpTablesRef& jump_tables) const GetNearRuntimeStubEntry() argument
1865 uint32_t index = JumpTableAssembler::FarJumpSlotOffsetToIndex(offset); GetRuntimeStubId() local
2301 int index = result.func_index; AddCompiledCode() local
[all...]
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/
H A Dapi.js[all...]
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_msl.cpp72 // arg buffer indexes, also maintain a lookup by argument buffer index. in add_msl_resource_binding()
117 void CompilerMSL::add_dynamic_buffer(uint32_t desc_set, uint32_t binding, uint32_t index) in add_dynamic_buffer() argument
120 buffers_requiring_dynamic_offset[pair] = { index, 0 }; in add_dynamic_buffer()
383 // The view index here is derived from the instance index. in build_implicit_builtins()
389 // If a non-zero base instance is used, we need to adjust for it when calculating the view index. in build_implicit_builtins()
2206 uint32_t index = get_extended_decoration(var.self, SPIRVCrossDecorationInterfaceMemberIndex); in add_plain_variable_to_interface_block()
2210 to_member_name(ib_type, index), " = ", to_expression(var.initializer), "[", in add_plain_variable_to_interface_block()
2258 uint32_t index = get_decoration(var.self, DecorationIndex); in add_plain_variable_to_interface_block() local
2259 set_member_decoration(ib_type.self, ib_mbr_idx, DecorationIndex, index); in add_plain_variable_to_interface_block()
2423 uint32_t index = get_decoration(var.self, DecorationIndex); add_composite_variable_to_interface_block() local
4103 ensure_member_packing_rules_msl(SPIRType &ib_type, uint32_t index) ensure_member_packing_rules_msl() argument
7163 uint32_t index = get_extended_decoration(ops[2], SPIRVCrossDecorationInterfaceMemberIndex); emit_tessellation_access_chain() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/picker/
H A Ddatepicker_dialog_view.cpp498 for (uint32_t index = 0; index < dateNode->GetChildren().size(); index++) {
499 auto dateStackNode = AceType::DynamicCast<FrameNode>(dateNode->GetChildAtIndex(index));
508 dateChildNodeLayoutProperty->UpdateVisibility((0 == index) ? VisibleType::VISIBLE : VisibleType::GONE);
510 layoutProperty->UpdateLayoutWeight((0 == index) ? RATIO_TWO : 0);
512 dateChildNodeLayoutProperty->UpdateVisibility((0 == index) ? VisibleType::GONE : VisibleType::VISIBLE);
513 layoutProperty->UpdateLayoutWeight((0 == index) ? 0 : 1);
878 void DatePickerDialogView::UpdateButtonStyles(const std::vector<ButtonInfo>& buttonInfos, size_t index,
881 if (index >
[all...]
/foundation/multimedia/av_codec/test/unittest/audio_test/
H A Daudio_decoder_capi_unit_test.cpp122 static void OnInputBufferAvailable(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, void *userData) in OnInputBufferAvailable() argument
127 signal->inQueue_.push(index); in OnInputBufferAvailable()
132 static void OnOutputBufferAvailable(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, OH_AVCodecBufferAttr *attr, in OnOutputBufferAvailable() argument
138 signal->outQueue_.push(index); in OnOutputBufferAvailable()
158 void HandleInputEOS(const uint32_t index);
159 int32_t HandleNormalInput(const uint32_t &index, const int64_t pts, const size_t size);
230 void AudioCodeCapiDecoderUnitTest::HandleInputEOS(const uint32_t index) in HandleInputEOS() argument
237 OH_AudioDecoder_PushInputData(audioDec_, index, info); in HandleInputEOS()
242 int32_t AudioCodeCapiDecoderUnitTest::HandleNormalInput(const uint32_t &index, const int64_t pts, const size_t size) in HandleNormalInput() argument
252 ret = OH_AudioDecoder_PushInputData(audioDec_, index, inf in HandleNormalInput()
278 uint32_t index = signal_->inQueue_.front(); InputFunc() local
328 uint32_t index = signal_->outQueue_.front(); OutputFunc() local
718 uint32_t index = 0; HWTEST_F() local
736 uint32_t index = 1024; HWTEST_F() local
990 uint32_t index = 0; HWTEST_F() local
1008 uint32_t index = 1024; HWTEST_F() local
1329 uint32_t index = 0; HWTEST_F() local
1350 uint32_t index = 1024; HWTEST_F() local
1592 uint32_t index = 0; HWTEST_F() local
1610 uint32_t index = 1024; HWTEST_F() local
1809 uint32_t index = 0; HWTEST_F() local
1827 uint32_t index = 1024; HWTEST_F() local
2102 uint32_t index = 0; HWTEST_F() local
2120 uint32_t index = 1024; HWTEST_F() local
2349 uint32_t index = 0; HWTEST_F() local
2367 uint32_t index = 1024; HWTEST_F() local
2563 uint32_t index = 0; HWTEST_F() local
2581 uint32_t index = 1024; HWTEST_F() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A DFrameCapture.cpp1141 for (size_t index : calls) in MarkResourceIDActive()
1143 (*setupCalls)[index].isActive = true; in MarkResourceIDActive()
1373 if (locationVar.index >= uniforms.size()) in CaptureUpdateUniformLocations()
1379 const gl::LinkedUniform &uniform = uniforms[locationVar.index]; in CaptureUpdateUniformLocations()
1440 for (GLuint index = 0; index < uniformBlocks.size(); ++index) in CaptureUpdateUniformBlockIndexes()
1448 CaptureString(uniformBlocks[index].name.c_str(), &nameParam); in CaptureUpdateUniformBlockIndexes()
1451 params.addValueParam("index", ParamType::TGLuint, index); in CaptureUpdateUniformBlockIndexes()
1690 gl::ImageIndex index = attachment.getTextureImageIndex(); CaptureFramebufferAttachment() local
2172 CaptureTextureContents(std::vector<CallCapture> *setupCalls, gl::State *replayState, const gl::Texture *texture, const gl::ImageIndex &index, const gl::ImageDesc &desc, GLuint size, const void *data) CaptureTextureContents() argument
2836 gl::ImageIndex index = imageIter.next(); CaptureShareGroupMidExecutionSetup() local
4104 getParam(const char *paramName, ParamType paramType, int index) getParam() argument
4119 getParamFlexName(const char *paramName1, const char *paramName2, ParamType paramType, int index) getParamFlexName() argument
4617 int index = 0; trackTextureUpdate() local
4904 GLuint index = 0; maybeCapturePreCallUpdates() local
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_textpicker.cpp310 const std::vector<double>& index) { in ParseTextPickerSelectedObject()
313 if (index.size() == 1) { in ParseTextPickerSelectedObject()
315 JSRef<JSVal> newJSVal = JSRef<JSVal>::Make(ToJSValue(index[0])); in ParseTextPickerSelectedObject()
319 for (uint32_t i = 0; i < index.size(); i++) { in ParseTextPickerSelectedObject()
320 indexArray->SetValueAt(i, JSRef<JSVal>::Make(ToJSValue(index[i]))); in ParseTextPickerSelectedObject()
676 std::vector<std::string>& values, uint32_t index, bool isHasSelectAttr) in ParseInternalArray()
691 if (index + 1 > values.size()) { in ParseInternalArray()
699 auto valueIterator = std::find(resultStr.begin(), resultStr.end(), values[index]); in ParseInternalArray()
701 values[index] = resultStr.front(); in ParseInternalArray()
704 values[index] in ParseInternalArray()
675 ParseInternalArray(const JSRef<JSArray>& jsRangeValue, std::vector<uint32_t>& selectedValues, std::vector<std::string>& values, uint32_t index, bool isHasSelectAttr) ParseInternalArray() argument
721 SetSelectedValues(std::vector<uint32_t>& selectedValues, std::vector<std::string>& values, uint32_t index, bool isHasSelectAttr, std::vector<std::string>& resultStr) SetSelectedValues() argument
1027 ProcessCascadeSelected( const std::vector<NG::TextCascadePickerOptions>& options, uint32_t index, std::vector<uint32_t>& selectedValues) ProcessCascadeSelected() argument
[all...]

Completed in 47 milliseconds

1...<<141142143144145146147148149150>>...479