Home
last modified time | relevance | path

Searched refs:app (Results 1 – 25 of 33) sorted by relevance

12

/ndk/sources/host-tools/make-3.81/
DMakefile.am115 if chgrp $(inst_group) $$app && chmod g+s $$app; then \
116 echo "chgrp $(inst_group) $$app && chmod g+s $$app"; \
118 echo "$$app needs to be owned by group $(inst_group) and setgid;"; \
DMakefile.in999 if chgrp $(inst_group) $$app && chmod g+s $$app; then \
1000 echo "chgrp $(inst_group) $$app && chmod g+s $$app"; \
1002 echo "$$app needs to be owned by group $(inst_group) and setgid;"; \
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.ios.members/
Dopen_mode.pass.cpp23 std::strstream::open_mode b = std::strstream::app; in main()
24 assert(b == std::ios::app); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_openmode/
Dopenmode.pass.cpp26 assert(std::ios_base::app); in main()
35 ( std::ios_base::app in main()
/ndk/sources/cxx-stl/stlport/src/details/
Dfstream_unistd.cpp95 ret |= ios_base::app; in flag_to_openmode()
171 case ios_base::app: in _M_open()
172 case ios_base::out | ios_base::app: in _M_open()
185 case ios_base::in | ios_base::app: in _M_open()
186 case ios_base::in | ios_base::out | ios_base::app: in _M_open()
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) { in _M_open()
Dfstream_stdio.cpp194 case ios_base::out | ios_base::app: in _M_open()
198 case ios_base::out | ios_base::app | ios_base::binary: in _M_open()
Dfstream_win32io.cpp59 ret |= ios_base::app; in flag_to_openmode()
237 case ios_base::out | ios_base::app: in _M_open()
474 if (_M_openmode & ios_base::app) in _M_write()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/
Dpubseekpos.pass.cpp32 assert(t.pubseekpos(0, std::ios_base::app) == -1); in main()
Dpubseekoff.pass.cpp33 assert(t.pubseekoff(0, std::ios_base::beg, std::ios_base::app) == -1); in main()
/ndk/build/core/
Dsetup-app.mk38 .PHONY: ndk-app-$(_app)
39 ndk-app-$(_app): $(NDK_APP_MODULES)
40 all: ndk-app-$(_app)
Dbuild-all.mk82 $(eval include $(BUILD_SYSTEM)/setup-app.mk)\
Dmain.mk125 The APP variable contains unknown app names: $(_unknown_apps))\
Dadd-application.mk265 $(call ndk_log,Selecting debug optimization mode (app is debuggable))
268 $(call ndk_log,Selecting release optimization mode (app is not debuggable))
Dbuild-local.mk223 $(eval include $(BUILD_SYSTEM)/setup-app.mk)\
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.cons/
Dcp_size_mode.pass.cpp33 std::ostrstream out(buf, 11, std::ios::app); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.cons/
Dcp_size_mode.pass.cpp43 std::strstream inout(buf, 11, std::ios::app); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringbuf/stringbuf.virtuals/
Doverflow.pass.cpp91 testbuf<char> sb("abc", std::ios_base::app | std::ios_base::out); in main()
/ndk/sources/cxx-stl/stlport/src/
Dstrstream.cpp332 _M_buf(s, n, mode & ios_base::app ? s + strlen(s) : s) { in ostrstream()
365 _M_buf(s, n, mode & ios_base::app ? s + strlen(s) : s) { in strstream()
Dios.cpp72 const ios_base::openmode ios_base::app; member in ios_base
/ndk/build/tools/
Dcommon-build-host-funcs.sh479 …_bh_check_darwin_sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Develope…
483 …_bh_check_darwin_sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Develope…
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dfstream481 case ios_base::out | ios_base::app:
482 case ios_base::app:
494 case ios_base::in | ios_base::out | ios_base::app:
495 case ios_base::in | ios_base::app:
502 case ios_base::out | ios_base::app | ios_base::binary:
503 case ios_base::app | ios_base::binary:
515 case ios_base::in | ios_base::out | ios_base::app | ios_base::binary:
516 case ios_base::in | ios_base::app | ios_base::binary:
Dstrstream294 __sb_(__s, __n, __s + (__mode & ios::app ? strlen(__s) : 0))
354 __sb_(__s, __n, __s + (__mode & ios::app ? strlen(__s) : 0))
/ndk/tests/device/test-stlport/unit/
Dfstream_test.cpp338 ofstream o( "test_file.txt", ios_base::app | ios_base::out ); in tellp()
356 ofstream o( "test_file.txt", ios_base::app | ios_base::out ); in tellp()
841 ofstream nullStream(nullStreamName, ios_base::app); in null_stream()
/ndk/tests/device/test-gnustl-full/unit/
Dfstream_test.cpp338 ofstream o( "test_file.txt", ios_base::app | ios_base::out ); in tellp()
356 ofstream o( "test_file.txt", ios_base::app | ios_base::out ); in tellp()
841 ofstream nullStream(nullStreamName, ios_base::app); in null_stream()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_ios_base.h96 _STLP_STATIC_CONSTANT(int, app = 0x01);

12