Home
last modified time | relevance | path

Searched refs:value (Results 8926 - 8950 of 27198) sorted by relevance

1...<<351352353354355356357358359360>>...1088

/third_party/typescript/tests/baselines/reference/
H A DpromiseTypeStrictNull.js224 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
226 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
227 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
228 function step(result) { result.done ? resolve(result.value) : adopt(result.value)
[all...]
/third_party/python/Python/
H A Dpreconfig.c537 long value = strtol(str, (char **)&endptr, 10); in _Py_str_to_int() local
541 if (value < INT_MIN || value > INT_MAX) { in _Py_str_to_int()
545 *result = (int)value; in _Py_str_to_int()
557 int value; in _Py_get_env_flag() local
558 if (_Py_str_to_int(var, &value) < 0 || value < 0) { in _Py_get_env_flag()
560 value = 1; in _Py_get_env_flag()
562 if (*flag < value) { in _Py_get_env_flag()
563 *flag = value; in _Py_get_env_flag()
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dmap_field.cc98 // value of CLEAN after all previous changes have been synced. in SyncRepeatedFieldWithMap()
139 // value of CLEAN after all previous changes have been synced. in SyncMapWithRepeatedField()
202 // default value. in AllocateMapValue()
206 TYPE* value = Arena::Create<TYPE>(MapFieldBase::arena_); \ in AllocateMapValue()
207 map_val->SetValue(value); \ in AllocateMapValue()
223 Message* value = message.New(MapFieldBase::arena_); in AllocateMapValue() local
224 map_val->SetValue(value); in AllocateMapValue()
232 // Always use mutable map because users may change the map value by in InsertOrLookupMapValue()
300 // Copy map value in MergeFrom()
492 // Remove existing map value wit in SyncMapWithRepeatedFieldNoLock()
521 Message* value = message.New(MapFieldBase::arena_); SyncMapWithRepeatedFieldNoLock() local
[all...]
/third_party/python/Modules/clinic/
H A Dzlibmodule.c.h725 "adler32($module, data, value=1, /)\n"
730 " value\n"
731 " Starting value of the checksum.\n"
739 zlib_adler32_impl(PyObject *module, Py_buffer *data, unsigned int value);
746 unsigned int value = 1; in zlib_adler32() local
761 value = (unsigned int)PyLong_AsUnsignedLongMask(args[1]); in zlib_adler32()
762 if (value == (unsigned int)-1 && PyErr_Occurred()) { in zlib_adler32()
766 return_value = zlib_adler32_impl(module, &data, value); in zlib_adler32()
778 "crc32($module, data, value=0, /)\n"
783 " value\
799 unsigned int value = 0; zlib_crc32() local
[all...]
/third_party/skia/third_party/externals/angle2/include/EGL/
H A Degl.h114 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCONFIGATTRIBPROC) (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value);
123 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value);
125 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value);
139 EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value);
148 EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value);
150 EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value);
176 typedef EGLBoolean (EGLAPIENTRYP PFNEGLSURFACEATTRIBPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value);
181 EGLAPI EGLBoolean EGLAPIENTRY eglSurfaceAttrib (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value);
317 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBPROC) (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value);
328 EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttrib (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value);
[all...]
/third_party/selinux/libsepol/cil/src/
H A Dcil_internal.h373 unsigned int value; member
454 int value; member
506 int value; member
531 int value; member
596 uint16_t value; member
601 uint16_t value; member
682 int value; member
969 int value; member
997 int cil_string_to_uint32(const char *string, uint32_t *value, int base);
998 int cil_string_to_uint64(const char *string, uint64_t *value, in
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
H A DProgramD3D.h268 const GLfloat *value) override;
272 const GLfloat *value) override;
276 const GLfloat *value) override;
280 const GLfloat *value) override;
284 const GLfloat *value) override;
288 const GLfloat *value) override;
292 const GLfloat *value) override;
296 const GLfloat *value) override;
300 const GLfloat *value) override;
498 const GLfloat *value);
[all...]
/device/soc/rockchip/common/sdk_linux/include/linux/
H A Dbpf.h55 /* map is generic key/value storage optionally accesible by eBPF programs */
72 int (*map_update_elem)(struct bpf_map *map, void *key, void *value, u64 flags);
74 int (*map_push_elem)(struct bpf_map *map, void *value, u64 flags);
75 int (*map_pop_elem)(struct bpf_map *map, void *value);
76 int (*map_peek_elem)(struct bpf_map *map, void *value);
92 /* Direct value access helpers. */
198 int (*map_lookup_elem)(struct bpf_offloaded_map *map, void *key, void *value);
199 int (*map_update_elem)(struct bpf_offloaded_map *map, void *key, void *value, u64 flags);
234 * arg_type, ret_type and reg_type. For example, a pointer value may be null,
275 ARG_PTR_TO_MAP_VALUE, /* pointer to stack used as map value */
961 bpf_struct_ops_map_sys_lookup_elem(struct bpf_map *map, void *key, void *value) bpf_struct_ops_map_sys_lookup_elem() argument
1730 sock_map_update_elem_sys(struct bpf_map *map, void *key, void *value, u64 flags) sock_map_update_elem_sys() argument
1746 bpf_fd_reuseport_array_lookup_elem(struct bpf_map *map, void *key, void *value) bpf_fd_reuseport_array_lookup_elem() argument
1751 bpf_fd_reuseport_array_update_elem(struct bpf_map *map, void *key, void *value, u64 map_flags) bpf_fd_reuseport_array_update_elem() argument
[all...]
/kernel/linux/common_modules/tzdriver/tui/
H A Dtui.c469 mb_pack->operation.params[1].value.a = font_file_size; in tc_ns_register_tui_font_mem()
987 if (memcpy_s(*buf_to_tee, buf_len, &tui_param->value,
996 mb_pack->operation.params[0].value.a =
998 mb_pack->operation.params[0].value.b =
1000 mb_pack->operation.params[1].value.a = buf_len;
1011 mb_pack->operation.params[0].value.a = tui_param->notch;
1013 mb_pack->operation.params[0].value.b = make32(g_dss_fd->comp.base.xres, g_dss_fd->comp.base.yres);
1015 mb_pack->operation.params[0].value.b = make32(g_dss_fd->panel_info.xres, g_dss_fd->panel_info.yres);
1017 mb_pack->operation.params[1].value.a = tui_param->phy_width;
1018 mb_pack->operation.params[1].value
1777 long value = 0; global() local
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/socionext/
H A Dnetsec.c383 static int netsec_mac_write(struct netsec_priv *priv, u32 addr, u32 value) in netsec_mac_write() argument
385 netsec_write(priv, MAC_REG_DATA, value); in netsec_mac_write()
443 u32 value = 0; in netsec_mac_update_to_phy_state() local
445 value = phydev->duplex ? NETSEC_GMAC_MCR_REG_FULL_DUPLEX_COMMON : in netsec_mac_update_to_phy_state()
449 value |= NETSEC_MCR_PS; in netsec_mac_update_to_phy_state()
453 value |= NETSEC_GMAC_MCR_REG_FES; in netsec_mac_update_to_phy_state()
455 value |= NETSEC_GMAC_MCR_REG_CST | NETSEC_GMAC_MCR_REG_JE; in netsec_mac_update_to_phy_state()
458 value |= NETSEC_GMAC_MCR_REG_IBN; in netsec_mac_update_to_phy_state()
460 if (netsec_mac_write(priv, GMAC_REG_MCR, value)) in netsec_mac_update_to_phy_state()
712 /* Make sure we update the value, anyon in netsec_process_tx()
1395 u32 value; netsec_reset_hardware() local
1487 u32 value = 0; netsec_start_gmac() local
1553 u32 value; netsec_stop_gmac() local
[all...]
/kernel/linux/linux-5.10/drivers/net/usb/
H A Daqc111.c25 static int aqc111_read_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, in aqc111_read_cmd_nopm() argument
31 USB_RECIP_DEVICE, value, index, data, size); in aqc111_read_cmd_nopm()
41 static int aqc111_read_cmd(struct usbnet *dev, u8 cmd, u16 value, in aqc111_read_cmd() argument
47 USB_RECIP_DEVICE, value, index, data, size); in aqc111_read_cmd()
57 static int aqc111_read16_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, in aqc111_read16_cmd_nopm() argument
62 ret = aqc111_read_cmd_nopm(dev, cmd, value, index, sizeof(*data), data); in aqc111_read16_cmd_nopm()
68 static int aqc111_read16_cmd(struct usbnet *dev, u8 cmd, u16 value, in aqc111_read16_cmd() argument
73 ret = aqc111_read_cmd(dev, cmd, value, index, sizeof(*data), data); in aqc111_read16_cmd()
80 u16 value, u16 index, u16 size, const void *data) in __aqc111_write_cmd()
86 "%s cmd=%#x reqtype=%#x value in __aqc111_write_cmd()
79 __aqc111_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype, u16 value, u16 index, u16 size, const void *data) __aqc111_write_cmd() argument
110 aqc111_write_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 size, void *data) aqc111_write_cmd_nopm() argument
121 aqc111_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 size, void *data) aqc111_write_cmd() argument
137 aqc111_write16_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 *data) aqc111_write16_cmd_nopm() argument
147 aqc111_write16_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 *data) aqc111_write16_cmd() argument
157 aqc111_write32_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, u16 index, u32 *data) aqc111_write32_cmd_nopm() argument
167 aqc111_write32_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index, u32 *data) aqc111_write32_cmd() argument
177 aqc111_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 size, void *data) aqc111_write_cmd_async() argument
185 aqc111_write16_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 *data) aqc111_write16_cmd_async() argument
[all...]
/kernel/linux/linux-5.10/sound/soc/intel/atom/
H A Dsst-atom-controls.c87 * tx map value is a bitfield where each bit represents a FW channel
99 * rx map value is a bitfield where each bit represents a slot
141 uinfo->value.enumerated.items = e->max; in sst_slot_enum_info()
143 if (uinfo->value.enumerated.item > e->max - 1) in sst_slot_enum_info()
144 uinfo->value.enumerated.item = e->max - 1; in sst_slot_enum_info()
145 strcpy(uinfo->value.enumerated.name, in sst_slot_enum_info()
146 e->texts[uinfo->value.enumerated.item]); in sst_slot_enum_info()
157 * an enumerated control, there is only one possible value.
177 ucontrol->value.enumerated.item[0] = mux; in sst_slot_get()
210 * Instead of the enum value bein
[all...]
/kernel/linux/linux-5.10/sound/sparc/
H A Ddbri.c87 MODULE_PARM_DESC(index, "Index value for Sun DBRI soundcard.");
104 MODULE_PARM_DESC(dbri_debug, "Debug value for Sun DBRI soundcard.");
119 #define DBRI_CMD(cmd, intr, value) ((cmd << 28) | \
121 value)
384 #define D_SDP_2SAME (1<<18) /* Report 2nd time in a row value received */
630 the buffer, and dbri_cmdsend() is called with the final pointer value
872 "with strange SDP value\n"); in setup_pipe()
2258 uinfo->value.integer.min = 0; in snd_cs4215_info_volume()
2260 uinfo->value.integer.max = DBRI_MAX_VOLUME; in snd_cs4215_info_volume()
2262 uinfo->value in snd_cs4215_info_volume()
[all...]
/kernel/linux/linux-5.10/drivers/media/tuners/
H A Dr820t.c68 u16 value; member
835 * same value again on this point. Probably, it is just an in r820t_sysfreq_sel()
1539 tmp.value = 255; in r820t_imr_cross()
1576 cross[i].value = rc; in r820t_imr_cross()
1578 if (cross[i].value < tmp.value) in r820t_imr_cross()
1603 if (iq[0].value > iq[i - 1].value) in r820t_compre_cor()
1616 * with min value: in r820t_compre_step()
1621 /* min value alread in r820t_compre_step()
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dbpf.h54 /* map is generic key/value storage optionally accesible by eBPF programs */
76 int (*map_update_elem)(struct bpf_map *map, void *key, void *value, u64 flags);
78 int (*map_push_elem)(struct bpf_map *map, void *value, u64 flags);
79 int (*map_pop_elem)(struct bpf_map *map, void *value);
80 int (*map_peek_elem)(struct bpf_map *map, void *value);
105 /* Direct value access helpers. */
221 void *key, void *value);
223 void *key, void *value, u64 flags);
262 * arg_type, ret_type and reg_type. For example, a pointer value may be null,
303 ARG_PTR_TO_MAP_VALUE, /* pointer to stack used as map value */
1030 bpf_struct_ops_map_sys_lookup_elem(struct bpf_map *map, void *key, void *value) bpf_struct_ops_map_sys_lookup_elem() argument
1908 sock_map_update_elem_sys(struct bpf_map *map, void *key, void *value, u64 flags) sock_map_update_elem_sys() argument
1927 bpf_fd_reuseport_array_lookup_elem(struct bpf_map *map, void *key, void *value) bpf_fd_reuseport_array_lookup_elem() argument
1933 bpf_fd_reuseport_array_update_elem(struct bpf_map *map, void *key, void *value, u64 map_flags) bpf_fd_reuseport_array_update_elem() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/tuners/
H A Dr820t.c68 u16 value; member
855 * same value again on this point. Probably, it is just an in r820t_sysfreq_sel()
1559 tmp.value = 255; in r820t_imr_cross()
1596 cross[i].value = rc; in r820t_imr_cross()
1598 if (cross[i].value < tmp.value) in r820t_imr_cross()
1623 if (iq[0].value > iq[i - 1].value) in r820t_compre_cor()
1636 * with min value: in r820t_compre_step()
1641 /* min value alread in r820t_compre_step()
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/socionext/
H A Dnetsec.c383 static int netsec_mac_write(struct netsec_priv *priv, u32 addr, u32 value) in netsec_mac_write() argument
385 netsec_write(priv, MAC_REG_DATA, value); in netsec_mac_write()
443 u32 value = 0; in netsec_mac_update_to_phy_state() local
445 value = phydev->duplex ? NETSEC_GMAC_MCR_REG_FULL_DUPLEX_COMMON : in netsec_mac_update_to_phy_state()
449 value |= NETSEC_MCR_PS; in netsec_mac_update_to_phy_state()
453 value |= NETSEC_GMAC_MCR_REG_FES; in netsec_mac_update_to_phy_state()
455 value |= NETSEC_GMAC_MCR_REG_CST | NETSEC_GMAC_MCR_REG_JE; in netsec_mac_update_to_phy_state()
458 value |= NETSEC_GMAC_MCR_REG_IBN; in netsec_mac_update_to_phy_state()
460 if (netsec_mac_write(priv, GMAC_REG_MCR, value)) in netsec_mac_update_to_phy_state()
726 /* Make sure we update the value, anyon in netsec_process_tx()
1403 u32 value; netsec_reset_hardware() local
1495 u32 value = 0; netsec_start_gmac() local
1561 u32 value; netsec_stop_gmac() local
[all...]
/kernel/linux/linux-6.6/drivers/net/usb/
H A Daqc111.c25 static int aqc111_read_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, in aqc111_read_cmd_nopm() argument
31 USB_RECIP_DEVICE, value, index, data, size); in aqc111_read_cmd_nopm()
41 static int aqc111_read_cmd(struct usbnet *dev, u8 cmd, u16 value, in aqc111_read_cmd() argument
47 USB_RECIP_DEVICE, value, index, data, size); in aqc111_read_cmd()
57 static int aqc111_read16_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, in aqc111_read16_cmd_nopm() argument
62 ret = aqc111_read_cmd_nopm(dev, cmd, value, index, sizeof(*data), data); in aqc111_read16_cmd_nopm()
68 static int aqc111_read16_cmd(struct usbnet *dev, u8 cmd, u16 value, in aqc111_read16_cmd() argument
73 ret = aqc111_read_cmd(dev, cmd, value, index, sizeof(*data), data); in aqc111_read16_cmd()
80 u16 value, u16 index, u16 size, const void *data) in __aqc111_write_cmd()
86 "%s cmd=%#x reqtype=%#x value in __aqc111_write_cmd()
79 __aqc111_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype, u16 value, u16 index, u16 size, const void *data) __aqc111_write_cmd() argument
110 aqc111_write_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 size, void *data) aqc111_write_cmd_nopm() argument
121 aqc111_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 size, const void *data) aqc111_write_cmd() argument
137 aqc111_write16_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 *data) aqc111_write16_cmd_nopm() argument
147 aqc111_write16_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 *data) aqc111_write16_cmd() argument
157 aqc111_write32_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, u16 index, u32 *data) aqc111_write32_cmd_nopm() argument
167 aqc111_write32_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index, u32 *data) aqc111_write32_cmd() argument
177 aqc111_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 size, void *data) aqc111_write_cmd_async() argument
185 aqc111_write16_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 *data) aqc111_write16_cmd_async() argument
[all...]
/kernel/linux/linux-6.6/sound/sparc/
H A Ddbri.c86 MODULE_PARM_DESC(index, "Index value for Sun DBRI soundcard.");
103 MODULE_PARM_DESC(dbri_debug, "Debug value for Sun DBRI soundcard.");
118 #define DBRI_CMD(cmd, intr, value) ((cmd << 28) | \
120 value)
383 #define D_SDP_2SAME (1<<18) /* Report 2nd time in a row value received */
629 the buffer, and dbri_cmdsend() is called with the final pointer value
871 "with strange SDP value\n"); in setup_pipe()
2258 uinfo->value.integer.min = 0; in snd_cs4215_info_volume()
2260 uinfo->value.integer.max = DBRI_MAX_VOLUME; in snd_cs4215_info_volume()
2262 uinfo->value in snd_cs4215_info_volume()
[all...]
/kernel/linux/linux-6.6/sound/soc/intel/atom/
H A Dsst-atom-controls.c87 * tx map value is a bitfield where each bit represents a FW channel
99 * rx map value is a bitfield where each bit represents a slot
141 uinfo->value.enumerated.items = e->max; in sst_slot_enum_info()
143 if (uinfo->value.enumerated.item > e->max - 1) in sst_slot_enum_info()
144 uinfo->value.enumerated.item = e->max - 1; in sst_slot_enum_info()
145 strcpy(uinfo->value.enumerated.name, in sst_slot_enum_info()
146 e->texts[uinfo->value.enumerated.item]); in sst_slot_enum_info()
157 * an enumerated control, there is only one possible value.
177 ucontrol->value.enumerated.item[0] = mux; in sst_slot_get()
210 * Instead of the enum value bein
[all...]
/third_party/ffmpeg/libavformat/
H A Dhttp.c158 { "cookies", "set cookies to be sent in applicable future requests, use newline delimited Set-Cookie HTTP field value syntax", OFFSET(cookies), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
321 delim = strchr(re->value, ';'); in redirect_cache_get()
326 expiry = strtoll(re->value, NULL, 10); in redirect_cache_get()
336 char *value; in redirect_cache_set() local
339 value = av_asprintf("%"PRIi64";%s", expiry, dest); in redirect_cache_set()
340 if (!value) { in redirect_cache_set()
344 ret = av_dict_set(&s->redirect_cache, source, value, AV_DICT_MATCH_CASE | AV_DICT_DONT_STRDUP_VAL); in redirect_cache_set()
945 char *name, *value; in parse_set_cookie() local
948 if ((name = av_strtok(param, "=", &value))) { in parse_set_cookie()
949 if (av_dict_set(dict, name, value, in parse_set_cookie()
[all...]
H A Dnutdec.c37 #define NUT_MAX_STREAMS 256 /* arbitrary sanity check value */
488 static void set_disposition_bits(AVFormatContext *avf, char *value, in set_disposition_bits() argument
494 if (!strcmp(ff_nut_dispositions[i].str, value)) in set_disposition_bits()
497 av_log(avf, AV_LOG_INFO, "unknown disposition type '%s'\n", value); in set_disposition_bits()
510 int64_t chapter_id, value, end; in decode_info_header() local
556 value = get_s(bc); in decode_info_header()
559 if (value == -1) { in decode_info_header()
562 } else if (value == -2) { in decode_info_header()
570 } else if (value == -3) { in decode_info_header()
572 value in decode_info_header()
892 int value; read_sm_data() local
[all...]
/third_party/googletest/googletest/test/
H A Dgoogletest-printers-test.cc32 // This file tests the universal value printer.
56 // Some user-defined types for testing the universal value printer.
135 PrintableViaPrintTo() : value() {} in PrintableViaPrintTo()
136 int value; member
140 *os << "PrintableViaPrintTo: " << x.value; in PrintTo()
157 const T& value() const { return value_; } in value() function in foo::PrintableViaPrintToTemplate
165 *os << "PrintableViaPrintToTemplate: " << x.value(); in PrintTo()
174 const T& value() const { return value_; } in value() function in foo::StreamableTemplateInFoo
183 return os << "StreamableTemplateInFoo: " << x.value(); in operator <<()
234 explicit Wrapper(T&& value) argument
236 const T& value() const { return value_; } value() function in testing::__anon3047::Wrapper
281 Print(const T& value) Print() argument
291 PrintByRef(const T& value) PrintByRef() argument
755 int value; global() member
1901 internal::Optional<int> value; TEST() local
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DVTimeZone.java173 * Gets the RFC2445 TZURL property value. When a <code>VTimeZone</code> instance was created from
174 * VTIMEZONE data, the value is set by the TZURL property value in the data. Otherwise,
175 * the initial value is null.
177 * @return The RFC2445 TZURL property value
186 * Sets the RFC2445 TZURL property value.
188 * @param url The TZURL property value.
200 * Gets the RFC2445 LAST-MODIFIED property value. When a <code>VTimeZone</code> instance was created
201 * from VTIMEZONE data, the value is set by the LAST-MODIFIED property value i
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DVTimeZone.java164 * Gets the RFC2445 TZURL property value. When a <code>VTimeZone</code> instance was created from
165 * VTIMEZONE data, the value is set by the TZURL property value in the data. Otherwise,
166 * the initial value is null.
168 * @return The RFC2445 TZURL property value
175 * Sets the RFC2445 TZURL property value.
177 * @param url The TZURL property value.
187 * Gets the RFC2445 LAST-MODIFIED property value. When a <code>VTimeZone</code> instance was created
188 * from VTIMEZONE data, the value is set by the LAST-MODIFIED property value i
[all...]

Completed in 55 milliseconds

1...<<351352353354355356357358359360>>...1088