HomeSort by relevance Sort by last modified time
    Searched defs:posix (Results 1 - 25 of 36) sorted by null

1 2

  /external/deqp/execserver/
xsPosixFileReader.cpp 30 namespace posix namespace in namespace:xs
120 } // posix
xsPosixFileReader.hpp 32 namespace posix namespace in namespace:xs
55 } // posix
xsPosixTestProcess.hpp 37 namespace posix namespace in namespace:xs
73 } // posix
102 posix::CaseListWriter m_caseListWriter;
103 posix::PipeReader m_stdOutReader;
104 posix::PipeReader m_stdErrReader;
105 posix::FileReader m_logReader;
xsPosixTestProcess.cpp 37 namespace posix namespace in namespace:xs
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 1 """Extended file operations available in POSIX.
60 """File wrapper class that provides extra POSIX file routines."""
100 import posix namespace
102 if not hasattr(posix, 'fdopen'):
105 return posix.fdopen(posix.dup(self._file_.fileno()), self._file_.mode)
108 import posix namespace
110 if not hasattr(posix, 'fdopen'):
113 posix.dup2(self._file_.fileno(), fd)
114 return posix.fdopen(fd, self._file_.mode
    [all...]
os.py 1 r"""OS routines for Mac, NT, or Posix depending on what system we're on.
4 - all functions from posix, nt, os2, or ce, e.g. unlink, stat, etc.
6 - os.name is 'posix', 'nt', 'os2', 'ce' or 'riscos'
41 if 'posix' in _names:
42 name = 'posix'
44 from posix import *
46 from posix import _exit
51 import posix namespace
52 __all__.extend(_get_exports_list(posix))
53 del posix
    [all...]
tarfile.py 71 POSIX_MAGIC = "ustar\x0000" # magic posix tar string
91 XHDTYPE = "x" # POSIX.1-2001 extended header
92 XGLTYPE = "g" # POSIX.1-2001 global header
95 USTAR_FORMAT = 0 # POSIX.1-1988 (ustar) format
97 PAX_FORMAT = 2 # POSIX.1-2001 (pax) format
202 # POSIX 1003.1-1988 requires numbers to be encoded as a string of
231 # in POSIX.1-2001. Replace untranslatable characters with their
1613 posix = property(_getposix, _setposix) variable in class:TarFile
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixfile.py 1 """Extended file operations available in POSIX.
60 """File wrapper class that provides extra POSIX file routines."""
100 import posix namespace
102 if not hasattr(posix, 'fdopen'):
105 return posix.fdopen(posix.dup(self._file_.fileno()), self._file_.mode)
108 import posix namespace
110 if not hasattr(posix, 'fdopen'):
113 posix.dup2(self._file_.fileno(), fd)
114 return posix.fdopen(fd, self._file_.mode
    [all...]
os.py 1 r"""OS routines for Mac, NT, or Posix depending on what system we're on.
4 - all functions from posix, nt, os2, or ce, e.g. unlink, stat, etc.
6 - os.name is 'posix', 'nt', 'os2', 'ce' or 'riscos'
41 if 'posix' in _names:
42 name = 'posix'
44 from posix import *
46 from posix import _exit
51 import posix namespace
52 __all__.extend(_get_exports_list(posix))
53 del posix
    [all...]
