Home
last modified time | relevance | path

Searched refs:value (Results 12426 - 12450 of 27198) sorted by relevance

1...<<491492493494495496497498499500>>...1088

/third_party/typescript/tests/baselines/reference/
H A DkeyofAndIndexedAccessErrors.js58 function setProperty<T, K extends keyof T>(obj: T, key: K, value: T[K]) {
59 obj[key] = value;
166 function setProperty(obj, key, value) {
167 obj[key] = value;
/third_party/skia/third_party/externals/egl-registry/api/1.0/EGL/
H A Degl.h59 /* Out-of-band attribute value */
120 #define EGL_SLOW_CONFIG 0x3050 /* EGL_CONFIG_CAVEAT value */
121 #define EGL_NON_CONFORMANT_CONFIG 0x3051 /* EGL_CONFIG_CAVEAT value */
122 #define EGL_TRANSPARENT_RGB 0x3052 /* EGL_TRANSPARENT_TYPE value */
123 #define EGL_RGB_BUFFER 0x308E /* EGL_COLOR_BUFFER_TYPE value */
124 #define EGL_LUMINANCE_BUFFER 0x308F /* EGL_COLOR_BUFFER_TYPE value */
167 #define EGL_COLORSPACE_sRGB 0x3089 /* EGL_COLORSPACE value */
168 #define EGL_COLORSPACE_LINEAR 0x308A /* EGL_COLORSPACE value */
171 #define EGL_ALPHA_FORMAT_NONPRE 0x308B /* EGL_ALPHA_FORMAT value */
172 #define EGL_ALPHA_FORMAT_PRE 0x308C /* EGL_ALPHA_FORMAT value */
[all...]
/third_party/skia/third_party/externals/egl-registry/api/1.0/
H A Degl.h59 /* Out-of-band attribute value */
120 #define EGL_SLOW_CONFIG 0x3050 /* EGL_CONFIG_CAVEAT value */
121 #define EGL_NON_CONFORMANT_CONFIG 0x3051 /* EGL_CONFIG_CAVEAT value */
122 #define EGL_TRANSPARENT_RGB 0x3052 /* EGL_TRANSPARENT_TYPE value */
123 #define EGL_RGB_BUFFER 0x308E /* EGL_COLOR_BUFFER_TYPE value */
124 #define EGL_LUMINANCE_BUFFER 0x308F /* EGL_COLOR_BUFFER_TYPE value */
167 #define EGL_COLORSPACE_sRGB 0x3089 /* EGL_COLORSPACE value */
168 #define EGL_COLORSPACE_LINEAR 0x308A /* EGL_COLORSPACE value */
171 #define EGL_ALPHA_FORMAT_NONPRE 0x308B /* EGL_ALPHA_FORMAT value */
172 #define EGL_ALPHA_FORMAT_PRE 0x308C /* EGL_ALPHA_FORMAT value */
[all...]
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DLazyFieldLiteTest.java78 MessageLite value = lazyField.getValue(TestAllExtensions.getDefaultInstance()); in testSetValueEx()
80 assertEquals(value, lazyField.getValue(TestAllExtensions.getDefaultInstance())); in testSetValueEx()
120 TestAllExtensions value = in testMergeExtensions()
122 assertEquals(message, value); in testMergeExtensions()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DFieldInfo.java52 * The actual type stored in the oneof value for this field. Since the oneof value is an {@link
219 * @param oneofStoredType the actual type stored in the oneof value for this field. Since the
220 * oneof value is an {@link Object}, primitives will store their boxed type. Must be non-null.
369 * Gets the actual type stored in the oneof value by this field. Since the oneof value is an
502 * @param oneofStoredType the actual type stored in the oneof value for this field. Since the
503 * oneof value is an {@link Object}, primitives will store their boxed type.
574 private static boolean isExactlyOneBitSet(int value) { in isExactlyOneBitSet() argument
575 return value ! in isExactlyOneBitSet()
[all...]
H A DRepeatedFieldBuilderV3.java342 for (final MType value : values) { in addAllMessages()
343 checkNotNull(value); in addAllMessages()
361 for (MType value : values) { in addAllMessages()
362 addMessage(value); in addAllMessages()
H A DRepeatedFieldBuilder.java342 for (final MType value : values) { in addAllMessages()
343 checkNotNull(value); in addAllMessages()
361 for (MType value : values) { in addAllMessages()
362 addMessage(value); in addAllMessages()
/third_party/pulseaudio/src/modules/x11/
H A Dmodule-x11-xsmp.c272 val_program.value = (char*) PACKAGE_NAME; in pa__init()
273 val_program.length = (int) strlen(val_program.value); in pa__init()
281 val_user.value = t; in pa__init()
282 val_user.length = (int) strlen(val_user.value); in pa__init()
/third_party/protobuf/src/google/protobuf/
H A Dmessage.cc345 GenericTypeHandler<Message>::GetArena(Message* value) { in GetArena() argument
346 return value->GetArena(); in GetArena()
355 GenericTypeHandler<Message>::GetMaybeArenaPointer(Message* value) { in GetMaybeArenaPointer() argument
356 return value->GetMaybeArenaPointer(); in GetMaybeArenaPointer()
/third_party/protobuf/src/google/protobuf/stubs/
H A Dport.h316 uint32 value = n; in Log2FloorNonZero_Portable() local
319 uint32 x = value >> shift; in Log2FloorNonZero_Portable()
321 value = x; in Log2FloorNonZero_Portable()
325 assert(value == 1); in Log2FloorNonZero_Portable()
/third_party/protobuf/src/google/protobuf/util/internal/
H A Dprotostream_objectwriter.h96 // If true, skips rendering the map entry if map value is null unless the
97 // value type is google.protobuf.NullType.
100 // If true, accepts repeated key/value pair for a map proto field.
133 // Renders a DataPiece 'value' into a field whose wire type is determined
164 void RenderDataPiece(StringPiece name, const DataPiece& value);
187 explicit Event(StringPiece name, const DataPiece& value) in Event() argument
188 : type_(RENDER_DATA_PIECE), name_(name), value_(value) { in Event()
217 void StartAny(const DataPiece& value);
247 // "value": <JSON representation of the type>,
348 // type based on value'
[all...]
/third_party/python/Lib/test/
H A Dtest_slice.py66 def __init__(self, value):
67 self.value = value
70 return self.value
/third_party/python/Lib/wsgiref/
H A Dhandlers.py247 val = self._convert_string_type(val, "Header value")
253 def _convert_string_type(self, value, title):
254 """Convert/check value type."""
255 if type(value) is str:
256 return value
258 "{0} must be of type str (got {1})".format(title, repr(value))
304 This method should return a true value if it was able to actually
306 approach. It should return a false value if normal iteration
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dpcg_engine.h43 typename Mix::state_type>::value,
47 static_assert(std::is_unsigned<typename Mix::result_type>::value,
71 !std::is_same<SeedSequence, pcg_engine>::value>>
82 // Advance the LCG state, always using the new value to generate the output. in operator ()()
94 !std::is_convertible<SeedSequence, uint64_t>::value, void>
209 // Convert the seed output to a single state value.
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
H A Dparser.cc83 conv.width.value() >= 0 || conv.precision.value() >= 0; in CheckFastPathSetting()
93 FlagsContains(conv.flags, Flags::kZero) ? 1 : 0, conv.width.value(), in CheckFastPathSetting()
94 conv.precision.value()); in CheckFastPathSetting()
H A Dbind.cc28 inline bool BindFromPosition(int position, int* value, in BindFromPosition() argument
35 return FormatArgImplFriend::ToInt(pack[position - 1], value); in BindFromPosition()
62 int width = unbound->width.value(); in Bind()
76 int precision = unbound->precision.value(); in Bind()
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/
H A Dwaiter.cc78 // value, waiting on a futex while we believe it is zero. in Wait()
329 static_assert(std::is_trivially_constructible<SRWLOCK>::value,
332 std::is_trivially_constructible<CONDITION_VARIABLE>::value,
334 static_assert(std::is_trivially_destructible<SRWLOCK>::value,
336 static_assert(std::is_trivially_destructible<CONDITION_VARIABLE>::value,
/third_party/skia/include/core/
H A DSkRefCnt.h41 // illegal value, to catch us if we reuse after delete in ~SkRefCntBase()
228 typename = typename std::enable_if<std::is_convertible<U*, T*>::value>::type>
238 typename = typename std::enable_if<std::is_convertible<U*, T*>::value>::type>
269 typename = typename std::enable_if<std::is_convertible<U*, T*>::value>::type>
285 typename = typename std::enable_if<std::is_convertible<U*, T*>::value>::type>
/third_party/selinux/libselinux/include/selinux/
H A Dselinux.h152 const char *value; member
325 /* Translate boolean strict to name value pair. */
328 int value; member
355 /* Get the enforce flag value. */
358 /* Set the enforce flag value. */
359 extern int security_setenforce(int value);
367 /* Get the checkreqprot value */
379 /* Get the pending value for the boolean */
382 /* Get the active value for the boolean */
385 /* Set the pending value fo
[all...]
/third_party/spirv-tools/test/
H A Dtext_to_binary.type_declaration_test.cpp42 {1, 2, (uint32_t)GetParam().value(), 2, 3, 0, in TEST_P()
83 GetParam().value()}))); in TEST_P()
153 (uint32_t)spv::ImageFormat::Rgba8, GetParam().value()}))); in TEST_P()
179 Eq(MakeInstruction(spv::Op::OpTypePipe, {1, GetParam().value()}))); in TEST_P()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/radius/
H A Dradius.h46 /* followed by length-2 octets of attribute value */
300 u32 value) in radius_msg_add_attr_int32()
302 u32 val = htonl(value); in radius_msg_add_attr_int32()
307 u32 *value) in radius_msg_get_attr_int32()
315 *value = ntohl(val); in radius_msg_get_attr_int32()
299 radius_msg_add_attr_int32(struct radius_msg *msg, u8 type, u32 value) radius_msg_add_attr_int32() argument
306 radius_msg_get_attr_int32(struct radius_msg *msg, u8 type, u32 *value) radius_msg_get_attr_int32() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/radius/
H A Dradius.h46 /* followed by length-2 octets of attribute value */
303 u32 value) in radius_msg_add_attr_int32()
305 u32 val = htonl(value); in radius_msg_add_attr_int32()
310 u32 *value) in radius_msg_get_attr_int32()
318 *value = ntohl(val); in radius_msg_get_attr_int32()
302 radius_msg_add_attr_int32(struct radius_msg *msg, u8 type, u32 value) radius_msg_add_attr_int32() argument
309 radius_msg_get_attr_int32(struct radius_msg *msg, u8 type, u32 *value) radius_msg_get_attr_int32() argument
/kernel/linux/linux-5.10/drivers/usb/serial/
H A Dftdi_sio.c69 this value */
83 u8 gpio_value; /* pin value for outputs */
134 * the bcdDevice value is used to differentiate FT232BM and FT245BM from
1243 unsigned value; in update_mctrl() local
1252 value = 0; in update_mctrl()
1254 value |= FTDI_SIO_SET_DTR_LOW; in update_mctrl()
1256 value |= FTDI_SIO_SET_RTS_LOW; in update_mctrl()
1258 value |= FTDI_SIO_SET_DTR_HIGH; in update_mctrl()
1260 value |= FTDI_SIO_SET_RTS_HIGH; in update_mctrl()
1265 value, pri in update_mctrl()
1393 u16 value; change_speed() local
1925 ftdi_gpio_set(struct gpio_chip *gc, unsigned int gpio, int value) ftdi_gpio_set() argument
1996 ftdi_gpio_direction_output(struct gpio_chip *gc, unsigned int gpio, int value) ftdi_gpio_direction_output() argument
2622 u16 value; ftdi_break_ctl() local
2674 u16 value, index; ftdi_set_termios() local
[all...]
/kernel/linux/linux-5.10/security/selinux/ss/
H A Dservices.c131 p_out->value = string_to_security_class(pol, p_in->name); in selinux_set_mapping()
132 if (!p_out->value) { in selinux_set_mapping()
149 p_out->perms[k] = string_to_av_perm(pol, p_out->value, in selinux_set_mapping()
183 return map->mapping[tclass].value; in unmap_class()
189 * Get kernel value for class from its policy value
196 if (map->mapping[i].value == pol_value) in map_class()
258 * Return the boolean value of a constraint expression
452 BUG_ON(pdatum->value < 1 || pdatum->value > 3 in dump_masked_av_helper()
3379 int value = datum->value - 1; get_classes_callback() local
3419 int value = datum->value - 1; get_permissions_callback() local
3476 int value; security_get_reject_unknown() local
3491 int value; security_get_allow_unknown() local
[all...]
/kernel/linux/linux-6.6/drivers/usb/serial/
H A Dftdi_sio.c85 this value */
99 u8 gpio_value; /* pin value for outputs */
149 * the bcdDevice value is used to differentiate FT232BM and FT245BM from
1211 unsigned value; in update_mctrl() local
1220 value = 0; in update_mctrl()
1222 value |= FTDI_SIO_SET_DTR_LOW; in update_mctrl()
1224 value |= FTDI_SIO_SET_RTS_LOW; in update_mctrl()
1226 value |= FTDI_SIO_SET_DTR_HIGH; in update_mctrl()
1228 value |= FTDI_SIO_SET_RTS_HIGH; in update_mctrl()
1233 value, pri in update_mctrl()
1359 u16 value; change_speed() local
1842 ftdi_gpio_set(struct gpio_chip *gc, unsigned int gpio, int value) ftdi_gpio_set() argument
1913 ftdi_gpio_direction_output(struct gpio_chip *gc, unsigned int gpio, int value) ftdi_gpio_direction_output() argument
2559 u16 value; ftdi_break_ctl() local
2616 u16 value, index; ftdi_set_termios() local
[all...]

Completed in 32 milliseconds

1...<<491492493494495496497498499500>>...1088