Home
last modified time | relevance | path

Searched refs:StringTypes (Results 1 – 25 of 49) sorted by relevance

12

/aosp_15_r20/out/soong/.intermediates/system/tools/xsdc/tests/resources/predefined_types/xsdc_predefined_types_tests/gen/cpp/
Dpredefined_types.cpp80StringTypes::StringTypes(std::optional<std::string> string, std::optional<std::string> token, std:… in StringTypes() function in predefined::types::StringTypes
83 const std::string& StringTypes::getString() const { in getString()
88 bool StringTypes::hasString() const { in hasString()
92 const std::string& StringTypes::getToken() const { in getToken()
97 bool StringTypes::hasToken() const { in hasToken()
101 const std::string& StringTypes::getNormalizedString() const { in getNormalizedString()
106 bool StringTypes::hasNormalizedString() const { in hasNormalizedString()
110 const std::string& StringTypes::getLanguage() const { in getLanguage()
115 bool StringTypes::hasLanguage() const { in hasLanguage()
119 const std::string& StringTypes::getEntity() const { in getEntity()
[all …]
/aosp_15_r20/out/soong/.intermediates/system/tools/xsdc/tests/resources/predefined_types/xsdc_predefined_types_tinyxml_tests/gen/cpp/
Dpredefined_types.cpp61StringTypes::StringTypes(std::optional<std::string> string, std::optional<std::string> token, std:… in StringTypes() function in predefined::types::StringTypes
64 const std::string& StringTypes::getString() const { in getString()
69 bool StringTypes::hasString() const { in hasString()
73 const std::string& StringTypes::getToken() const { in getToken()
78 bool StringTypes::hasToken() const { in hasToken()
82 const std::string& StringTypes::getNormalizedString() const { in getNormalizedString()
87 bool StringTypes::hasNormalizedString() const { in hasNormalizedString()
91 const std::string& StringTypes::getLanguage() const { in getLanguage()
96 bool StringTypes::hasLanguage() const { in hasLanguage()
100 const std::string& StringTypes::getEntity() const { in getEntity()
[all …]
/aosp_15_r20/out/soong/.intermediates/system/tools/xsdc/tests/resources/predefined_types/xsdc_predefined_types_tinyxml_tests/gen/cpp/include/
Dpredefined_types.h22 class StringTypes; variable
34 class StringTypes {
48StringTypes(std::optional<std::string> string, std::optional<std::string> token, std::optional<std…
73 static StringTypes read(tinyxml2::XMLElement *root);
239 const std::vector<StringTypes> stringTypes_;
245 …Types(std::vector<StringTypes> stringTypes, std::vector<DateTypes> dateTypes, std::vector<NumericT…
246 const std::vector<StringTypes>& getStringTypes() const;
248 const StringTypes* getFirstStringTypes() const;
/aosp_15_r20/out/soong/.intermediates/system/tools/xsdc/tests/resources/predefined_types/xsdc_predefined_types_tests/gen/cpp/include/
Dpredefined_types.h23 class StringTypes; variable
35 class StringTypes {
49StringTypes(std::optional<std::string> string, std::optional<std::string> token, std::optional<std…
74 static StringTypes read(xmlNode *root);
240 const std::vector<StringTypes> stringTypes_;
246 …Types(std::vector<StringTypes> stringTypes, std::vector<DateTypes> dateTypes, std::vector<NumericT…
247 const std::vector<StringTypes>& getStringTypes() const;
249 const StringTypes* getFirstStringTypes() const;
/aosp_15_r20/external/libaom/test/
H A Dgviz_api.py216 if not isinstance(value[1], types.StringTypes + (types.NoneType,)):
332 if not isinstance(description, (types.StringTypes, tuple)):
336 if isinstance(description, types.StringTypes):
342 if not isinstance(elem, types.StringTypes):
459 if isinstance(table_description, (types.StringTypes, tuple)):
494 (isinstance(table_description.keys()[0], types.StringTypes) and
658 if isinstance(order_by, types.StringTypes) or (
663 if isinstance(key, types.StringTypes):
/aosp_15_r20/external/chromium-trace/catapult/tracing/tracing/trace_data/
H A Dtrace_data.py23 StringTypes = six.string_types # pylint: disable=invalid-name variable
25 StringTypes = str variable
183 if isinstance(data, StringTypes):
/aosp_15_r20/out/soong/.intermediates/system/tools/xsdc/tests/resources/predefined_types/xsdc_predefined_types_tinyxml_tests.docs/android_common/everything/api/
Dcurrent.txt106 public class StringTypes {
107 ctor public StringTypes();
138 method public predefined.types.StringTypes getStringTypes();
143 method public void setStringTypes(predefined.types.StringTypes);
/aosp_15_r20/out/soong/.intermediates/system/tools/xsdc/tests/resources/predefined_types/xsdc_predefined_types_tests.docs/android_common/everything/api/
Dcurrent.txt106 public class StringTypes {
107 ctor public StringTypes();
138 method public predefined.types.StringTypes getStringTypes();
143 method public void setStringTypes(predefined.types.StringTypes);
/aosp_15_r20/system/tools/xsdc/tests/resources/predefined_types/api/
Dcurrent.txt106 public class StringTypes {
107 ctor public StringTypes();
138 method public predefined.types.StringTypes getStringTypes();
143 method public void setStringTypes(predefined.types.StringTypes);
/aosp_15_r20/external/python/cpython2/Lib/xml/dom/
Dminicompat.py46 StringTypes = type(''), variable
48 StringTypes = type(''), type(unicode('')) variable
/aosp_15_r20/external/python/cpython2/Lib/
Dtypes.py32 StringTypes = (StringType, UnicodeType) variable
34 StringTypes = (StringType,) variable
/aosp_15_r20/external/libxml2/python/
H A Ddrv_libxml2.py46 StringTypes = (str, unicode) variable
55 StringTypes = str variable
145 if isinstance(source, StringTypes):
/aosp_15_r20/external/libchrome/third_party/ply/
H A Dlex.py42 StringTypes = (types.StringType, types.UnicodeType) variable
45 StringTypes = (str, bytes) variable
254 if not isinstance(c,StringTypes):
612 if not isinstance(c,StringTypes) or len(c) > 1:
635 if not isinstance(name,StringTypes):
689 elif isinstance(t, StringTypes):
/aosp_15_r20/external/selinux/python/sepolgen/src/sepolgen/
H A Dlex.py47 StringTypes = (types.StringType, types.UnicodeType) variable
50 StringTypes = (str, bytes) variable
254 if not isinstance(c, StringTypes):
623 if not isinstance(c, StringTypes) or len(c) > 1:
645 if not isinstance(name, StringTypes):
702 elif isinstance(t, StringTypes):
/aosp_15_r20/external/python/pycparser/pycparser/ply/
Dlex.py47 StringTypes = (types.StringType, types.UnicodeType) variable
50 StringTypes = (str, bytes) variable
254 if not isinstance(c, StringTypes):
624 if not isinstance(c, StringTypes) or len(c) > 1:
646 if not isinstance(name, StringTypes):
703 elif isinstance(t, StringTypes):
/aosp_15_r20/external/ply/ply/ply/
H A Dlex.py47 StringTypes = (types.StringType, types.UnicodeType) variable
50 StringTypes = (str, bytes) variable
254 if not isinstance(c, StringTypes):
623 if not isinstance(c, StringTypes) or len(c) > 1:
645 if not isinstance(name, StringTypes):
702 elif isinstance(t, StringTypes):
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/
Dhash_function_defaults_test.cc77 using StringTypes = ::testing::Types<std::string, absl::string_view>; typedef
84 TYPED_TEST_SUITE(EqString, StringTypes);
91 TYPED_TEST_SUITE(HashString, StringTypes);
/aosp_15_r20/external/openscreen/third_party/abseil/src/absl/container/internal/
H A Dhash_function_defaults_test.cc77 using StringTypes = ::testing::Types<std::string, absl::string_view>; typedef
84 TYPED_TEST_SUITE(EqString, StringTypes);
91 TYPED_TEST_SUITE(HashString, StringTypes);
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/container/internal/
H A Dhash_function_defaults_test.cc77 using StringTypes = ::testing::Types<std::string, absl::string_view>; typedef
84 TYPED_TEST_SUITE(EqString, StringTypes);
91 TYPED_TEST_SUITE(HashString, StringTypes);
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/container/internal/
H A Dhash_function_defaults_test.cc77 using StringTypes = ::testing::Types<std::string, absl::string_view>; typedef
84 TYPED_TEST_SUITE(EqString, StringTypes);
91 TYPED_TEST_SUITE(HashString, StringTypes);
/aosp_15_r20/external/cronet/third_party/abseil-cpp/absl/container/internal/
H A Dhash_function_defaults_test.cc85 using StringTypes = ::testing::Types<std::string, absl::string_view>; typedef
92 TYPED_TEST_SUITE(EqString, StringTypes);
99 TYPED_TEST_SUITE(HashString, StringTypes);
/aosp_15_r20/external/abseil-cpp/absl/container/internal/
H A Dhash_function_defaults_test.cc85 using StringTypes = ::testing::Types<std::string, absl::string_view>; typedef
92 TYPED_TEST_SUITE(EqString, StringTypes);
99 TYPED_TEST_SUITE(HashString, StringTypes);
/aosp_15_r20/external/angle/third_party/abseil-cpp/absl/container/internal/
H A Dhash_function_defaults_test.cc85 using StringTypes = ::testing::Types<std::string, absl::string_view>; typedef
92 TYPED_TEST_SUITE(EqString, StringTypes);
99 TYPED_TEST_SUITE(HashString, StringTypes);
/aosp_15_r20/external/python/cpython2/Doc/library/
Dtypes.rst256 .. data:: StringTypes
262 example: ``isinstance(s, types.StringTypes)``.
/aosp_15_r20/external/python/cpython3/Lib/xml/dom/
Dminicompat.py47 StringTypes = (str,) variable

12