Home
last modified time | relevance | path

Searched defs:value (Results 10551 - 10575 of 21818) sorted by relevance

1...<<421422423424425426427428429430>>...873

/third_party/python/Python/
H A Dmodsupport.c104 PyObject *exception, *value, *tb, *w; in do_ignore() local
637 PyModule_AddObjectRef(PyObject *mod, const char *name, PyObject *value) in PyModule_AddObjectRef() argument
670 PyModule_AddObject(PyObject *mod, const char *name, PyObject *value) in PyModule_AddObject() argument
680 PyModule_AddIntConstant(PyObject *m, const char *name, long value) PyModule_AddIntConstant() argument
692 PyModule_AddStringConstant(PyObject *m, const char *name, const char *value) PyModule_AddStringConstant() argument
[all...]
H A Dhashtable.c197 void *value = entry->value; in _Py_hashtable_steal() local
209 _Py_hashtable_set(_Py_hashtable_t *ht, const void *key, void *value) in _Py_hashtable_set() argument
H A Dpyhash.c256 Py_uhash_t value; in fnv() member
/third_party/python/Objects/clinic/
H A Dlistobject.c.h237 PyObject *value; in list_index() local
[all...]
/third_party/python/Modules/_sqlite/
H A Dmodule.c300 long value; member
455 const long value = error_codes[i].value; in add_error_constants() local
/third_party/python/Modules/
H A Dtermios.c556 long value; member
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DFieldInfo.java574 private static boolean isExactlyOneBitSet(int value) { in isExactlyOneBitSet() argument
[all...]
H A DCodedOutputStreamWriter.java68 public void writeSFixed32(int fieldNumber, int value) throws IOException { in writeSFixed32() argument
73 public void writeInt64(int fieldNumber, long value) throws IOException { in writeInt64() argument
78 public void writeSFixed64(int fieldNumber, long value) throws IOException { in writeSFixed64() argument
83 public void writeFloat(int fieldNumber, float value) throws IOException { in writeFloat() argument
88 public void writeDouble(int fieldNumber, double value) throws IOException { in writeDouble() argument
93 writeEnum(int fieldNumber, int value) writeEnum() argument
98 writeUInt64(int fieldNumber, long value) writeUInt64() argument
103 writeInt32(int fieldNumber, int value) writeInt32() argument
108 writeFixed64(int fieldNumber, long value) writeFixed64() argument
113 writeFixed32(int fieldNumber, int value) writeFixed32() argument
118 writeBool(int fieldNumber, boolean value) writeBool() argument
123 writeString(int fieldNumber, String value) writeString() argument
128 writeBytes(int fieldNumber, ByteString value) writeBytes() argument
133 writeUInt32(int fieldNumber, int value) writeUInt32() argument
138 writeSInt32(int fieldNumber, int value) writeSInt32() argument
143 writeSInt64(int fieldNumber, long value) writeSInt64() argument
148 writeMessage(int fieldNumber, Object value) writeMessage() argument
153 writeMessage(int fieldNumber, Object value, Schema schema) writeMessage() argument
158 writeGroup(int fieldNumber, Object value) writeGroup() argument
163 writeGroup(int fieldNumber, Object value, Schema schema) writeGroup() argument
178 writeMessageSetItem(int fieldNumber, Object value) writeMessageSetItem() argument
187 writeInt32List(int fieldNumber, List<Integer> value, boolean packed) writeInt32List() argument
211 writeFixed32List(int fieldNumber, List<Integer> value, boolean packed) writeFixed32List() argument
235 writeInt64List(int fieldNumber, List<Long> value, boolean packed) writeInt64List() argument
258 writeUInt64List(int fieldNumber, List<Long> value, boolean packed) writeUInt64List() argument
282 writeFixed64List(int fieldNumber, List<Long> value, boolean packed) writeFixed64List() argument
306 writeFloatList(int fieldNumber, List<Float> value, boolean packed) writeFloatList() argument
330 writeDoubleList(int fieldNumber, List<Double> value, boolean packed) writeDoubleList() argument
354 writeEnumList(int fieldNumber, List<Integer> value, boolean packed) writeEnumList() argument
378 writeBoolList(int fieldNumber, List<Boolean> value, boolean packed) writeBoolList() argument
402 writeStringList(int fieldNumber, List<String> value) writeStringList() argument
415 writeLazyString(int fieldNumber, Object value) writeLazyString() argument
424 writeBytesList(int fieldNumber, List<ByteString> value) writeBytesList() argument
431 writeUInt32List(int fieldNumber, List<Integer> value, boolean packed) writeUInt32List() argument
455 writeSFixed32List(int fieldNumber, List<Integer> value, boolean packed) writeSFixed32List() argument
479 writeSFixed64List(int fieldNumber, List<Long> value, boolean packed) writeSFixed64List() argument
503 writeSInt32List(int fieldNumber, List<Integer> value, boolean packed) writeSInt32List() argument
527 writeSInt64List(int fieldNumber, List<Long> value, boolean packed) writeSInt64List() argument
551 writeMessageList(int fieldNumber, List<?> value) writeMessageList() argument
558 writeMessageList(int fieldNumber, List<?> value, Schema schema) writeMessageList() argument
565 writeGroupList(int fieldNumber, List<?> value) writeGroupList() argument
572 writeGroupList(int fieldNumber, List<?> value, Schema schema) writeGroupList() argument
633 writeDeterministicBooleanMapEntry( int fieldNumber, boolean key, V value, MapEntryLite.Metadata<Boolean, V> metadata) writeDeterministicBooleanMapEntry() argument
[all...]
H A DDynamicMessage.java523 public Builder setField(FieldDescriptor field, Object value) { in setField() argument
583 public Builder setRepeatedField(FieldDescriptor field, int index, Object value) { in setRepeatedField() argument
591 public Builder addRepeatedField(FieldDescriptor field, Object value) { in addRepeatedField() argument
631 ensureSingularEnumValueDescriptor(FieldDescriptor field, Object value) ensureSingularEnumValueDescriptor() argument
649 ensureEnumValueDescriptor(FieldDescriptor field, Object value) ensureEnumValueDescriptor() argument
[all...]
H A DUnknownFieldSetLite.java389 void storeField(int tag, Object value) { in storeField() argument
452 UnknownFieldSetLite mergeVarintField(int fieldNumber, int value) { in mergeVarintField() argument
468 UnknownFieldSetLite mergeLengthDelimitedField(final int fieldNumber, final ByteString value) { in mergeLengthDelimitedField() argument
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DCodedOutputStreamTest.java650 assertWriteLittleEndian32(byte[] data, int value) assertWriteLittleEndian32() argument
671 assertWriteLittleEndian64(byte[] data, long value) assertWriteLittleEndian64() argument
740 assertWriteVarint(byte[] data, long value) assertWriteVarint() argument
789 assertVarintRoundTrip(OutputType outputType, long value) assertVarintRoundTrip() argument
[all...]
H A DMapLiteTest.java244 private <K, V> void assertImmutable(Map<K, V> map, K key, V value) { in assertImmutable() argument
H A DMapForProto2LiteTest.java238 private <K, V> void assertImmutable(Map<K, V> map, K key, V value) { in assertImmutable() argument
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
H A DDurations.java241 parse(String value) parse() argument
[all...]
H A DFieldMaskUtil.java85 public static FieldMask fromString(String value) { in fromString() argument
95 public static FieldMask fromString(Class<? extends Message> type, String value) { in fromString() argument
191 public static FieldMask fromJsonString(String value) { in fromJsonString() argument
344 public MergeOptions setReplaceMessageFields(boolean value) { in setReplaceMessageFields() argument
357 setReplaceRepeatedFields(boolean value) setReplaceRepeatedFields() argument
374 setReplacePrimitiveFields(boolean value) setReplacePrimitiveFields() argument
[all...]
H A DTimestamps.java232 public static Timestamp parse(String value) throw argument
402 parseTimezoneOffset(String value) parseTimezoneOffset() argument
412 parseNanos(String value) parseNanos() argument
[all...]
H A DTimeUtil.java90 public static Timestamp parseTimestamp(String value) throws ParseException { in parseTimestamp() argument
119 public static Duration parseDuration(String value) throws ParseException { in parseDuration() argument
340 public static Duration divide(Duration duration, double value) { in divide() argument
373 private static BigInteger toBigInteger(long value) { in toBigInteger() argument
377 createDurationFromBigInteger(BigInteger value) createDurationFromBigInteger() argument
[all...]
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DGPBWire.php175 $value = bcsub($value, "18446744073709551616"); variable
195 $value = GPBWire::zigZagDecode32($value); global() variable
204 $value = GPBWire::zigZagDecode64($value); global() variable
233 $value = bcsub($value, "18446744073709551616"); global() variable
244 $value = unpack('f', $data)[1]; global() variable
254 $value = unpack('d', $data)[1]; global() variable
264 $value = false; global() variable
266 $value = true; global() variable
322 $value = GPBWire::zigZagEncode32($value); global() variable
328 $value = GPBWire::zigZagEncode64($value); global() variable
433 $value = self::zigZagEncode32($value); global() variable
439 $value = self::zigZagEncode64($value); global() variable
[all...]
/third_party/protobuf/python/google/protobuf/pyext/
H A Dextension_dict.cc208 int ass_subscript(ExtensionDict* self, PyObject* key, PyObject* value) { in ass_subscript() argument
/third_party/protobuf/src/google/protobuf/
H A Dany.pb.h282 set_type_url(const std::string& value) set_type_url() argument
293 _internal_set_type_url(const std::string& value) _internal_set_type_url() argument
295 type_url_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, GetArena()); _internal_set_type_url() local
297 set_type_url(std::string&& value) set_type_url() argument
303 set_type_url(const char* value) set_type_url() argument
310 set_type_url(const char* value, size_t size) set_type_url() argument
340 inline const std::string& Any::value() const { value() function in Any
344 set_value(const std::string& value) set_value() argument
355 _internal_set_value(const std::string& value) _internal_set_value() argument
357 value_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, GetArena()); _internal_set_value() local
359 set_value(std::string&& value) set_value() argument
365 set_value(const char* value) set_value() argument
372 set_value(const void* value, size_t size) set_value() argument
387 set_allocated_value(std::string* value) set_allocated_value() argument
393 value_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, set_allocated_value() local
[all...]
H A Darenastring.h388 AssignWithDefault( const ::std::string* default_value, ArenaStringPtr value) AssignWithDefault() argument
[all...]
/third_party/protobuf/php/tests/
H A DPhpImplementationTest.php32 $value = null; variable
52 $value = null; variable
72 $value = null; global() variable
92 $value = null; global() variable
112 $value = null; global() variable
129 $value = null; global() variable
146 $value = null; global() variable
154 $value = null; global() variable
166 $value = null; global() variable
174 $value = null; global() variable
182 $value = null; global() variable
195 $value = null; global() variable
203 $value = null; global() variable
[all...]
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyMap.java150 indexSet(ThreadContext context, IRubyObject key, IRubyObject value) indexSet() argument
[all...]
H A DRubyFieldDescriptor.java93 public IRubyObject setLabel(ThreadContext context, IRubyObject value) { in setLabel() argument
120 public IRubyObject setName(ThreadContext context, IRubyObject value) { in setName() argument
156 public IRubyObject setType(ThreadContext context, IRubyObject value) { in setType() argument
181 public IRubyObject setNumber(ThreadContext context, IRubyObject value) { in setNumber() argument
228 setValue(ThreadContext context, IRubyObject msgRb, IRubyObject value) setValue() argument
[all...]
H A DRubyMessage.java131 indexSet(ThreadContext context, IRubyObject fieldName, IRubyObject value) indexSet() argument
314 encode(ThreadContext context, IRubyObject recv, IRubyObject value) encode() argument
485 checkRepeatedFieldType(ThreadContext context, IRubyObject value, Descriptors.FieldDescriptor fieldDescriptor) checkRepeatedFieldType() argument
494 convert(ThreadContext context, Descriptors.FieldDescriptor fieldDescriptor, IRubyObject value, int depth) convert() argument
574 wrapField(ThreadContext context, Descriptors.FieldDescriptor fieldDescriptor, Object value) wrapField() argument
677 setField(ThreadContext context, Descriptors.FieldDescriptor fieldDescriptor, IRubyObject value) setField() argument
753 rubyToRepeatedField(ThreadContext context, Descriptors.FieldDescriptor fieldDescriptor, IRubyObject value) rubyToRepeatedField() argument
[all...]

Completed in 35 milliseconds

1...<<421422423424425426427428429430>>...873