Searched refs:binary (Results 1 - 25 of 32) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_openmode/
H A Dopenmode.pass.cpp16 // static const openmode binary;
28 assert(std::ios_base::binary);
37 & std::ios_base::binary
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
H A Dutility.hpp14 #include <boost/utility/binary.hpp>
/ndk/tests/build/import-install/path1/
H A DAndroid.mk2 # by the main project's binary. Note that it imports
/ndk/tests/build/import-install/path2/
H A DAndroid.mk2 # by 'libpath1', and hence by the project's main binary
/ndk/sources/cxx-stl/stlport/src/details/
H A Dfstream_stdio.cpp189 case ios_base::out | ios_base::binary:
190 case ios_base::out | ios_base::trunc | ios_base::binary:
198 case ios_base::out | ios_base::app | ios_base::binary:
206 case ios_base::in | ios_base::binary:
214 case ios_base::in | ios_base::out | ios_base::binary:
222 case ios_base::in | ios_base::out | ios_base::trunc | ios_base::binary:
H A Dfstream_win32io.cpp62 ret |= ios_base::binary;
134 //the file will be considered as open in binary mode with no append attribute
228 switch (openmode & (~ios_base::ate & ~ios_base::binary)) {
403 if (!(_M_openmode & ios_base::binary)) {
477 if (_M_openmode & ios_base::binary) {
478 // binary mode
H A Dfstream_unistd.cpp165 // Unix makes no distinction between text and binary files.
166 switch ( openmode & (~ios_base::ate & ~ios_base::binary) ) {
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/
H A Dmbsnrtowcs.inc9 * Redistribution and use in source and binary forms, with or without
14 * 2. Redistributions in binary form must reproduce the above copyright
H A Dwcsnrtombs.inc4 * Redistribution and use in source and binary forms, with or without
9 * 2. Redistributions in binary form must reproduce the above copyright
/ndk/tests/build/build-assembly-file/jni/
H A Dassembly-x86.S6 # Redistribution and use in source and binary forms, with or without
10 # * Redistributions in binary form must reproduce the above copyright
/ndk/toolchains/llvm-3.4/
H A Dsetup.mk32 TARGET_LDFLAGS += -Wl,-link-native-binary
45 TARGET_LDFLAGS += -Wl,-link-native-binary
58 TARGET_LDFLAGS += -Wl,-link-native-binary
71 TARGET_LDFLAGS += -Wl,-link-native-binary
84 TARGET_LDFLAGS += -Wl,-link-native-binary
97 TARGET_LDFLAGS += -Wl,-link-native-binary
111 TARGET_LDFLAGS += -Wl,-link-native-binary
125 TARGET_LDFLAGS += -Wl,-link-native-binary
H A Dsetup-common.mk42 # Only use integrated binary if existed. Otherwise, use python version
/ndk/tests/device/test-gnustl-full/unit/
H A Dfstream_test.cpp231 // bogus ios_base::binary is for Wins
232 ofstream of("test_file.txt", ios_base::out | ios_base::binary | ios_base::trunc);
243 // bogus ios_base::binary is for Wins
244 ifstream is("test_file.txt", ios_base::in | ios_base::binary);
262 // bogus ios_base::binary is for Wins
263 ifstream is("test_file.txt", ios_base::in | ios_base::binary);
278 // bogus ios_base::binary is for Wins
279 ifstream is("test_file.txt", ios_base::in | ios_base::binary);
364 fstream ss( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary | ios_base::trunc );
392 // Test in binary mod
[all...]
/ndk/tests/device/test-stlport/unit/
H A Dfstream_test.cpp231 // bogus ios_base::binary is for Wins
232 ofstream of("test_file.txt", ios_base::out | ios_base::binary | ios_base::trunc);
243 // bogus ios_base::binary is for Wins
244 ifstream is("test_file.txt", ios_base::in | ios_base::binary);
262 // bogus ios_base::binary is for Wins
263 ifstream is("test_file.txt", ios_base::in | ios_base::binary);
278 // bogus ios_base::binary is for Wins
279 ifstream is("test_file.txt", ios_base::in | ios_base::binary);
364 fstream ss( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary | ios_base::trunc );
392 // Test in binary mod
[all...]
/ndk/toolchains/llvm-3.3/
H A Dsetup.mk32 TARGET_LDFLAGS += -Wl,-link-native-binary
45 TARGET_LDFLAGS += -Wl,-link-native-binary
58 TARGET_LDFLAGS += -Wl,-link-native-binary
71 TARGET_LDFLAGS += -Wl,-link-native-binary
84 TARGET_LDFLAGS += -Wl,-link-native-binary
H A Dsetup-common.mk38 # Only use integrated binary if existed. Otherwise, use python version
/ndk/sources/third_party/googletest/
H A DAndroid.mk3 # Redistribution and use in source and binary forms, with or without
9 # * Redistributions in binary form must reproduce the above
/ndk/build/tools/
H A Dbuild-device-llvm.sh214 --enable-shrink-binary-size \
257 --enable-shrink-binary-size \
/ndk/tests/build/build-mode/jni/
H A DAndroid.mk113 # We only build a single binary for x86
/ndk/build/core/
H A Ddefault-build-commands.mk7 # These flags are used to ensure that a binary doesn't reference undefined
20 # and this causes binary compatibility problems when they come from
H A Dsetup-toolchain.mk145 # We expect the gdbserver binary for this toolchain to be located at its root.
233 $(eval include $(BUILD_SYSTEM)/build-binary.mk)\
/ndk/sources/cxx-stl/stlport/src/
H A Dios.cpp74 const ios_base::openmode ios_base::binary; member in class:ios_base
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_fstream.h89 return ( (_M_openmode & ios_base::binary) != 0 )
95 // Returns true if we're in binary mode or if we're using an OS or file
96 // system where there is no distinction between text and binary mode.
101 return (_M_openmode & ios_base::binary) != 0;
H A D_ios_base.h98 _STLP_STATIC_CONSTANT(int, binary = 0x04);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dios.cpp118 const ios_base::openmode ios_base::binary; member in class:ios_base

Completed in 446 milliseconds

12