Searched defs:StringTypes (Results 1 - 12 of 12) sorted by relevance

/external/python/cpython2/Lib/xml/dom/
H A Ddomreg.py5 from xml.dom.minicompat import * # isinstance, StringTypes namespace
65 if isinstance(features, StringTypes):
H A Dminicompat.py12 # StringTypes -- tuple of defined string types
39 __all__ = ["NodeList", "EmptyNodeList", "StringTypes", "defproperty"]
46 StringTypes = type(''), variable
48 StringTypes = type(''), type(unicode('')) variable
/external/libxml2/python/
H A Ddrv_libxml2.py46 StringTypes = (str, unicode) variable
55 StringTypes = str variable
145 if isinstance(source, StringTypes):
/external/libmojo/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):
/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):
624 if not isinstance(c, StringTypes) or len(c) > 1:
646 if not isinstance(name, StringTypes):
703 elif isinstance(t, StringTypes):
/external/protobuf/gtest/test/
H A Dgtest-port_test.cc180 // Defines StringTypes as the list of all string types that class RE
187 const char*> StringTypes; typedef in namespace:testing::internal
189 TYPED_TEST_CASE(RETest, StringTypes);
/external/python/cpython2/Lib/
H A Dtypes.py27 # StringTypes is already outdated. Instead of writing "type(x) in
28 # types.StringTypes", you should use "isinstance(x, basestring)". But
32 StringTypes = (StringType, UnicodeType) variable
34 StringTypes = (StringType,) variable
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-port_test.cc373 // Defines StringTypes as the list of all string types that class RE
380 const char*> StringTypes; typedef in namespace:testing::internal
382 TYPED_TEST_CASE(RETest, StringTypes);
/external/googletest/googletest/test/
H A Dgtest-port_test.cc405 // Defines StringTypes as the list of all string types that class RE
412 const char*> StringTypes; typedef in namespace:testing::internal
414 TYPED_TEST_CASE(RETest, StringTypes);
/external/v8/testing/gtest/test/
H A Dgtest-port_test.cc405 // Defines StringTypes as the list of all string types that class RE
412 const char*> StringTypes; typedef in namespace:testing::internal
414 TYPED_TEST_CASE(RETest, StringTypes);
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest-port_test.cc410 // Defines StringTypes as the list of all string types that class RE
417 const char*> StringTypes; typedef in namespace:testing::internal
419 TYPED_TEST_CASE(RETest, StringTypes);
/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp497 struct StringTypes { struct
525 struct MappingTraits<StringTypes> {
526 static void mapping(IO &io, StringTypes& st) {
557 StringTypes map;
607 StringTypes map;

Completed in 421 milliseconds