/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributedkvstore/src/ |
H A D | napi_queue.cpp | 54 size_t index = argc - 1; in GetCbInfo() local 56 napi_status tyst = napi_typeof(env, argv[index], &type); in GetCbInfo() 58 status = napi_create_reference(env, argv[index], 1, &callbackRef); in GetCbInfo() 60 argc = index; in GetCbInfo()
|
/foundation/distributeddatamgr/kv_store/test/distributedtest/single_kvstore_client/ |
H A D | distributed_test.cpp | 138 auto index = returnBuf.find(",");
in GetRemote() 139 status = Status(std::stoi(returnBuf.substr(0, index)));
in GetRemote() 140 if (length > static_cast<int>(index + 1)) {
in GetRemote() 141 value = Value(returnBuf.substr(index + 1));
in GetRemote()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/test/ |
H A D | feature_test.cpp | 181 int32_t index = 1;
in HWTEST_F() local 185 int32_t ret = mockFeature.OnAppInstall(bundleName, user, index);
in HWTEST_F() 188 ret = mockFeature.OnAppUpdate(bundleName, user, index);
in HWTEST_F() 191 ret = mockFeature.OnAppUninstall(bundleName, user, index);
in HWTEST_F()
|
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/cloud_data/src/ |
H A D | napi_queue.cpp | 56 size_t index = argc - 1; in GetCbInfo() local 58 napi_status tyst = napi_typeof(env, argv[index], &type); in GetCbInfo() 60 status = napi_create_reference(env, argv[index], 1, &callbackRef); in GetCbInfo() 62 argc = index; in GetCbInfo()
|
/foundation/distributedhardware/distributed_audio/common/dfx_utils/src/ |
H A D | daudio_hidumper.cpp | 141 for (uint32_t index = 0; index < adapterdesc_.size(); index++) {
in GetSinkInfo() 142 AudioAdapterDescriptor desc = adapterdesc_[index];
in GetSinkInfo()
|
/foundation/distributeddatamgr/udmf/framework/jskitsimpl/common/ |
H A D | napi_queue.cpp | 46 size_t index = argc - 1; in GetCbInfo() local 48 napi_status tyst = napi_typeof(env, argv[index], &type); in GetCbInfo() 50 status = napi_create_reference(env, argv[index], 1, &callbackRef); in GetCbInfo() 52 argc = index; in GetCbInfo()
|
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/att/ |
H A D | att_common.h | 275 * @brief lookup AttConnectInfo info by cid and output parameter index. 278 * @param2 index Indicates the pointer to index. 281 void AttGetConnectInfoIndexByCidOutIndex(uint16_t cid, uint16_t *index, AttConnectInfo **connect); 284 * @brief lookup AttConnectInfo info by connectHandle and output parameter index. 287 * @param2 index Indicates the pointer to index. 290 void AttGetConnectInfoIndexByConnectHandle(uint16_t connectHandle, uint16_t *index, AttConnectInfo **connect); 308 * @brief lookup AttConnectingInfo info by cid and output parameter index. 311 * @param2 index Indicate [all...] |
/foundation/filemanagement/storage_service/services/storage_daemon/mtp/src/ |
H A D | mtp_device_monitor.cpp | 67 for (int index = 0; index < rawDevSize; ++index) { in MonitorDevice() 68 LIBMTP_raw_device_t *rawDevice = &rawDevices[index]; in MonitorDevice()
|
/third_party/ffmpeg/libavformat/ |
H A D | tta.c | 179 int index = av_index_search_timestamp(st, timestamp, flags); in tta_read_seek() local 180 if (index < 0) in tta_read_seek() 182 if (avio_seek(s->pb, ffstream(st)->index_entries[index].pos, SEEK_SET) < 0) in tta_read_seek() 185 c->currentframe = index; in tta_read_seek()
|
/third_party/gn/src/gn/ |
H A D | hash_table_base.h | 457 size_t index = hash & mask; in NodeLookup() local 460 Node* node = buckets_ + index; in NodeLookup() 470 index = (index + 1) & mask; in NodeLookup()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/ |
H A D | AbstractPathValueMapper.java | 38 // optional index separately. Note that this is very sloppy matching and the path string will 143 * having an array index) then the referenced value is assumed to be an existing path whose 218 // If no index is given (e.g. "/foo/bar") then treat it as index 0 (i.e. "/foo/bar[0]"). in parse() 219 int index = m.group(2) != null ? Integer.parseUnsignedInt(m.group(2)) : 0; in parse() 224 checkArgument(index < values.size(), in parse() 225 "index for alias /%s[%s] is out of bounds", path, index); in parse() 230 return values.get(index).resolve(null); in parse()
|
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A D | utils.h | 275 T& operator[](int index) const { 276 DOUBLE_CONVERSION_ASSERT(0 <= index && index < length_); 277 return start_[index];
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | genIndexFilters.bat | 25 # This perl script updates the filters in the transliterator index file. 32 # will have to hand-edit the index file. 34 # This script writes a new index file. The new file has to then be 71 # Convert the index file from Java to C format
|
/third_party/icu/icu4c/source/i18n/ |
H A D | collationdatabuilder.h | 179 inline ConditionalCE32 *getConditionalCE32(int32_t index) const { in getConditionalCE32() 180 return static_cast<ConditionalCE32 *>(conditionalCE32s[index]); in getConditionalCE32() 186 static uint32_t makeBuilderContextCE32(int32_t index) { in makeBuilderContextCE32() argument 187 return Collation::makeCE32FromTagAndIndex(Collation::BUILDER_DATA_TAG, index); in makeBuilderContextCE32() 201 * Sets cond->next to the index of the first new item 202 * and returns the index of the last new item.
|
H A D | double-conversion-utils.h | 288 T& operator[](int index) const { 289 DOUBLE_CONVERSION_ASSERT(0 <= index && index < length_); 290 return start_[index];
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-string.c | 292 for (ecma_length_t index = 0; index < args_number; index++) in ecma_builtin_string_object_from_code_point() 294 ecma_value_t to_number_value = ecma_op_to_number (args[index]); in ecma_builtin_string_object_from_code_point()
|
/third_party/jerryscript/jerry-core/vm/ |
H A D | vm-stack.c | 103 for (uint32_t index = vm_stack_top_p[-3]; index < collection_p->item_count; index++) in vm_stack_context_abort() 105 ecma_free_value (buffer_p[index]); in vm_stack_context_abort()
|
/third_party/mesa3d/src/gtest/src/ |
H A D | gtest-printers.cc | 273 for (size_t index = 0; index < len; ++index) { in PrintCharsAsStringTo() 274 const CharType cur = begin[index]; in PrintCharsAsStringTo()
|
/third_party/mesa3d/src/gallium/drivers/virgl/ |
H A D | virgl_query.c | 96 unsigned query_type, unsigned index) in virgl_create_query() 122 pipe_to_virgl_query(query_type), index, query->buf, 0); in virgl_create_query() 242 int index, in virgl_get_query_result_resource() 250 virgl_encode_get_query_result_qbo(vctx, query->handle, qbo, (flags & PIPE_QUERY_WAIT), result_type, offset, index); in virgl_get_query_result_resource() 95 virgl_create_query(struct pipe_context *ctx, unsigned query_type, unsigned index) virgl_create_query() argument 238 virgl_get_query_result_resource(struct pipe_context *ctx, struct pipe_query *q, enum pipe_query_flags flags, enum pipe_query_value_type result_type, int index, struct pipe_resource *resource, unsigned offset) virgl_get_query_result_resource() argument
|
/third_party/node/lib/ |
H A D | punycode.js | 234 for (let index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */) { 236 // `index` is the index of the next character to be consumed. 244 if (index >= inputLength) { 248 const digit = basicToDigit(input.charCodeAt(index++));
|
/third_party/musl/porting/linux/user/include/fortify/ |
H A D | unistd.h | 35 #define __DIAGNOSE_BOS_TRIVIALLY_GE_NO_OVERFLOW(bos_val, index) \ 36 ((__DIAGNOSE_BOS_DYNAMIC_CHECK_IMPL_AND((bos_val), >=, (index), (bos_val) <= (FORTIFY_SSIZE_MAX)) && \ 37 __builtin_constant_p(index) && (index) <= (FORTIFY_SSIZE_MAX)))
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | collationdatabuilder.h | 179 inline ConditionalCE32 *getConditionalCE32(int32_t index) const { in getConditionalCE32() 180 return static_cast<ConditionalCE32 *>(conditionalCE32s[index]); in getConditionalCE32() 186 static uint32_t makeBuilderContextCE32(int32_t index) { in makeBuilderContextCE32() argument 187 return Collation::makeCE32FromTagAndIndex(Collation::BUILDER_DATA_TAG, index); in makeBuilderContextCE32() 201 * Sets cond->next to the index of the first new item 202 * and returns the index of the last new item.
|
H A D | double-conversion-utils.h | 288 T& operator[](int index) const { 289 DOUBLE_CONVERSION_ASSERT(0 <= index && index < length_); 290 return start_[index];
|
H A D | transreg.h | 275 * Return the index-th available ID. index must be between 0 276 * and countAvailableIDs() - 1, inclusive. If index is out of 278 * @param index the given index. 279 * @return the index-th available ID. index must be between 0 280 * and countAvailableIDs() - 1, inclusive. If index is out of 284 const UnicodeString& getAvailableID(int32_t index) const; 294 * @param index whic [all...] |
/third_party/node/deps/v8/src/ast/ |
H A D | modules.h | 95 // requested. It also functions as an index into the SourceTextModuleInfo's 103 // variable allocation, this will be be copied into the variable's index 129 int index) in AstModuleRequest() 133 index_(index) {} in AstModuleRequest() 144 int index() const { return index_; } in index() function in v8::internal::SourceTextModuleDescriptor::AstModuleRequest 153 // The index at which we will place the request in SourceTextModuleInfo's 276 return (*it)->index(); in AddModuleRequest() 127 AstModuleRequest(const AstRawString* specifier, const ImportAssertions* import_assertions, int position, int index) AstModuleRequest() argument
|