| /developtools/ace_ets2bundle/koala-wrapper/koalaui/interop/dist/lib/src/interop/ |
| D | SerializerBase.js | 19 …exports.isInstanceOf = exports.isResource = exports.runtimeType = exports.Tags = exports.RuntimeTy… 44 * Must be synced with "enum Tags" in C++. 46 var Tags; variable 47 (function (Tags) { argument 48 Tags[Tags["UNDEFINED"] = 101] = "UNDEFINED"; 49 Tags[Tags["INT32"] = 102] = "INT32"; 50 Tags[Tags["FLOAT32"] = 103] = "FLOAT32"; 51 Tags[Tags["STRING"] = 104] = "STRING"; 52 Tags[Tags["LENGTH"] = 105] = "LENGTH"; 53 Tags[Tags["RESOURCE"] = 106] = "RESOURCE"; [all …]
|
| D | DeserializerBase.js | 141 case SerializerBase_1.Tags.UNDEFINED: 143 case SerializerBase_1.Tags.INT32: 145 case SerializerBase_1.Tags.FLOAT32:
|
| D | SerializerBase.d.ts | 37 * Must be synced with "enum Tags" in C++. 39 export declare enum Tags { enum
|
| /developtools/hdc/test/unittest/common/ |
| D | tlv_ut.cpp | 32 uint8_t *BuildTlv(const std::vector<uint32_t> tags, 48 uint8_t *HdcTLVTest::BuildTlv(const std::vector<uint32_t> tags, in BuildTlv() argument 53 if (tags.size() != sizes.size() || tags.empty()) { in BuildTlv() 54 WRITE_LOG(LOG_WARN, "not valid size: %u, %u", tags.size(), sizes.size()); in BuildTlv() 75 for (; pos < tlvsize && i < tags.size(); i++) { in BuildTlv() 76 *(uint32_t *)(tlv + pos) = tags[i]; in BuildTlv() 77 *(uint32_t *)(tlv + pos + sizeof(tags[i])) = sizes[i]; in BuildTlv() 106 std::vector<uint32_t> tags = { 1 }; variable 109 uint8_t *tlv = this->BuildTlv(tags, sizes, 0xAB, tlvsize); 122 std::vector<uint32_t> tags = { 1 }; variable [all …]
|
| /developtools/hdc/src/common/ |
| D | tlv.h | 28 // construct a empty TlvBuf object with valid tags 31 // construct a TlvBuf object from a TLV buffer with valid tags 45 … // // if return true, invalid_tags is empty, else the invalid tags will bring out by invalid_tags
|
| /developtools/ace_ets2bundle/compiler/ |
| D | build_components_file.js | 386 const tags = parseTags(node); 387 const flags = filterFlags(tags); 397 * Parse all JSDoc tags from a AST Node. 403 const tags = []; 407 tags.push(jsTag.tagName.getText()); 409 return tags; 413 * Filter useful tags from a tag array. 417 * @param {string} tags 420 function filterFlags(tags) { argument 423 tags.forEach((tag) => {
|
| /developtools/integration_verification/tools/fotff/pkg/gitee_common/ |
| D | get_newer_or_fail.go | 83 tags, err := m.getAllTags(lastSuccessTime, failedBuildStartTime) 88 if len(tags) == 0 { 96 resp, err := utils.DoSimpleHttpReq(http.MethodGet, tags[len(tags)-1].TagFileURL, nil, nil)
|
| /developtools/ace_ets2bundle/compiler/insight_intents/schema/ |
| D | SearchHospital_1.0.1.json | 42 "tags", 72 "tags": { object
|
| /developtools/ace_ets2bundle/koala-wrapper/koalaui/interop/src/interop/ |
| D | DeserializerBase.ts | 16 import { Tags, CallbackResource } from "./SerializerBase"; 150 case Tags.UNDEFINED: 152 case Tags.INT32: 154 case Tags.FLOAT32:
|
| D | SerializerBase.ts | 42 * Must be synced with "enum Tags" in C++. 44 export enum Tags { enum 211 this.writeInt8(Tags.UNDEFINED) 216 this.view.setInt8(this.position, Tags.UNDEFINED) 221 this.view.setInt8(this.position, Tags.INT32) 226 this.view.setInt8(this.position, Tags.FLOAT32)
|
| /developtools/profiler/hidebug/test/unittest/native/ |
| D | hidebug_test.cpp | 216 uint64_t tags = HIDEBUG_TRACE_TAG_COMMON_LIBRARY; variable 219 … auto captureResult = OH_HiDebug_StartAppTraceCapture(flag, tags, limitSize, fileName, fileLength); 240 uint64_t tags = HIDEBUG_TRACE_TAG_COMMON_LIBRARY; variable 243 … auto captureResult = OH_HiDebug_StartAppTraceCapture(flag, tags, limitSize, fileName, fileLength); 246 …auto captureResult2 = OH_HiDebug_StartAppTraceCapture(flag, tags, limitSize, fileName, fileLength); 266 uint64_t tags = HIDEBUG_TRACE_TAG_COMMON_LIBRARY; variable 269 … auto captureResult = OH_HiDebug_StartAppTraceCapture(flag, tags, limitSize, fileName, fileLength);
|
| /developtools/profiler/hidebug/interfaces/ets/ani/hidebug/src/ |
| D | ani_hidebug.cpp | 101 static bool GetTraceParam(ani_env *env, ani_array_double tagsAni, std::vector<uint64_t> &tags) in GetTraceParam() argument 105 HILOG_ERROR(LOG_CORE, "Get input tags size failed."); in GetTraceParam() 109 HILOG_ERROR(LOG_CORE, "The length of tags array exceeds the limit."); in GetTraceParam() 114 HILOG_ERROR(LOG_CORE, "Get input tags value failed."); in GetTraceParam() 119 tags.push_back(static_cast<uint64_t>(aniValues[i])); in GetTraceParam() 326 std::vector<uint64_t> tags; in StartAppTraceCapture() local 327 … (AniUtil::ParseAniEnum(env, flagAni, traceFlag) != ANI_OK || !GetTraceParam(env, tagsAni, tags)) { in StartAppTraceCapture() 333 …uint64_t tag = std::accumulate(tags.begin(), tags.end(), 0ull, [](uint64_t a, uint64_t b) { return… in StartAppTraceCapture()
|
| /developtools/ace_ets2bundle/koala-wrapper/koalaui/interop/src/arkts/ |
| D | DeserializerBase.sts | 21 import { Tags, CallbackResource } from "./SerializerBase"; 177 if (tag == Tags.UNDEFINED) { 179 } else if (tag == Tags.INT32) { 181 } else if (tag == Tags.FLOAT32) {
|
| D | SerializerBase.sts | 41 * Must be synced with "enum Tags" in C++. 43 export class Tags { 226 this.writeInt8(Tags.UNDEFINED as int32) 238 this.writeTag(Tags.UNDEFINED) 243 this.writeTag(Tags.INT32) 247 this.writeTag(Tags.FLOAT32)
|
| /developtools/hiperf/ |
| D | .gitignore | 4 .tags
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/entity/ |
| D | BlockHead.java | 65 * @param tag tags of signature block 87 * @param tag tags of signature block
|
| D | SignatureBlockTags.java | 19 * Define class of hap signature block tags 25 * Default value of signature block tags
|
| /developtools/profiler/device/plugins/native_daemon/src/ |
| D | debug_logger.cpp | 187 void DebugLogger::SetLogTags(const std::string &tags) in SetLogTags() argument 189 HLOGI(" tags is '%s'", tags.c_str()); in SetLogTags() 190 auto tagLevels = StringSplit(tags, ","); in SetLogTags()
|
| /developtools/smartperf_host/smartperf_host/trace_streamer/ |
| D | commit.md | 18 ```clang-format version 6.0.0-1ubuntu2 (tags/RELEASE_600/final)```
|
| /developtools/profiler/ |
| D | hisysevent.yaml | 43 TAGS: {type: STRING, arrsize: 100, desc: tags}
|
| /developtools/smartperf_host/smartperf_device/ |
| D | hisysevent.yaml | 43 TAGS: {type: STRING, arrsize: 100, desc: tags}
|
| /developtools/hiperf/src/ |
| D | debug_logger.cpp | 185 void DebugLogger::SetLogTags(const std::string &tags) in SetLogTags() argument 187 HLOGI(" tags is '%s'", tags.c_str()); in SetLogTags() 188 auto tagLevels = StringSplit(tags, ","); in SetLogTags()
|
| /developtools/smartperf_host/smartperf_host/trace_streamer/src/table/monitor/ |
| D | log_table.cpp | 74 if (logInfoObj_.Tags()[CurrentRow()] != INVALID_UINT64) { in Column() 75 auto tagDataIndex = static_cast<size_t>(logInfoObj_.Tags()[CurrentRow()]); in Column()
|
| /developtools/profiler/hidebug/interfaces/cj/ |
| D | hidebug_ffi.cpp | 205 …char *FfiHidebugStartAppTraceCapture(CArrUnit tags, int32_t flag, uint32_t limitSize, int32_t &cod… in FfiHidebugStartAppTraceCapture() argument 208 uint64_t *tagPtr = static_cast<uint64_t *>(tags.head); in FfiHidebugStartAppTraceCapture() 209 for (int64_t i = 0; i < tags.size; i++) { in FfiHidebugStartAppTraceCapture()
|
| /developtools/hapsigner/hapsigntool_cpp/ |
| D | bundle.json | 13 "tags": [ array
|