tarfile.py 71 POSIX_MAGIC = "ustar\x0000" # magic posix tar string
91 XHDTYPE = "x" # POSIX.1-2001 extended header
92 XGLTYPE = "g" # POSIX.1-2001 global header
95 USTAR_FORMAT = 0 # POSIX.1-1988 (ustar) format
97 PAX_FORMAT = 2 # POSIX.1-2001 (pax) format
202 # POSIX 1003.1-1988 requires numbers to be encoded as a string of
231 # in POSIX.1-2001. Replace untranslatable characters with their
1613 posix = property(_getposix, _setposix) variable in class:TarFile
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_posix.py 1 "Test posix functions"
5 # Skip these tests if there is no posix module.
6 posix = test_support.import_module('posix') variable
40 # test posix functions which take no arguments and have
51 posix_func = getattr(posix, name, None)
56 if hasattr(posix, 'getresuid'):
58 user_ids = posix.getresuid()
63 if hasattr(posix, 'getresgid'):
65 group_ids = posix.getresgid(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_posix.py 1 "Test posix functions"
5 # Skip these tests if there is no posix module.
6 posix = test_support.import_module('posix') variable
40 # test posix functions which take no arguments and have
51 posix_func = getattr(posix, name, None)
56 if hasattr(posix, 'getresuid'):
58 user_ids = posix.getresuid()
63 if hasattr(posix, 'getresgid'):
65 group_ids = posix.getresgid(
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
LocaleTest.java 456 .setVariant("POSIX").setExtension('g', "foo")
551 l = fromLanguageTag("en-POSIX", useBuilder);
555 assertEquals("POSIX", l.getVariant());
582 fromLanguageTag("en-US-POSIX-P2", true);
676 // Variant with 3 subtags. POSIX shouldn't be recognized
678 l = fromLanguageTag("en-POSIX-P2003-P2004", useBuilder);
685 l = fromLanguageTag("en-Latn-POSIX-P2003", useBuilder);
692 l = fromLanguageTag("en-US-POSIX-P2003", useBuilder);
810 l = fromLanguageTag("en-US-POSIX-P2", false);
813 assertEquals("POSIX", l.getVariant())
1119 Locale posix = new Locale.Builder() local
    [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 51 enum OutputFormatTy { bsd, sysv, posix, darwin }; enumerator in enum:__anon30172::OutputFormatTy
55 clEnumVal(posix, "POSIX.2 format"),
86 cl::opt<bool> POSIXFormat("P", cl::desc("Alias for --format=posix"));
427 if (OutputFormat == posix && MultipleFiles && printName) {
479 } else if (OutputFormat == posix) {
    [all...]
  /external/chromium_org/third_party/icu/source/common/
uniset_props.cpp 1270 UBool posix = FALSE; \/\/ true for [:pat:], false for \\p{pat} \\P{pat} \\N{pat} local
    [all...]
uloc.c 24 POSIX's locale format, from putil.c: [no spaces]
464 { "c", "en_US_POSIX", NULL, NULL }, /* POSIX name */
465 { "posix", "en_US_POSIX", NULL, NULL }, /* POSIX name (alias of C) */
2128 const char *posix = uprv_convertToPosix(hostid, status); local
    [all...]
  /external/icu/icu4c/source/common/
uniset_props.cpp 1185 UBool posix = FALSE; \/\/ true for [:pat:], false for \\p{pat} \\P{pat} \\N{pat} local
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 103 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used.
128 // RE - a simple regular expression class using the POSIX
620 // A simple C++ wrapper for <regex.h>. It uses the POSIX Enxtended
829 // The testing::internal::posix namespace holds wrappers for common
830 // POSIX functions. These wrappers hide the differences between
831 // Windows/MSVC and POSIX systems. Since some compilers define these
835 namespace posix { namespace in namespace:testing::internal
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h 81 // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular
174 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
222 // RE - a simple regular expression class using the POSIX
379 // Brings in definitions for functions used in the testing::internal::posix
398 // Defines this to true iff Google Test can use POSIX regular expressions.
1847 namespace posix { namespace in namespace:testing::internal
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h 53 // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular
119 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
150 // RE - a simple regular expression class using the POSIX
247 // Brings in definitions for functions used in the testing::internal::posix
266 // Defines this to true iff Google Test can use POSIX regular expressions.
807 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
1546 namespace posix { namespace in namespace:testing::internal
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h 57 // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular
129 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
160 // RE - a simple regular expression class using the POSIX
285 // Brings in definitions for functions used in the testing::internal::posix
304 // Defines this to true iff Google Test can use POSIX regular expressions.
1698 namespace posix { namespace in namespace:testing::internal
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 53 // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular
121 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
152 // RE - a simple regular expression class using the POSIX
253 // Brings in definitions for functions used in the testing::internal::posix
272 // Defines this to true iff Google Test can use POSIX regular expressions.
817 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
1556 namespace posix { namespace in namespace:testing::internal
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h 53 // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular
119 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
150 // RE - a simple regular expression class using the POSIX
247 // Brings in definitions for functions used in the testing::internal::posix
266 // Defines this to true iff Google Test can use POSIX regular expressions.
807 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
1546 namespace posix { namespace in namespace:testing::internal
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h 57 // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular
129 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
160 // RE - a simple regular expression class using the POSIX
285 // Brings in definitions for functions used in the testing::internal::posix
304 // Defines this to true iff Google Test can use POSIX regular expressions.
1698 namespace posix { namespace in namespace:testing::internal
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
gtest.h 153 // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular
225 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
256 // RE - a simple regular expression class using the POSIX
381 // Brings in definitions for functions used in the testing::internal::posix
400 // Defines this to true iff Google Test can use POSIX regular expressions.
2805 namespace posix { namespace in namespace:std::tr1
    [all...]

Completed in 4621 milliseconds

1 2