Searched refs:emit (Results 1 - 25 of 50) sorted by relevance

12

/frameworks/compile/mclinker/include/mcld/
H A DLinker.h50 /// emit - To emit output mcld::Module to a FileOutputBuffer.
51 bool emit(FileOutputBuffer& pOutput);
53 /// emit - To open a file for output in pPath and to emit output mcld::Module
55 bool emit(const Module& pModule, const std::string& pPath);
57 /// emit - To emit output mcld::Module in the pFileDescriptor.
58 bool emit(const Module& pModule, int pFileDescriptor);
/frameworks/compile/mclinker/lib/LD/
H A DMsgHandler.cpp20 emit();
23 bool MsgHandler::emit() { function in class:mcld::MsgHandler
25 return m_Engine.emit();
H A DDiagnosticEngine.cpp60 // emit - process current diagnostic.
61 bool DiagnosticEngine::emit() { function in class:mcld::DiagnosticEngine
H A DMergedStringTable.cpp28 void MergedStringTable::emit(MemoryRegion& pRegion) { function in class:mcld::MergedStringTable
H A DDebugString.cpp86 void DebugString::emit(MemoryRegion& pRegion) { function in class:mcld::DebugString
87 return m_StringTable.emit(pRegion);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsPLT.h34 uint64_t emit(MemoryRegion& pRegion);
H A DMipsGOTPLT.h32 uint64_t emit(MemoryRegion& pRegion);
H A DMipsAbiFlags.h31 static uint64_t emit(const MipsAbiFlags& pInfo, MemoryRegion& pRegion);
H A DMipsGOTPLT.cpp30 uint64_t MipsGOTPLT::emit(MemoryRegion& pRegion) { function in class:mcld::MipsGOTPLT
/frameworks/compile/mclinker/include/mcld/LD/
H A DDebugString.h45 /// emit - emit the section .debug_str
46 void emit(MemoryRegion& pRegion);
H A DMergedStringTable.h40 /// emit - emit the string table
41 void emit(MemoryRegion& pRegion);
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttribute.h63 /// emit - encode and write out this attribute section
64 size_t emit(MemoryRegion& pRegion) const;
95 /// emit - write out this attribute subsection to the buffer.
96 size_t emit(char* pBuf) const;
H A DELFDynamic.h42 virtual size_t emit(uint8_t* pAddress) const = 0;
74 inline size_t emit(uint8_t* pAddress) const;
105 inline size_t emit(uint8_t* pAddress) const;
153 /// emit
154 void emit(const LDSection& pSection, MemoryRegion& pRegion) const;
H A DELFAttributeData.h77 /// emit - write out attribute data to the buffer and return the number of
79 virtual size_t emit(char* pBuf) const = 0;
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64GOT.h70 uint64_t emit(MemoryRegion& pRegion);
H A DAArch64PLT.h70 uint64_t emit(MemoryRegion& pRegion);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.h58 uint64_t emit(MemoryRegion& pRegion);
H A DARMPLT.h66 uint64_t emit(MemoryRegion& pRegion);
/frameworks/native/opengl/tools/glgen/src/
H A DGenerateGL.java34 private static void emit(int version, boolean ext, boolean pack, method in class:GenerateGL
161 emit(0, false, false,
163 emit(0, true, false,
165 emit(1, false, false,
167 emit(1, true, false,
169 emit(1, true, true,
H A DGenerateEGL.java34 private static void emit(EGLCodeEmitter emitter, method in class:GenerateEGL
101 emit(emitter, specReader, egljStream, eglcStream);
H A DGenerateGLES.java34 private static void emit(GLESCodeEmitter emitter, method in class:GenerateGLES
105 emit(emitter, spec11Reader, gl11Stream, gl11cStream);
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp242 bool Linker::emit(FileOutputBuffer& pOutput) { function in class:mcld::Linker
255 bool Linker::emit(const Module& pModule, const std::string& pPath) { function in class:mcld::Linker
276 error(diag::err_cannot_open_output_file) << "Linker::emit()" << pPath;
284 result = emit(*output);
289 bool Linker::emit(const Module& pModule, int pFileDescriptor) { function in class:mcld::Linker
297 return emit(*output);
/frameworks/compile/mclinker/lib/Target/
H A DELFAttribute.cpp137 size_t ELFAttribute::emit(MemoryRegion& pRegion) const { function in class:mcld::ELFAttribute
152 total_size += (*subsec_it)->emit(buffer + total_size);
299 size_t ELFAttribute::Subsection::emit(char* pBuf) const { function in class:mcld::ELFAttribute::Subsection
331 uint32_t subsubsection_length = m_AttrData.emit(buffer);
/frameworks/compile/mclinker/unittests/
H A DLinkerTest.cpp61 linker.emit(module, "./test.so");
120 linker.emit(module, "libplasma.so"); ///< -o libplasma.so
179 linker.emit(module1, "libplasma.once.so"); ///< -o libplasma.so
223 linker.emit(module2, "libplasma.twice.so"); ///< -o libplasma.exe
277 linker.emit(module1, "libplasma.once.so"); ///< -o libplasma.so
280 // Can not delete builder until emit the output. Dynamic string table
326 linker.emit(module2, "libplasma.twice.so"); ///< -o libplasma.exe
497 linker.emit(module, "libgotplt.so"); ///< -o libgotplt.so
/frameworks/native/opengl/tools/glgen2/registry/
H A Dreg.py155 # emit - has this feature been defined already?
169 self.emit = False
216 # emitversions - regex matching API versions to actually emit
337 # beginFeature(interface, emit) - write interface for a feature
340 # emit - actually write to the header only when True
406 def beginFeature(self, interface, emit):
407 self.emit = emit
447 # beginFeature(interface, emit)
560 def beginFeature(self, interface, emit)
[all...]

Completed in 315 milliseconds

12