HomeSort by relevance Sort by last modified time
    Searched refs:default_value (Results 126 - 150 of 331) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map_type_handler.h 194 const Type* value, const Type* default_value);
240 const TypeOnMemory& value, const TypeOnMemory& default_value); \
528 DefaultIfNotInitialized(const Type* value, const Type* default_value) {
529 return value != NULL ? *value : *default_value;
617 default_value) { \
    [all...]
type.pb.h 497 // optional string default_value = 11;
500 const ::std::string& default_value() const;
506 void set_allocated_default_value(::std::string* default_value);
1312 inline const ::std::string& Field::default_value() const { function in class:google::protobuf::Field
1348 default_value_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), default_value); local
    [all...]
  /external/protobuf/python/google/protobuf/internal/
python_message.py 415 if field.has_default_value and field.default_value != []:
417 field.default_value))
447 # default_value. Combine with has_default_value somehow.
448 return field.default_value
657 default_value = field.default_value
663 # default_value. Combine with has_default_value somehow.
664 return self._fields.get(field, default_value)
    [all...]
type_checkers.py 114 def __init__(self, default_value, *acceptable_types):
116 self._default_value = default_value
  /hardware/intel/common/libva/test/videoprocess/
videoprocess.cpp 176 value, range->min_value, range->max_value, range->default_value);
177 return range->default_value;
479 intensity = denoise_caps.range.default_value;
584 intensity = sharpening_caps.range.default_value;
644 value = color_balance_caps[i].range.default_value;
    [all...]
  /test/vts/runners/host/
base_test.py 161 default_value=None):
177 default_value: object, default value to return if not found. If error_if_not_found is
182 <default_value> if not exists.
188 return default_value
201 return default_value
  /hardware/intel/img/psb_video/src/
vsp_VPP.c     [all...]
  /device/google/dragon/crash_collector/
coredump_writer.cc 53 T default_value) {
55 return p ? *p : default_value;
  /external/libtextclassifier/common/
feature-extractor.h 226 // descriptor. Returns default_value if the parameter is not found or if its
228 int GetIntParameter(const std::string &name, int default_value) const;
231 // descriptor. Returns default_value if the parameter is not found or if its
233 bool GetBoolParameter(const std::string &name, bool default_value) const;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_elementtree.c 824 PyObject* default_value = Py_None; local
826 if (!PyArg_ParseTuple(args, "O|OO:findtext", &tag, &default_value, &namespaces))
831 elementpath_obj, "findtext", "OOOO", self, tag, default_value, namespaces
835 Py_INCREF(default_value);
836 return default_value;
850 Py_INCREF(default_value);
851 return default_value;
910 PyObject* default_value = Py_None; local
911 if (!PyArg_ParseTuple(args, "O|O:get", &key, &default_value))
915 value = default_value;
    [all...]
  /external/protobuf/src/google/protobuf/
extension_set.cc 267 LOWERCASE default_value) const { \
270 return default_value; \
336 const void* default_value) const {
339 return default_value;
422 int ExtensionSet::GetEnum(int number, int default_value) const {
426 return default_value;
483 const string& default_value) const {
487 return default_value;
543 int number, const MessageLite& default_value) const {
547 return default_value;
    [all...]
type.pb.cc 1919 const ::std::string& Field::default_value() const { function in class:google::protobuf::Field
1955 default_value_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), default_value); local
    [all...]
descriptor.cc 4928 Symbol default_value = local
    [all...]
type.pb.h 497 // optional string default_value = 11;
500 const ::std::string& default_value() const;
506 void set_allocated_default_value(::std::string* default_value);
1312 inline const ::std::string& Field::default_value() const { function in class:google::protobuf::Field
1348 default_value_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), default_value); local
    [all...]
  /external/google-breakpad/src/third_party/linux/include/gflags/
gflags.h 173 std::string default_value; // the default value, as a string member in struct:google::CommandLineFlagInfo
  /external/harfbuzz_ng/src/
hb-ot-map-private.hh 206 unsigned int default_value; /* for non-global features, what should the unset glyphs take */
  /external/libyuv/files/third_party/gflags/gen/posix/include/gflags/
gflags.h 159 std::string default_value; // the default value, as a string member in struct:GFLAGS_NAMESPACE::CommandLineFlagInfo
  /external/libyuv/files/third_party/gflags/gen/win/include/gflags/
gflags.h 159 std::string default_value; // the default value, as a string member in struct:GFLAGS_NAMESPACE::CommandLineFlagInfo
  /external/protobuf/python/google/protobuf/
descriptor.py 389 default_value: (Varies) Default value of this field. Only
498 default_value, message_type, enum_type, containing_type,
508 default_value, message_type, enum_type, containing_type,
528 self.default_value = default_value
    [all...]
  /external/webrtc/third_party/gflags/gen/posix/include/gflags/
gflags.h 186 std::string default_value; // the default value, as a string member in struct:google::CommandLineFlagInfo
  /frameworks/rs/
rsCppUtils.h 201 int property_get(const char *key, char *value, const char *default_value);
  /toolchain/binutils/binutils-2.25/gold/
expression.cc     [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-internal-inl.h 297 // Returns the i-th element of the vector, or default_value if i is not
300 inline E GetElementOr(const std::vector<E>& v, int i, E default_value) {
301 return (i < 0 || i >= static_cast<int>(v.size())) ? default_value : v[i];
    [all...]
  /external/googletest/googletest/src/
gtest-internal-inl.h 300 // Returns the i-th element of the vector, or default_value if i is not
303 inline E GetElementOr(const std::vector<E>& v, int i, E default_value) {
304 return (i < 0 || i >= static_cast<int>(v.size())) ? default_value : v[i];
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-internal-inl.h 300 // Returns the i-th element of the vector, or default_value if i is not
303 inline E GetElementOr(const std::vector<E>& v, int i, E default_value) {
304 return (i < 0 || i >= static_cast<int>(v.size())) ? default_value : v[i];
    [all...]

Completed in 808 milliseconds

1 2 3 4 56 7 8 91011>>