OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:compile_flags
(Results
1 - 14
of
14
) sorted by null
/external/libcxxabi/test/libcxxabi/test/
config.py
50
self.cxx.
compile_flags
+= ['-DLIBCXXABI_NO_TIMER']
52
self.cxx.
compile_flags
+= ['-funwind-tables']
54
self.cxx.
compile_flags
+= ['-fno-exceptions', '-DLIBCXXABI_HAS_NO_EXCEPTIONS']
56
self.cxx.
compile_flags
+= ['-D_LIBCXXABI_HAS_NO_THREADS']
68
self.cxx.
compile_flags
+= ['-nostdinc++']
72
self.cxx.
compile_flags
+= ['-I' + cxx_headers]
80
self.cxx.
compile_flags
+= ['-I' + libcxxabi_headers]
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/test/libcxxabi/test/
config.py
42
self.cxx.
compile_flags
+= ['-DLIBCXXABI_NO_TIMER']
43
self.cxx.
compile_flags
+= ['-funwind-tables']
45
self.cxx.
compile_flags
+= ['-DLIBCXXABI_HAS_NO_THREADS=1']
56
self.cxx.
compile_flags
+= ['-I' + cxx_headers]
64
self.cxx.
compile_flags
+= ['-I' + libcxxabi_headers]
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/libcxxabi/test/
config.py
31
self.cxx.
compile_flags
+= ['-DLIBCXXABI_NO_TIMER']
41
self.cxx.
compile_flags
+= ['-I' + cxx_headers]
49
self.cxx.
compile_flags
+= ['-I' + libcxxabi_headers]
58
self.cxx.
compile_flags
+= ['-DLIBCXXABI_HAS_NO_THREADS=1']
/external/libcxx/test/libcxx/ndk/test/
config.py
46
self.
compile_flags
+ ['-c', '-o', '%OUT%', '%SOURCE%'])
48
['-o', '%OUT%', '%SOURCE%'] + self.
compile_flags
+ self.link_flags)
/external/libcxx/utils/libcxx/test/
config.py
153
% self.cxx.
compile_flags
)
241
compile_flags
= _prefixed_env_list('INCLUDE', '-isystem')
246
compile_flags
=
compile_flags
,
317
self.cxx.
compile_flags
+= ['-Werror=thread-safety']
420
self.cxx.
compile_flags
+= ['-I' + support_path]
422
compile_flags_str = self.get_lit_conf('
compile_flags
', '')
423
self.cxx.
compile_flags
+= shlex.split(compile_flags_str)
426
self.cxx.
compile_flags
+= ['-D_CRT_SECURE_NO_WARNINGS']
455
self.cxx.
compile_flags
+= ['-std={0}'.format(std)
[
all
...]
format.py
124
test_cxx.
compile_flags
+= [('-D%s' % mdef.strip()) for
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/
compiler.py
16
def __init__(self, path, flags=None,
compile_flags
=None, link_flags=None,
20
self.
compile_flags
= list(
compile_flags
or [])
69
cmd += self.flags + self.
compile_flags
+ flags
74
cmd += self.flags + self.
compile_flags
+ flags
84
cmd += self.flags + self.
compile_flags
+ self.link_flags + flags
169
self.
compile_flags
+= flags
196
self.
compile_flags
+= [flag]
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/
compiler.py
7
def __init__(self, path, flags=None,
compile_flags
=None, link_flags=None,
11
self.
compile_flags
= list(
compile_flags
or [])
60
cmd += self.flags + self.
compile_flags
+ flags
65
cmd += self.flags + self.
compile_flags
+ flags
75
cmd += self.flags + self.
compile_flags
+ self.link_flags + flags
160
self.
compile_flags
+= flags
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/
config.py
110
% self.cxx.
compile_flags
)
340
compile_flags_str = self.get_lit_conf('
compile_flags
', '')
341
self.cxx.
compile_flags
+= shlex.split(compile_flags_str)
348
self.cxx.
compile_flags
+= ['-std={0}'.format(std)]
351
self.cxx.
compile_flags
+= ['-nostdinc++']
354
self.cxx.
compile_flags
+= ['-D__STDC_FORMAT_MACROS',
392
self.cxx.
compile_flags
+= ['-I' + support_path]
398
self.cxx.
compile_flags
+= ['-I' + libcxx_headers]
404
self.cxx.
compile_flags
+= ['-fno-exceptions']
410
self.cxx.
compile_flags
+= ['-fno-rtti', '-D_LIBCPP_NO_RTTI'
[
all
...]
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/test/
config.py
121
% self.cxx.
compile_flags
)
229
self.cxx.
compile_flags
+= ['-Werror=thread-safety']
299
self.cxx.
compile_flags
+= ['-I' + support_path]
301
compile_flags_str = self.get_lit_conf('
compile_flags
', '')
302
self.cxx.
compile_flags
+= shlex.split(compile_flags_str)
322
self.cxx.
compile_flags
+= ['-std={0}'.format(std)]
325
self.cxx.
compile_flags
+= ['-nostdinc++']
327
self.target_info.add_cxx_compile_flags(self.cxx.
compile_flags
)
348
self.cxx.
compile_flags
+= ['-include', os.path.join(support_path, 'nasty_macros.hpp')]
355
self.cxx.
compile_flags
+= ['-I' + libcxx_headers
[
all
...]
/external/libcxx/utils/libcxx/
compiler.py
21
def __init__(self, path, flags=None,
compile_flags
=None, link_flags=None,
29
self.
compile_flags
= list(
compile_flags
or [])
129
cmd += self.
compile_flags
250
self.
compile_flags
+= flags
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/ndk/test/
config.py
53
self.cxx.
compile_flags
.append('-I' + android_support_headers)
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/ndk/test/
config.py
55
self.cxx.
compile_flags
.append('-I' + android_support_headers)
/external/autotest/client/common_lib/
pexpect.py
[
all
...]
Completed in 1036 milliseconds