Searched refs:export (Results 1 - 25 of 1550) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gyp/test/win/compiler-flags/
H A Dwarning-as-error.cc7 int export; local
H A Dwarning-level1.cc6 int export; // Cause a level 1 warning (C4237). local
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/
H A Dexport.asm0 export foo
2 export foo2 label
1 export foo label
H A Dwin32test.asm7 ; [1] Define and export a global text-section symbol
8 ; [2] Define and export a global data-section symbol
9 ; [3] Define and export a global BSS-section symbol
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
H A Drdfext.asm3 global foo:export
4 global bar:export proc
5 global bar2:export function
6 global baz:export data
7 global baz2:export object
/external/chromium_org/tools/gyp/test/win/
H A Dgyptest-link-deffile.py26 def HasExport(binary, export):
29 return export in output
31 # Make sure we only have the export when the .def file is in use.
H A Dgyptest-link-defrelink.py27 def HasExport(binary, export):
30 return export in output
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp49 #define export macro
134 export
/external/chromium_org/chrome/browser/resources/net_export/
H A Dnet_export.css26 #net-export-main {
30 #export-view-file-path-text {
/external/chromium_org/build/win/importlibs/
H A Dfilter_export_list.py36 Note that the export names from the latter incanatation are stdcall-mangled,
47 for export in master_exports:
48 name = export.split('@')[0]
49 master_mapping[name] = export
/external/chromium_org/media/base/simd/
H A Dmedia_export.asm36 ; Windows needs an additional export declaration.
38 export mangle(%1) label
40 export mangle(%1) label
/external/srec/portable/include/
H A DPortExport.h27 /* These macros are used if defining DLL import/export in the source file
68 #error Symbol import/export pair not defined.
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dmake_names.py54 'export': '',
72 export = self.in_file.parameters['export'].strip('"')
83 'export': export,
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprtypes.h66 ** will not export internal cross-file or forward-declared symbols.
147 #define PR_EXPORT(__type) extern __declspec(export) __type
148 #define PR_EXPORT_DATA(__type) extern __declspec(export) __type
149 #define PR_IMPORT(__type) extern __declspec(export) __type
150 #define PR_IMPORT_DATA(__type) extern __declspec(export) __type
152 #define PR_EXTERN(__type) extern __declspec(export) __type
153 #define PR_IMPLEMENT(__type) __declspec(export) __type
154 #define PR_EXTERN_DATA(__type) extern __declspec(export) __type
155 #define PR_IMPLEMENT_DATA(__type) __declspec(export) __type
/external/chromium_org/tools/win/split_link/
H A Dsplit_link.py219 def Unmangle(export):
227 export, ctypes.byref(output_string), buffer_size, 0):
232 def IsDataDefinition(export):
235 if export[0] != '?':
239 return '(' not in Unmangle(export)
256 [' DATA' if IsDataDefinition(export) and not IGNORE_DATA else ''
257 for export in part]
258 print >> f, '\n'.join(' ' + export + data
259 for export, data in zip(part, is_data))
391 for export i
[all...]
/external/chromium_org/ui/ozone/
H A Dgenerate_constructor_list.py15 --export OZONE_EXPORT \
74 def GenerateConstructorList(out, namespace, export, typenames, platforms,
128 out.write('template class %(export)s PlatformObject<%(typename)s>;\n'
129 % {'export': export, 'typename': namespace + '::' + typename})
139 parser.add_option('--export', default='OZONE_EXPORT')
159 GenerateConstructorList(out_cc, options.namespace, options.export,
/external/iproute2/ip/
H A DAndroid.mk32 LOCAL_LDFLAGS := -Wl,-export-dynamic -Wl,--no-gc-sections
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/tests/
H A Dcofftest.asm7 ; [1] Define and export a global text-section symbol
8 ; [2] Define and export a global data-section symbol
9 ; [3] Define and export a global BSS-section symbol
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/gas32/
H A Dgas-macho32.asm7 # [1] Define and export a global text-section symbol
8 # [2] Define and export a global data-section symbol
9 # [3] Define and export a global BSS-section symbol
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
H A DplotBenchmark.m1 function plotBenchmark(fileNames, export)
19 export = 'eps';
36 if ~ischar(export)
146 casesPsnr = plotOnePsnr(casesPsnr, i, export, outpath);
152 casesSSIM = plotOneSSIM(casesSSIM, i, export, outpath);
161 casesSpeed = plotOneSpeed(casesSpeed, i, export, outpath);
171 function casesOut = plotOnePsnr(cases, num, export, outpath)
225 if ~strcmp(export, 'none')
233 if strcmp(export, 'pdf')
239 function casesOut = plotOneSSIM(cases, num, export, outpat
[all...]
/external/libpng/arm/
H A Dfilter_neon.S43 .macro func name, export=0
50 .if \export
58 func png_read_filter_row_sub4_neon, export=1
74 func png_read_filter_row_sub3_neon, export=1
100 func png_read_filter_row_up_neon, export=1
113 func png_read_filter_row_avg4_neon, export=1
134 func png_read_filter_row_avg3_neon, export=1
185 func png_read_filter_row_paeth4_neon, export=1
208 func png_read_filter_row_paeth3_neon, export=1
/external/chromium_org/tools/cr/cr/
H A Dvisitor.py24 The two main uses of visitor are search and export. They differ in that export
128 if self.current_node.export is False:
135 if (self.current_node.export is None) and key.startswith('_'):
149 def __init__(self, name='--', enabled=True, export=True):
156 self._export = export
179 def export(self): member in class:Node
/external/clang/test/Parser/
H A Dcxx-template-decl.cpp8 export class foo { }; // expected-error {{expected template}}
11 export template x; // expected-error {{expected '<' after 'template'}}
12 export template<class T> class x0; // expected-warning {{exported templates are unsupported}}
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/tests/
H A Dstabs-elf.asm8 ; [1] Define and export a global text-section symbol
9 ; [2] Define and export a global data-section symbol
10 ; [3] Define and export a global BSS-section symbol
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delftest.asm8 ; [1] Define and export a global text-section symbol
9 ; [2] Define and export a global data-section symbol
10 ; [3] Define and export a global BSS-section symbol

Completed in 6366 milliseconds

1234567891011>>