Searched refs:macros (Results 1 - 25 of 97) sorted by relevance

1234

/external/elfutils/src/tests/
H A Drun-macro-test.sh30 # gcc -gdwarf-4 -g3 -o testfile-macros macro.c
33 testfiles testfile-macinfo testfile-macros
34 tempfiles readelf.macros.out
39 | grep macro_info > readelf.macros.out ||
41 testrun_compare cat readelf.macros.out <<\EOF
45 testrun ${abs_top_builddir}/src/readelf --debug-dump=info testfile-macros \
46 | grep GNU_macros > readelf.macros.out ||
47 { echo "*** failure readelf --debug-dump=info testfile-macros"; status=1; }
48 testrun_compare cat readelf.macros.out <<\EOF
/external/clang/test/Modules/Inputs/
H A Dmacros.h12 #if !__building_module(macros)
13 # error Can't include this header without building the 'macros' module.
/external/valgrind/memcheck/tests/
H A Derr_disable4.stderr.exp6 WARNING: of the VALGRIND_DISABLE_ERROR_REPORTING macros.
9 WARNING: of the VALGRIND_DISABLE_ERROR_REPORTING macros.
12 WARNING: of the VALGRIND_DISABLE_ERROR_REPORTING macros.
15 WARNING: of the VALGRIND_DISABLE_ERROR_REPORTING macros.
18 WARNING: of the VALGRIND_DISABLE_ERROR_REPORTING macros.
21 WARNING: of the VALGRIND_DISABLE_ERROR_REPORTING macros.
24 WARNING: of the VALGRIND_DISABLE_ERROR_REPORTING macros.
27 WARNING: of the VALGRIND_DISABLE_ERROR_REPORTING macros.
30 WARNING: of the VALGRIND_DISABLE_ERROR_REPORTING macros.
33 WARNING: of the VALGRIND_DISABLE_ERROR_REPORTING macros
[all...]
H A Derr_disable2.stderr.exp19 WARNING: of the VALGRIND_DISABLE_ERROR_REPORTING macros.
H A Derr_disable_arange1.stderr.exp34 WARNING: VALGRIND_{DISABLE,ENABLE}_ERROR_REPORTING_IN_RANGE macros.
/external/libcxx/test/libcxx/
H A Dcompiler.py20 macros = self.dumpMacros()
21 if macros is None:
25 if '__clang__' in macros.keys():
28 if '__apple_build_version__' in macros.keys():
30 major_ver = macros['__clang_major__']
31 minor_ver = macros['__clang_minor__']
32 patchlevel = macros['__clang_patchlevel__']
33 elif '__GNUC__' in macros.keys():
35 major_ver = macros['__GNUC__']
36 minor_ver = macros['__GNUC_MINOR_
[all...]
/external/libxml2/python/
H A Dsetup.py171 macros = [] variable
173 macros.append(('_REENTRANT','1'))
183 macros.append(('MERGED_MODULES', '1'))
198 libraries=libs, define_macros=macros)]
202 libraries=libs, define_macros=macros))
H A Dsetup.py.in171 macros = [] variable
173 macros.append(('_REENTRANT','1'))
183 macros.append(('MERGED_MODULES', '1'))
198 libraries=libs, define_macros=macros)]
202 libraries=libs, define_macros=macros))
/external/clang/test/Modules/
H A Dmacros.c5 // RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodules-cache-path=%t -fmodule-name=macros %S/Inputs/module.map
17 @import macros; variable
40 i += macros; // expanded from __MODULE__ within the 'macros' module.
47 #if __building_module(macros)
52 // their macros should not be visible.
/external/libopus/
H A Dsilk_headers.mk16 silk/macros.h \
/external/v8/tools/
H A Djs2c.py125 def ExpandMacros(lines, macros):
126 # We allow macros to depend on the previously declared macros, but
128 for name_pattern, macro in reversed(macros):
130 return ExpandMacros(s, macros)
161 macros = []
178 macros.append((re.compile("\\b%s\\(" % name), TextMacro(args, body)))
186 macros.append((re.compile("\\b%s\\(" % name), PythonMacro(args, fun)))
189 return (constants, macros)
199 # no more macros
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py2/
H A Dcommands.py208 - The macros ``EXT_PACKAGE`` and ``EXT_MODULE`` will be filled (or
221 # handle name macros
222 macros = dict(ext.define_macros or ())
228 if pkg is not None and 'EXT_PACKAGE' not in macros:
230 if 'EXT_MODULE' not in macros:
233 macros = dict(ext.undef_macros or ())
234 if 'EXT_PACKAGE' not in macros:
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py3/
H A Dcommands.py207 - The macros ``EXT_PACKAGE`` and ``EXT_MODULE`` will be filled (or
220 # handle name macros
221 macros = dict(ext.define_macros or ())
227 if pkg is not None and 'EXT_PACKAGE' not in macros:
229 if 'EXT_MODULE' not in macros:
232 macros = dict(ext.undef_macros or ())
233 if 'EXT_PACKAGE' not in macros:
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/_setup/py2/
H A Dcommands.py208 - The macros ``EXT_PACKAGE`` and ``EXT_MODULE`` will be filled (or
221 # handle name macros
222 macros = dict(ext.define_macros or ())
228 if pkg is not None and 'EXT_PACKAGE' not in macros:
230 if 'EXT_MODULE' not in macros:
233 macros = dict(ext.undef_macros or ())
234 if 'EXT_PACKAGE' not in macros:
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/_setup/py3/
H A Dcommands.py207 - The macros ``EXT_PACKAGE`` and ``EXT_MODULE`` will be filled (or
220 # handle name macros
221 macros = dict(ext.define_macros or ())
227 if pkg is not None and 'EXT_PACKAGE' not in macros:
229 if 'EXT_MODULE' not in macros:
232 macros = dict(ext.undef_macros or ())
233 if 'EXT_PACKAGE' not in macros:
/external/clang/test/SemaCXX/
H A Dwarn-tautological-undefined-compare.cpp114 namespace macros { namespace
H A Dwarn-undefined-bool-conversion.cpp99 namespace macros { namespace
H A Dwarn-tautological-compare.cpp140 namespace macros { namespace
H A Dwarn-bool-conversion.cpp122 namespace macros { namespace
/external/webrtc/
H A Dandroid-webrtc.mk17 # The following macros are used by modules,
27 # TODO(kma): test if the code under next two macros works with generic GCC compilers
/external/jemalloc/include/jemalloc/
H A Djemalloc_mangle.sh29 * The ${symbol_prefix}* macros can be used as stable alternative names for the
/external/v8/
H A DAndroid.d8.mk18 $(LOCAL_PATH)/src/macros.py
/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DDefaultRenderingContext.java57 private Map<String, Macro> macros = new HashMap<String, Macro>(); field in class:DefaultRenderingContext
186 macros.put(name, macro);
191 Macro macro = macros.get(name);
/external/mdnsresponder/mDNSShared/
H A DDebugServices.h355 #pragma mark == General macros ==
379 compiler warnings about unused variables. To eliminate these warnings, use these macros to indicate variables that
396 Rather than using "static" directly, using this macros allows you to access these variables external while
413 Rather than using "static" directly, using this macros allows you to access these variables external while
474 #pragma mark == Compile Time macros ==
499 Note: The following macros differ from the macros on the www.jaggersoft.com web site because those versions do not
533 #pragma mark == check macros ==
716 #pragma mark == require macros ==
1082 #pragma mark == Design-By-Contract macros
[all...]
/external/libexif/test/nls/
H A Dtest-codeset.c36 #error Define one of the CODESET_* macros!

Completed in 507 milliseconds

1234