/external/icu/icu4c/source/i18n/ |
strmatch.cpp | 165 result.truncate(0); 249 rule.truncate(0);
|
transreg.cpp | 329 nextSpec.truncate(i); 336 nextSpec.truncate(0); 767 result.truncate(0); 784 result.truncate(0); // invalid source 796 result.truncate(0); // invalid index 826 result.truncate(0); // invalid source 847 result.truncate(0); // invalid target or index [all...] |
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/ |
ICUResourceBundleCollationTest.java | 160 boolean truncate, String[] testCases) { 174 ULocale equivLocale = ICUResourceBundle.getFunctionalEquivalent(path, cl, resName, keyword, inLocale, isAvail, truncate);
|
/external/ltp/include/old/ |
safe_macros.h | 205 rval = truncate(path, length); 208 "%s:%d: truncate(%s,%ld) failed",
|
/external/mesa3d/src/amd/addrlib/core/ |
addrelemlib.h | 115 ADDR_ROUND_BY_HALF, // add 1/2 and truncate when packing this element 116 ADDR_ROUND_TRUNCATE, // truncate toward 0 for sign/mag, else toward neg
|
/external/python/cpython3/Lib/unittest/ |
result.py | 100 self._stdout_buffer.truncate() 102 self._stderr_buffer.truncate()
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
ARMSelectionDAGInfo.cpp | 168 // Extend or truncate the argument to be an i32 value for the call. 170 Src = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Src);
|
/frameworks/base/core/java/android/service/chooser/ |
ChooserTarget.java | 79 * The UI presenting this target may truncate the title if it is too long to be presented 130 * may truncate this title if it is too long to be displayed in full.
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
ModeSelectorItem.java | 116 * When swiping in, we truncate the end of the item if the visible width 117 * is not enough to show the whole item. When swiping out, we truncate the
|
/system/nvram/messages/tests/ |
io_test.cpp | 330 EXPECT_TRUE(buf.Truncate()); 339 EXPECT_TRUE(buf.Truncate());
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
cStringIO.c | 306 "truncate(): truncate the file at the current position.");
313 if (!PyArg_ParseTuple(args, "|n:truncate", &pos)) return NULL;
316 /* No argument passed, truncate to current position */
522 {"truncate", (PyCFunction)IO_truncate, METH_VARARGS, IO_truncate__doc__},
629 {"truncate", (PyCFunction)IO_truncate, METH_VARARGS, IO_truncate__doc__},
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/ |
ConvLib.c | 50 // Truncate the data to word
89 // Truncate the data to 2 bytes and make cache level zero-based.
705 Field Filling Function: truncate record data to byte and fill in the
729 // Truncate the data to 8 bits
737 Field Filling Function: truncate record data to byte and fill in the
761 // Truncate the data to 8 bits
|
/external/autotest/client/site_tests/kernel_CheckArmErrata/ |
kernel_CheckArmErrata.py | 182 >>> _info_io.seek(0); _info_io.truncate() 295 >>> _info_io.seek(0); _info_io.truncate() 306 >>> _info_io.seek(0); _info_io.truncate() 358 >>> _info_io.seek(0); _info_io.truncate() 389 >>> _info_io.seek(0); _info_io.truncate() 396 >>> _info_io.seek(0); _info_io.truncate()
|
/external/python/cpython2/Modules/ |
cStringIO.c | 306 "truncate(): truncate the file at the current position."); 313 if (!PyArg_ParseTuple(args, "|n:truncate", &pos)) return NULL; 316 /* No argument passed, truncate to current position */ 522 {"truncate", (PyCFunction)IO_truncate, METH_VARARGS, IO_truncate__doc__}, 629 {"truncate", (PyCFunction)IO_truncate, METH_VARARGS, IO_truncate__doc__},
|
/external/python/cpython3/Lib/test/ |
test_fileio.py | 196 'tell', 'truncate', 'flush'] 289 f.truncate(0) 485 f.truncate(5) 488 f.truncate(15) 496 # "file.truncate fault on windows" 508 f.truncate()
|
/prebuilts/go/darwin-x86/src/cmd/go/internal/cache/ |
cache.go | 415 // we make a best-effort attempt to truncate the file f 420 f.Truncate(0) 426 f.Truncate(0) 434 f.Truncate(0) 440 f.Truncate(0) 446 f.Truncate(0)
|
/prebuilts/go/linux-x86/src/cmd/go/internal/cache/ |
cache.go | 415 // we make a best-effort attempt to truncate the file f 420 f.Truncate(0) 426 f.Truncate(0) 434 f.Truncate(0) 440 f.Truncate(0) 446 f.Truncate(0)
|
/external/python/cpython3/Lib/ |
_pyio.py | 347 def truncate(self, pos=None): member in class:IOBase 348 """Truncate file to size bytes. 353 self._unsupported("truncate") 395 If False, seek(), tell() and truncate() will raise OSError. 424 If False, write() and truncate() will raise OSError. 753 def truncate(self, pos=None): member in class:_BufferedIOMixin 762 # XXX directly to truncate? 763 return self.raw.truncate(pos) 928 def truncate(self, pos=None): member in class:BytesIO 930 raise ValueError("truncate on closed file" 1204 def truncate(self, pos=None): member in class:BufferedWriter 1353 def truncate(self, pos=None): member in class:BufferedRandom 1644 def truncate(self, size=None): member in class:FileIO 1752 def truncate(self, pos=None): member in class:TextIOBase 2267 def truncate(self, pos=None): member in class:TextIOWrapper [all...] |
/external/python/cpython2/Lib/test/ |
test_file2k.py | 125 'readline', 'readlines', 'seek', 'tell', 'truncate', 129 methods.remove('truncate') 195 self.assertRaises(IOError, self.f.truncate) 248 self.assertRaises(IOError, sys.stdin.truncate) 295 # "file.truncate fault on windows" 307 f.truncate() 642 self.f.truncate()
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_file2k.py | 117 'readline', 'readlines', 'seek', 'tell', 'truncate', 121 methods.remove('truncate') 187 self.assertRaises(IOError, self.f.truncate) 234 self.assertRaises(IOError, sys.stdin.truncate) 281 # "file.truncate fault on windows" 293 f.truncate() 594 self.f.truncate()
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_file2k.py | 117 'readline', 'readlines', 'seek', 'tell', 'truncate', 121 methods.remove('truncate') 187 self.assertRaises(IOError, self.f.truncate) 234 self.assertRaises(IOError, sys.stdin.truncate) 281 # "file.truncate fault on windows" 293 f.truncate() 594 self.f.truncate()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_file2k.py | 117 'readline', 'readlines', 'seek', 'tell', 'truncate', 121 methods.remove('truncate') 187 self.assertRaises(IOError, self.f.truncate) 234 self.assertRaises(IOError, sys.stdin.truncate) 281 # "file.truncate fault on windows" 293 f.truncate() 594 self.f.truncate()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_file2k.py | 117 'readline', 'readlines', 'seek', 'tell', 'truncate', 121 methods.remove('truncate') 187 self.assertRaises(IOError, self.f.truncate) 234 self.assertRaises(IOError, sys.stdin.truncate) 281 # "file.truncate fault on windows" 293 f.truncate() 594 self.f.truncate()
|
/external/icu/icu4c/source/test/intltest/ |
ustrtest.cpp | 336 test2.truncate(1); // change only the length, not the buffer [all...] |
/external/llvm/test/CodeGen/X86/ |
codegen-prepare-addrmode-sext.ll | 105 ; Check that we do not promote truncate when we cannot determine the 122 ; Check that we do not promote truncate when we cannot determine all the 141 ; Check that we are able to promote truncate when we know all the bits 158 ; On X86 truncate are free. Check that we are able to promote the add 159 ; to be used as addressing mode and that we insert a truncate for the other 196 ; On X86 truncate are free. Check that we are able to promote the add 197 ; to be used as addressing mode and that we insert a truncate for 482 ; Check that we do not promote truncate when the dropped bits 501 ; Check that we are able to promote truncate when we know all the bits
|