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

1 2

  /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...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 44 enum OutputFormatTy { bsd, sysv, posix }; enumerator in enum:__anon24138::OutputFormatTy
50 clEnumVal(posix, "POSIX.2 format"),
79 cl::opt<bool> POSIXFormat("P", cl::desc("Alias for --format=posix"));
200 if (OutputFormat == posix && MultipleFiles) {
233 if (OutputFormat == posix) {
457 if (POSIXFormat) OutputFormat = posix;
  /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...]
  /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/icu4c/common/
uniset_props.cpp 1187 UBool posix = FALSE; \/\/ true for [:pat:], false for \\p{pat} \\P{pat} \\N{pat} local
    [all...]
  /external/open-vcdiff/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
627 // A simple C++ wrapper for <regex.h>. It uses the POSIX Enxtended
837 // The testing::internal::posix namespace holds wrappers for common
838 // POSIX functions. These wrappers hide the differences between
839 // Windows/MSVC and POSIX systems. Since some compilers define these
843 namespace posix { namespace in namespace:testing::internal
    [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/testing/gtest/include/gtest/internal/
gtest-port.h 53 // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular
118 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
147 // RE - a simple regular expression class using the POSIX
242 // Brings in definitions for functions used in the testing::internal::posix
261 // Defines this to true iff Google Test can use POSIX regular expressions.
791 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
1515 namespace posix { namespace in namespace:testing::internal
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h 53 // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular
125 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
156 // RE - a simple regular expression class using the POSIX
281 // Brings in definitions for functions used in the testing::internal::posix
300 // Defines this to true iff Google Test can use POSIX regular expressions.
1689 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 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
246 // Brings in definitions for functions used in the testing::internal::posix
265 // Defines this to true iff Google Test can use POSIX regular expressions.
825 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
1564 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
120 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
151 // RE - a simple regular expression class using the POSIX
250 // Brings in definitions for functions used in the testing::internal::posix
269 // Defines this to true iff Google Test can use POSIX regular expressions.
812 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
1551 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/libvpx/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...]
  /prebuilts/tools/common/gradle-plugins/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 1076 milliseconds

1 2