/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
ntpath.py | 487 from nt import _getfullpathname
565 from nt import _isdir as isdir
|
/external/curl/projects/ |
build-openssl.bat | 25 rem Check we are running on a Windows NT derived OS 243 nmake -f ms\nt.mak 276 nmake -f ms\nt.mak 316 nmake -f ms\nt.mak 349 nmake -f ms\nt.mak 424 echo Error: Only a Windows NT based Operating System is supported
|
/external/python/cpython2/Lib/ |
ntpath.py | 469 from nt import _getfullpathname 547 from nt import _isdir as isdir
|
imputil.py | 456 elif 'nt' in names: 458 from nt import stat
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
inspect_utils_test.py | 109 nt = collections.namedtuple('TestNamedTuple', ['a', 'b']) 114 self.assertTrue(inspect_utils.isnamedtuple(nt))
|
/device/linaro/hikey/uefi-tools/ |
uefi-build.sh | 181 if [ -e "$CACHE_FILE" -a "$TEMPLATE_FILE" -nt "$CACHE_FILE" ]
|
/external/libhevc/encoder/ |
ihevce_ipe_pass.c | 639 * \param[in] nt integer Transform Block size 651 void ihevce_intra_pred_ref_filtering(UWORD8 *pu1_src, WORD32 nt, UWORD8 *pu1_dst) 654 WORD32 four_nt = 4 * nt; 658 pu1_dst[4 * nt] = pu1_src[4 * nt]; [all...] |
ihevce_ipe_structs.h | 116 UWORD8 *pu1_ref, WORD32 src_strd, UWORD8 *pu1_dst, WORD32 dst_strd, WORD32 nt, WORD32 mode);
|
/external/llvm/test/MC/Hexagon/ |
relocations.s | 49 { if (r0 != #0) jump:nt #undefined }
|
/external/mesa3d/src/gallium/drivers/r600/sb/ |
sb_ir.h | 759 node(node_type nt, node_subtype nst, node_flags flags = NF_EMPTY) 761 type(nt), subtype(nst), flags(flags), 870 container_node(node_type nt = NT_LIST, node_subtype nst = NST_LIST, 872 : node(nt, nst, flags | NF_CONTAINER), first(), last(),
|
sb_shader.cpp | 257 node* shader::create_node(node_type nt, node_subtype nst, node_flags flags) { 258 node *n = new (pool.allocate(sizeof(node))) node(nt, nst, flags); 320 container_node* shader::create_container(node_type nt, node_subtype nst, 323 container_node(nt, nst, flags);
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Hexagon/ |
relocations.s | 57 { if (r0 != #0) jump:nt #undefined }
|
/external/toybox/scripts/ |
make.sh | 299 [ "$OUT" -nt "$i" ] && [ -z "$CLICK" -o "$OUT" -ot "$KCONFIG_CONFIG" ] &&
|
/external/eigen/Eigen/src/SparseQR/ |
SparseQR.h | 454 Index nt = nzcolR-bi; local 455 for(Index i = 0; i < nt/2; i++) std::swap(Ridx(bi+i), Ridx(nzcolR-i-1));
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
ntpath.py | 457 from nt import _getfullpathname
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
ntpath.py | 452 from nt import _getfullpathname
|
imputil.py | 456 elif 'nt' in names:
458 from nt import stat
|
/external/libexif/contrib/watcom/ |
Makefile | 1 # This makefile is made for OpenWatcom/NT and runs on my system. 25 SYSTEM=NT 57 !else ifeq SYSTEM NT 58 LDFLAGS= -zq -l=nt
|
/external/v8/benchmarks/ |
earley-boyer.js | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_collections.py | 43 nt = namedtuple('nt', u'the quick brown fox') # check unicode input
44 self.assertNotIn("u'", repr(nt._fields))
45 nt = namedtuple('nt', (u'the', u'quick')) # check unicode input
46 self.assertNotIn("u'", repr(nt._fields))
66 self.assertEqual(namedtuple('NT', spec, rename=True)._fields, renamed)
[all...] |
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
cloud_storage.py | 141 if os.name == 'nt':
|
/external/libhevc/decoder/ |
ihevcd_structs.h | [all...] |
/external/openssh/regress/ |
test-exec.sh | 471 if [ ! -f $OBJ/$t ] || [ ${SSHKEYGEN_BIN} -nt $OBJ/$t ]; then
|
/external/python/cpython2/Lib/test/ |
test_collections.py | 87 nt = namedtuple('nt', u'the quick brown fox') # check unicode input 88 self.assertNotIn("u'", repr(nt._fields)) 89 nt = namedtuple('nt', (u'the', u'quick')) # check unicode input 90 self.assertNotIn("u'", repr(nt._fields)) 110 self.assertEqual(namedtuple('NT', spec, rename=True)._fields, renamed) [all...] |
/external/python/cpython3/Lib/ |
pathlib.py | 17 if os.name == 'nt': 18 import nt 20 from nt import _getfinalpathname 25 nt = None variable 127 is_supported = (os.name == 'nt') 288 is_supported = (os.name != 'nt') 420 if nt: 625 cls = PureWindowsPath if os.name == 'nt' else PurePosixPath [all...] |