Home
last modified time | relevance | path

Searched refs:TYPE_BOOL (Results 1 – 21 of 21) sorted by relevance

/external/v8/src/
Dflags.cc55 enum FlagType { TYPE_BOOL, TYPE_INT, TYPE_FLOAT, TYPE_STRING, TYPE_ARGS }; enumerator
71 ASSERT(type_ == TYPE_BOOL); in bool_variable()
104 ASSERT(type_ == TYPE_BOOL); in bool_default()
131 case TYPE_BOOL: in IsDefault()
154 case TYPE_BOOL: in Reset()
185 case Flag::TYPE_BOOL: return "bool"; in Type2String()
200 case Flag::TYPE_BOOL: in ToString()
243 if (f->type() != Flag::TYPE_BOOL || *(f->bool_variable())) { in argv()
249 if (f->type() != Flag::TYPE_BOOL) { in argv()
376 if (flag->type() != Flag::TYPE_BOOL && in SetFlagsFromCommandLine()
[all …]
/external/stlport/stlport/stl/config/
D_apple.h40 #ifndef TYPE_BOOL
41 # error <ConditionalMacros.h> must be included. (TYPE_BOOL)
43 #if !TYPE_BOOL
/external/protobuf/python/google/protobuf/internal/
Dtype_checkers.py181 _FieldDescriptor.TYPE_BOOL: wire_format.BoolByteSize,
204 _FieldDescriptor.TYPE_BOOL: encoder.BoolEncoder,
227 _FieldDescriptor.TYPE_BOOL: encoder.BoolSizer,
250 _FieldDescriptor.TYPE_BOOL: decoder.BoolDecoder,
272 _FieldDescriptor.TYPE_BOOL: wire_format.WIRETYPE_VARINT,
/external/protobuf/src/google/protobuf/compiler/java/
Djava_primitive_field.cc109 case FieldDescriptor::TYPE_BOOL : return "Bool" ; in GetCapitalizedType()
141 case FieldDescriptor::TYPE_BOOL : return WireFormatLite::kBoolSize; in FixedSize()
Djava_extension.cc61 case FieldDescriptor::TYPE_BOOL : return "BOOL"; in TypeName()
Djava_helpers.cc208 case FieldDescriptor::TYPE_BOOL: in GetJavaType()
/external/libvpx/vp8/common/
Dtype_aliases.h91 #ifndef TYPE_BOOL
/external/protobuf/src/google/protobuf/compiler/javamicro/
Djavamicro_primitive_field.cc109 case FieldDescriptor::TYPE_BOOL : return "Bool" ; in GetCapitalizedType()
141 case FieldDescriptor::TYPE_BOOL : return WireFormatLite::kBoolSize; in FixedSize()
Djavamicro_helpers.cc280 case FieldDescriptor::TYPE_BOOL: in GetJavaType()
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_primitive_field.cc67 case FieldDescriptor::TYPE_BOOL : return WireFormatLite::kBoolSize; in FixedSize()
Dcpp_helpers.cc228 case FieldDescriptor::TYPE_BOOL : return "Bool"; in DeclaredTypeMethodName()
/external/protobuf/python/google/protobuf/
Ddescriptor.py335 TYPE_BOOL = 8 variable in FieldDescriptor
Dtext_format.py253 elif field.type == descriptor.FieldDescriptor.TYPE_BOOL:
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc69 result["bool" ] = FieldDescriptorProto::TYPE_BOOL; in MakeTypeNameTable()
604 case FieldDescriptorProto::TYPE_BOOL: in ParseDefaultAssignment()
/external/protobuf/src/google/protobuf/
Dwire_format_lite.h106 TYPE_BOOL = 8, enumerator
Ddescriptor.pb.cc2176 const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_BOOL; member in google::protobuf::FieldDescriptorProto
4314 bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( in MergePartialFromCodedStream()
4330 bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( in MergePartialFromCodedStream()
4346 bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( in MergePartialFromCodedStream()
4362 bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( in MergePartialFromCodedStream()
4771 bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( in MergePartialFromCodedStream()
4787 bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( in MergePartialFromCodedStream()
5134 bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( in MergePartialFromCodedStream()
5150 bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( in MergePartialFromCodedStream()
6426 bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( in MergePartialFromCodedStream()
Ddescriptor.h309 TYPE_BOOL = 8, // bool, varint on the wire. enumerator
Ddescriptor_unittest.cc1566 EXPECT_EQ(FD::CPPTYPE_BOOL , GetCppTypeForFieldType(FD::TYPE_BOOL )); in TEST_F()
1606 AddField(message_proto, "bool" , 7, label, FD::TYPE_BOOL ) in TEST_F()
1630 AddField(message_proto, "implicit_bool" , 27, label, FD::TYPE_BOOL ); in TEST_F()
Dwire_format_lite_inl.h151 inline bool WireFormatLite::ReadPrimitive<bool, WireFormatLite::TYPE_BOOL>(
Ddescriptor.proto107 TYPE_BOOL = 8; enumerator
Ddescriptor.pb.h753 static const Type TYPE_BOOL = FieldDescriptorProto_Type_TYPE_BOOL; variable