/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | rd_utils.cpp | 548 GRD_DbValueT value = GRD_KVApiInfo.DBGetConfigApi(db, type); in RdDbGetVersion() local 549 version = value.value.longValue; in RdDbGetVersion() 561 GRD_DbValueT value; in RdDbSetVersion() local 562 value.type = GRD_DB_DATATYPE_INTEGER; in RdDbSetVersion() 563 value.value.longValue = version; in RdDbSetVersion() 564 return TransferGrdErrno(GRD_KVApiInfo.DBSetConfigApi(db, type, value)); in RdDbSetVersion()
|
/foundation/filemanagement/user_file_service/interfaces/kits/js/src/common/ |
H A D | file_info_shared_memory.h | 325 static bool WriteInt32(int32_t &value, SharedMemoryInfo &memInfo) in WriteInt32() argument 327 return WriteInteger<int32_t>(value, memInfo); in WriteInt32() 330 static bool WriteInt64(int64_t &value, SharedMemoryInfo &memInfo) in WriteInt64() argument 332 return WriteInteger<int64_t>(value, memInfo); in WriteInt64() 335 static bool ReadInt32(int32_t &value, SharedMemoryInfo &memInfo) in ReadInt32() argument 337 return ReadInteger<int32_t>(value, memInfo); in ReadInt32() 340 static bool ReadInt64(int64_t &value, SharedMemoryInfo &memInfo) in ReadInt64() argument 342 return ReadInteger<int64_t>(value, memInfo); in ReadInt64()
|
/test/testfwk/developer_test/src/core/config/ |
H A D | config_manager.py | 46 # 获取framework_config.xml中所有name的value,返回列表
60 # 遍历 name 节点 获取value 添加到data_list中
62 value = sub.attrib.get("name")
63 if value and value != "":
64 data_list.append(value)
69 # 获取framework_config.xml中test_category标签里name、desc、timeout的value,返回字典
89 # 获取framework_config.xml中all_category标签里name的value,返回列表 如:unittest、moduletest、systemtest、performance
303 value = sub.attrib.get("name")
304 if value an [all...] |
/test/xts/acts/communication/nfc_Controller/entry/src/ohosTest/js/test/ |
H A D | MifareClassicTag.test.js | 262 let value = 0x20; 263 await MifareClassicTag.incrementBlock(blockIndex, value).then((data) => { 292 let value = 0x20; 293 MifareClassicTag.incrementBlock(blockIndex, value, (err, data)=> { 322 let value = 0x20; 323 await MifareClassicTag.decrementBlock(blockIndex, value).then((data) => { 351 let value = 0x20; 352 MifareClassicTag.decrementBlock(blockIndex, value, (err, data)=> {
|
/third_party/elfutils/lib/ |
H A D | stdatomic-fbsd.h | 62 * language independent type to represent a Boolean value 111 #define ATOMIC_VAR_INIT(value) (value) 112 #define atomic_init(obj, value) __c11_atomic_init(obj, value) 114 #define ATOMIC_VAR_INIT(value) { .__val = (value) } 115 #define atomic_init(obj, value) ((void)((obj)->__val = (value)))
|
/third_party/ffmpeg/libavcodec/ |
H A D | tta.c | 275 int32_t value; in tta_decode_frame() local 298 value = (unary << k) + get_bits(&gb, k); in tta_decode_frame() 300 value = unary; in tta_decode_frame() 305 rice->sum1 += value - (rice->sum1 >> 4); in tta_decode_frame() 310 value += ff_tta_shift_1[rice->k0]; in tta_decode_frame() 312 rice->sum0 += value - (rice->sum0 >> 4); in tta_decode_frame() 319 // extract coded value in tta_decode_frame() 320 *p = 1 + ((value >> 1) ^ ((value & 1) - 1)); in tta_decode_frame()
|
/third_party/elfutils/libebl/ |
H A D | eblobjnote.c | 195 attribute and value encodings. */ in ebl_object_note() 206 /* In most cases the value comes right after the encoding bytes. */ in ebl_object_note() 207 const char *value = &data[2]; in ebl_object_note() local 236 value += strlen (&data[1]) + 1; in ebl_object_note() 250 size_t bytes = namesz - (value - name); in ebl_object_note() 253 val = *(unsigned char *) value; in ebl_object_note() 255 val = read_2ubyte_unaligned (&dbg, value); in ebl_object_note() 257 val = read_4ubyte_unaligned (&dbg, value); in ebl_object_note() 259 val = read_8ubyte_unaligned (&dbg, value); in ebl_object_note() 266 printf ("\"%s\"", value); in ebl_object_note() [all...] |
/third_party/glfw/src/ |
H A D | init.c | 333 strcpy(description, "Invalid value for parameter"); in _glfwInputError() 440 GLFWAPI void glfwInitHint(int hint, int value) in glfwInitHint() argument 445 _glfwInitHints.hatButtons = value; in glfwInitHint() 448 _glfwInitHints.angleType = value; in glfwInitHint() 451 _glfwInitHints.platformID = value; in glfwInitHint() 454 _glfwInitHints.ns.chdir = value; in glfwInitHint() 457 _glfwInitHints.ns.menubar = value; in glfwInitHint() 460 _glfwInitHints.x11.xcbVulkanSurface = value; in glfwInitHint() 463 _glfwInitHints.wl.libdecorMode = value; in glfwInitHint()
|
/third_party/backends/backend/ |
H A D | pie-scsidef.h | 95 static inline void putnbyte(unsigned char * pnt, unsigned int value, unsigned int nbytes) in putnbyte() argument 101 pnt[i] = value & 0xff; in putnbyte() 102 value = value >> 8; in putnbyte() 109 static inline void putnbyte1(unsigned char * pnt, unsigned int value, unsigned int nbytes) in putnbyte1() argument 115 pnt[i] = value & 0xff; in putnbyte1() 116 value = value >> 8; in putnbyte1()
|
/third_party/benchmark/src/ |
H A D | benchmark_runner.cc | 170 BenchTimeType ParseBenchMinTime(const std::string& value) { in ParseBenchMinTime() argument 173 if (value.empty()) { in ParseBenchMinTime() 179 if (value.back() == 'x') { in ParseBenchMinTime() 183 IterationCount num_iters = std::strtol(value.c_str(), &p_end, 10); in ParseBenchMinTime() 188 << "Malformed iters value passed to --benchmark_min_time: `" << value in ParseBenchMinTime() 196 bool has_suffix = value.back() == 's'; in ParseBenchMinTime() 205 double min_time = std::strtod(value.c_str(), &p_end); in ParseBenchMinTime() 211 << "Malformed seconds value passed to --benchmark_min_time: `" << value in ParseBenchMinTime() [all...] |
/third_party/gn/src/gn/ |
H A D | target.h | 209 void set_contents(const Value& value) { generated_file().contents_ = value; } in set_contents() argument 213 void set_output_conversion(const Value& value) { in set_output_conversion() argument 214 generated_file().output_conversion_ = value; in set_output_conversion() 218 void set_rebase(const SourceDir& value) { generated_file().rebase_ = value; } in set_rebase() argument 231 void set_write_runtime_deps_output(const OutputFile& value) { in set_write_runtime_deps_output() argument 232 write_runtime_deps_output_ = value; in set_write_runtime_deps_output()
|
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
H A D | TailoredSet.java | 60 enumTailoredRange(range.startCodePoint, range.endCodePoint, range.value, this); in forData() 269 addPrefix(data, tp, c, te.value); in comparePrefixes() 275 addPrefix(baseData, bp, c, be.value); in comparePrefixes() 281 compare(c, te.value, be.value); in comparePrefixes() 335 compare(c, te.value, be.value); in compareContractions() 347 addPrefix(d, e.chars, c, e.value); in addPrefixes()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Trie2.java | 25 * characters with the same value, which is generally the case with Unicode 89 // * First code point of the single-value range ending with U+10ffff, in createFromSerialized() 234 * Get the value for a code point as stored in the Trie2. 237 * @return the value 243 * Get the trie value for a UTF-16 code unit. 246 * range, one for lead surrogates, which is the value that will be 247 * returned by this function, and a second value that is returned 253 * This function, together with the alternate value for lead surrogates, 261 * If so, then set a special (application-specific) value for the 266 * follows. If so, assemble the supplementary code point and look up its value 343 public int value; global() field in Trie2.Range 503 public int value; global() field in Trie2.CharSequenceValues [all...] |
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | calendar.h | 394 * plus input keyword and that value has different behavior than creation with the 424 * @param status Output param set to success/failure code on exit. If any value 438 * @param status Output param set to success/failure code on exit. If any value 487 * @param status Output param set to success/failure code on exit. If any value 502 * @param status Output param set to success/failure code on exit. If any value 517 * @param status Output param set to success/failure code on exit. If any value 534 * Adding a positive value always means moving forward in time, so for the Gregorian calendar, 536 * the numeric value of the field itself). 542 * @param status Output param set to success/failure code on exit. If any value 557 * Adding a positive value alway 2456 internalSet(UCalendarDateFields field, int32_t value) internalSet() argument [all...] |
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | ulistfmttest.c | 273 const UFormattedValue *value = ulistfmt_resultAsValue(fl, &status); in TestUList21871_A() local 278 const UChar *str = ufmtval_getString(value, &len, &status); in TestUList21871_A() 288 bool hasMore = ufmtval_nextPosition(value, fpos, &status); in TestUList21871_A() 298 hasMore = ufmtval_nextPosition(value, fpos, &status); in TestUList21871_A() 321 const UFormattedValue *value = ulistfmt_resultAsValue(fl, &status); in TestUList21871_B() local 326 const UChar *str = ufmtval_getString(value, &len, &status); in TestUList21871_B() 336 bool hasMore = ufmtval_nextPosition(value, fpos, &status); in TestUList21871_B() 346 hasMore = ufmtval_nextPosition(value, fpos, &status); in TestUList21871_B()
|
/third_party/icu/icu4c/source/python/icutools/databuilder/ |
H A D | request_types.py | 33 for key, value in list(kwargs.items()): 35 if isinstance(value, list): 36 value = copy.copy(value) 37 elif isinstance(value, dict): 38 value = copy.deepcopy(value) 39 setattr(self, key, value)
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
H A D | BiDiConformanceTest.java | 126 Field 1: A value representing the paragraph direction, as follows: 131 - a negative number whose absolute value is taken as paragraph level; 295 int value=Integer.parseInt(levelString); in parseLevels() 296 if(0<=value && value<=(Bidi.MAX_EXPLICIT_LEVEL+1)) { in parseLevels() 297 levels[levelsCount++]=(byte)value; in parseLevels() 298 directionBits|=(1<<(value&1)); in parseLevels() 316 int value=Integer.parseInt(orderingString); in parseOrdering() 317 if(value<1000) { in parseOrdering() 318 ordering[orderingCount++]=value; in parseOrdering() [all...] |
/third_party/icu/tools/unicode/c/genprops/ |
H A D | bidipropsbuilder.cpp | 70 bits 23..16 contain the max value for Joining_Group, 99 delta stored in the trie data value. Only those where the delta does not fit 126 containing the Joining_Group value. 248 /* delta does not fit into the trie properties value, store in the mirrors[] table */ in encodeBidiMirroringGlyph() 288 uint32_t value=(uint32_t)delta<<UBIDI_MIRROR_DELTA_SHIFT; in setProps() local 290 value|=U_MASK(UBIDI_IS_MIRRORED_SHIFT); in setProps() 293 value|=U_MASK(UBIDI_BIDI_CONTROL_SHIFT); in setProps() 296 value|=U_MASK(UBIDI_JOIN_CONTROL_SHIFT); in setProps() 298 value|=(uint32_t)bpt<<UBIDI_BPT_SHIFT; in setProps() 299 value| in setProps() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | Trie2.java | 26 * characters with the same value, which is generally the case with Unicode 91 // * First code point of the single-value range ending with U+10ffff, in createFromSerialized() 236 * Get the value for a code point as stored in the Trie2. 239 * @return the value 245 * Get the trie value for a UTF-16 code unit. 248 * range, one for lead surrogates, which is the value that will be 249 * returned by this function, and a second value that is returned 255 * This function, together with the alternate value for lead surrogates, 263 * If so, then set a special (application-specific) value for the 268 * follows. If so, assemble the supplementary code point and look up its value 346 public int value; global() field in Trie2.Range 508 public int value; global() field in Trie2.CharSequenceValues [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/ |
H A D | TailoredSet.java | 62 enumTailoredRange(range.startCodePoint, range.endCodePoint, range.value, this); in forData() 271 addPrefix(data, tp, c, te.value); in comparePrefixes() 277 addPrefix(baseData, bp, c, be.value); in comparePrefixes() 283 compare(c, te.value, be.value); in comparePrefixes() 337 compare(c, te.value, be.value); in compareContractions() 349 addPrefix(d, e.chars, c, e.value); in addPrefixes()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/ |
H A D | BiDiConformanceTest.java | 129 Field 1: A value representing the paragraph direction, as follows: 134 - a negative number whose absolute value is taken as paragraph level; 298 int value=Integer.parseInt(levelString); in parseLevels() 299 if(0<=value && value<=(Bidi.MAX_EXPLICIT_LEVEL+1)) { in parseLevels() 300 levels[levelsCount++]=(byte)value; in parseLevels() 301 directionBits|=(1<<(value&1)); in parseLevels() 319 int value=Integer.parseInt(orderingString); in parseOrdering() 320 if(value<1000) { in parseOrdering() 321 ordering[orderingCount++]=value; in parseOrdering() [all...] |
/third_party/json/include/nlohmann/detail/input/ |
H A D | input_adapters.hpp | 117 // end up as the same value, e.g. 0xFFFFFFFF. 362 value = sizeof(value_type) > 1 367 struct iterator_input_adapter_factory<IteratorType, enable_if_t<is_iterator_of_multibyte<IteratorType>::value>> 444 std::is_pointer<CharT>::value&& 445 !std::is_array<CharT>::value&& 446 std::is_integral<typename std::remove_pointer<CharT>::type>::value&& 470 std::is_pointer<CharT>::value&& 471 std::is_integral<typename std::remove_pointer<CharT>::type>::value&& 479 std::is_same<typename iterator_traits<IteratorType>::iterator_category, std::random_access_iterator_tag>::value,
|
/third_party/mesa3d/src/gallium/frontends/lavapipe/ |
H A D | lvp_image.c | 216 uint64_t value; in lvp_GetImageSubresourceLayout() local 225 0, &value); in lvp_GetImageSubresourceLayout() 227 pLayout->rowPitch = value; in lvp_GetImageSubresourceLayout() 236 0, &value); in lvp_GetImageSubresourceLayout() 238 pLayout->offset = value; in lvp_GetImageSubresourceLayout() 247 0, &value); in lvp_GetImageSubresourceLayout() 250 pLayout->depthPitch = value; in lvp_GetImageSubresourceLayout() 254 pLayout->arrayPitch = value; in lvp_GetImageSubresourceLayout()
|
/third_party/node/deps/v8/tools/ |
H A D | stats-viewer.py | 153 value = counter.Value() 155 counter_changed = ui_counter.Set(value) 244 value = Tkinter.Label(self.root, width=15, anchor=Tkinter.W, 246 value.grid(row=index, column=(1 + i), padx=1, pady=1) 285 def Set(self, value): 289 value: The value to display 292 True if the value had changed, otherwise False. The first call 295 if value == self.last_value: 298 self.last_value = value [all...] |
/third_party/node/src/ |
H A D | node_file-inl.h | 224 v8::Local<v8::Value> value = in Reject() local 227 v8::Local<v8::Promise::Resolver> resolver = value.As<v8::Promise::Resolver>(); in Reject() 232 void FSReqPromise<AliasedBufferT>::Resolve(v8::Local<v8::Value> value) { in Resolve() argument 240 USE(resolver->Resolve(env()->context(), value).FromJust()); in Resolve() 275 v8::Local<v8::Value> value = args[index]; in GetReqWrap() local 276 if (value->IsObject()) { in GetReqWrap() 277 return Unwrap<FSReqBase>(value.As<v8::Object>()); in GetReqWrap() 282 if (value->StrictEquals(env->fs_use_promises_symbol())) { in GetReqWrap() 330 // ctx must be checked using value->IsObject() before being passed.
|