Searched defs:emit (Results 126 - 150 of 189) sorted by relevance

12345678

/external/okhttp/okio/okio/src/main/java/okio/
H A DBuffer.java90 return this; // Nowhere to emit to!
93 @Override public BufferedSink emit() { method in class:Buffer
94 return this; // Nowhere to emit to!
847 // surrogate. If not, the UTF-16 is invalid, in which case we emit a replacement character.
/external/protobuf/js/binary/
H A Dutils.js494 function emit(digit) {
505 if (digitC || start) emit(digitC);
506 if (digitB || start) emit(digitB);
507 if (digitA || start) emit(digitA);
/external/python/cpython2/Lib/compiler/
H A Dpyassem.py69 def emit(self, *inst): member in class:FlowGraph
74 self.current.emit(inst)
145 break # can't emit yet, dominated by a remaining block
188 def emit(self, inst): member in class:Block
/external/python/cpython2/Lib/logging/
H A Dhandlers.py68 def emit(self, record): member in class:BaseRotatingHandler
78 logging.FileHandler.emit(self, record)
376 watches the file to see if it has changed since the last emit.
400 def emit(self, record): member in class:WatchedFileHandler
430 logging.FileHandler.emit(self, record)
568 def emit(self, record): member in class:SocketHandler
837 def emit(self, record): member in class:SysLogHandler
918 def emit(self, record): member in class:SMTPHandler
1018 def emit(self, record): member in class:NTEventLogHandler
1076 def emit(sel member in class:HTTPHandler
1135 def emit(self, record): member in class:BufferingHandler
[all...]
H A D__init__.py736 def emit(self, record): member in class:Handler
743 raise NotImplementedError('emit must be implemented '
748 Conditionally emit the specified logging record.
759 self.emit(record)
798 Handle errors which occur during an emit() call.
801 encountered during an emit() call. If raiseExceptions is false,
849 def emit(self, record): member in class:StreamHandler
948 def emit(self, record): member in class:FileHandler
953 constructor, open it before calling the superclass's emit.
957 StreamHandler.emit(sel
1702 def emit(self, record): member in class:NullHandler
[all...]
/external/python/cpython2/Tools/faqwiz/
H A Dfaqwiz.py58 def emit(format, *args, **kw): function
255 emit(MARK_VERY_RECENT, self)
257 emit(MARK_RECENT, self)
260 emit(ENTRY_HEADER1, self)
262 emit(ENTRY_HEADER2, self)
305 emit(ENTRY_FOOTER, self)
307 emit(ENTRY_LOGINFO, self)
400 emit(message, kw)
403 emit(PROLOGUE, entry, kwdict=kw, title=escape(title))
406 emit(EPILOGU
[all...]
/external/python/cpython3/Lib/logging/
H A Dhandlers.py63 def emit(self, record): member in class:BaseRotatingHandler
73 logging.FileHandler.emit(self, record)
422 watches the file to see if it has changed since the last emit.
474 def emit(self, record): member in class:WatchedFileHandler
482 logging.FileHandler.emit(self, record)
623 def emit(self, record): member in class:SocketHandler
890 def emit(self, record): member in class:SysLogHandler
974 def emit(self, record): member in class:SMTPHandler
1074 def emit(self, record): member in class:NTEventLogHandler
1137 def emit(sel member in class:HTTPHandler
1204 def emit(self, record): member in class:BufferingHandler
1364 def emit(self, record): member in class:QueueHandler
[all...]
H A D__init__.py840 def emit(self, record): member in class:Handler
847 raise NotImplementedError('emit must be implemented '
852 Conditionally emit the specified logging record.
863 self.emit(record)
902 Handle errors which occur during an emit() call.
905 encountered during an emit() call. If raiseExceptions is false,
980 def emit(self, record): member in class:StreamHandler
1061 def emit(self, record): member in class:FileHandler
1066 constructor, open it before calling the superclass's emit.
1070 StreamHandler.emit(sel
1952 def emit(self, record): member in class:NullHandler
[all...]
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DEDEmitter.cpp49 void emit(raw_ostream &o, unsigned int &i) { function in class:__anon23228::EnumEmitter
89 virtual void emit(raw_ostream &o, unsigned int &i) = 0;
112 void emit(raw_ostream &o, unsigned int &i) { function in class:__anon23228::LiteralConstantEmitter
139 void emit(raw_ostream &o, unsigned int &i) { function in class:__anon23228::CompoundConstantEmitter
161 Entries[index]->emit(o, i);
185 void emit(raw_ostream &o, unsigned int &i) { function in class:__anon23228::FlagsConstantEmitter
840 // We still need to emit null initializers for everything.
925 operandTypes.emit(o, i);
944 instructionTypes.emit(o, i);
962 infoArray.emit(
[all...]
/external/swiftshader/third_party/subzero/src/
H A DIceAssembler.h99 /// Assembler buffers are used to emit binary code. They grow on demand.
113 template <typename T> void emit(T Value) { function in class:Ice::AssemblerBuffer
141 /// To emit an instruction to the assembler buffer, the EnsureCapacity helper
147 /// ... emit bytes for single instruction ...
187 /// Mark that an attempt was made to emit, but failed. Hence, in order to
188 /// continue, one must emit a text fixup.
192 /// Returns true if last emit failed and needs a text fixup.
219 // emit the last request.
H A DIceInst.cpp716 getSrc(I)->emit(Func);
957 void InstBundleLock::emit(const Cfg *Func) const { function in class:InstBundleLock
994 void InstBundleUnlock::emit(const Cfg *Func) const { function in class:InstBundleUnlock
1009 void InstFakeDef::emit(const Cfg *Func) const { function in class:InstFakeDef
1012 // Go ahead and "emit" these for now, since they are relatively rare.
1015 getDest()->emit(Func);
1032 void InstFakeUse::emit(const Cfg *Func) const { (void)Func; } function in class:InstFakeUse
1042 void InstFakeKill::emit(const Cfg *Func) const { (void)Func; } function in class:InstFakeKill
/external/v8/src/ia32/
H A Dassembler-ia32-inl.h355 void Assembler::emit(uint32_t x) { function in class:v8::internal::Assembler
367 void Assembler::emit(Handle<Object> handle) { function in class:v8::internal::Assembler
372 emit(reinterpret_cast<intptr_t>(handle.location()),
376 emit(reinterpret_cast<intptr_t>(obj));
381 void Assembler::emit(uint32_t x, RelocInfo::Mode rmode, TypeFeedbackId id) { function in class:v8::internal::Assembler
388 emit(x);
392 void Assembler::emit(Handle<Code> code, function in class:v8::internal::Assembler
396 emit(reinterpret_cast<intptr_t>(code.location()), rmode, id);
400 void Assembler::emit(const Immediate& x) { function in class:v8::internal::Assembler
407 emit(
[all...]
/external/v8/src/ppc/
H A Dassembler-ppc-inl.h435 void Assembler::emit(Instr x) { function in class:v8::internal::Assembler
/external/v8/src/x64/
H A Dassembler-x64-inl.h85 void Assembler::emit(Immediate x) { function in class:v8::internal::Assembler
93 emit(0x48 | reg.high_bit() << 2 | rm_reg.high_bit());
98 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3);
103 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3);
108 emit(0x48 | reg.high_bit() << 2 | op.rex_);
113 emit(0x48 | (reg.code() & 0x8) >> 1 | op.rex_);
119 emit(0x48 | rm_reg.high_bit());
124 emit(0x48 | op.rex_);
129 emit(0x40 | reg.high_bit() << 2 | rm_reg.high_bit());
134 emit(
[all...]
/external/v8/src/x87/
H A Dassembler-x87-inl.h355 void Assembler::emit(uint32_t x) { function in class:v8::internal::Assembler
367 void Assembler::emit(Handle<Object> handle) { function in class:v8::internal::Assembler
372 emit(reinterpret_cast<intptr_t>(handle.location()),
376 emit(reinterpret_cast<intptr_t>(obj));
381 void Assembler::emit(uint32_t x, RelocInfo::Mode rmode, TypeFeedbackId id) { function in class:v8::internal::Assembler
388 emit(x);
392 void Assembler::emit(Handle<Code> code, function in class:v8::internal::Assembler
396 emit(reinterpret_cast<intptr_t>(code.location()), rmode, id);
400 void Assembler::emit(const Immediate& x) { function in class:v8::internal::Assembler
407 emit(
[all...]
/external/valgrind/VEX/priv/
H A Dmain_util.c505 Bool emit = toBool(c == '\n' || n_myprintf_buf >= 1000-10 /*paranoia*/); local
508 if (emit) {
/external/valgrind/exp-sgcheck/
H A Dpc_common.c279 static void emit ( const HChar* format, ... ) PRINTF_CHECK(1, 2);
280 static void emit ( const HChar* format, ... ) function
313 emit( " <kind>%s</kind>\n", pc_get_error_name(err));
322 emit( " <what>Invalid %s of size %ld</what>\n",
327 emit( " <auxwhat>Address %#lx expected vs actual:</auxwhat>\n",
336 emit( "Invalid %s of size %ld\n",
341 emit( " Address %#lx expected vs actual:\n", xe->XE.SorG.addr );
342 emit( " Expected: %s\n", &xe->XE.SorG.expect[0] );
343 emit( " Actual: %s\n", &xe->XE.SorG.actual[0] );
345 emit(" Actua
[all...]
/external/dtc/
H A Dflattree.c250 static void flatten_tree(struct node *tree, struct emitter *emit, argument
261 emit->beginnode(etarget, tree->labels);
264 emit->string(etarget, tree->fullpath, 0);
266 emit->string(etarget, tree->name, 0);
268 emit->align(etarget, sizeof(cell_t));
278 emit->property(etarget, prop->labels);
279 emit->cell(etarget, prop->val.len);
280 emit->cell(etarget, nameoff);
283 emit->align(etarget, 8);
285 emit
[all...]
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrVisitor.java1130 blocks.m_header.emit (emitctx);
1144 block.emit (emitctx, code);
1436 void emit (final EmitCtx ctx, final byte [] code) // TODO: move 'code' into 'ctx' method in class:InstrVisitor.Block
1449 m_insertion.emit (ctx);
1452 m_branch.emit (ctx);
1496 abstract void emit (EmitCtx ctx); method in class:InstrVisitor.Branch
1569 void emit (final EmitCtx ctx) method in class:InstrVisitor.TERMINATE
1587 void emit (final EmitCtx ctx) method in class:InstrVisitor.RET
1619 void emit (final EmitCtx ctx) method in class:InstrVisitor.JUMP2
1643 void emit (fina method in class:InstrVisitor.JUMP4
1665 void emit (final EmitCtx ctx) method in class:InstrVisitor.IFJUMP2
1690 void emit (final EmitCtx ctx) method in class:InstrVisitor.LOOKUPSWITCH
1740 void emit (final EmitCtx ctx) method in class:InstrVisitor.TABLESWITCH
1794 abstract void emit (EmitCtx ctx); method in class:InstrVisitor.CodeSegment
1859 void emit (final EmitCtx ctx) method in class:InstrVisitor.clinitHeader
1942 void emit (final EmitCtx ctx) method in class:InstrVisitor.methodHeader
1997 void emit (final EmitCtx ctx) method in class:InstrVisitor.BlockSegment
[all...]
/external/libvterm/src/
H A Dscreen.c105 VTermRect emit; local
109 /* Always emit damage event */
110 emit = rect;
117 // Bigger than 1 line - flush existing, emit this
119 emit = rect;
136 emit = screen->damaged;
143 /* Never emit damage event */
157 (*screen->callbacks->damage)(emit, screen->cbdata);
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_emit_nv50.cpp2226 CodeEmitterNV50 *emit = new CodeEmitterNV50(this); local
2227 emit->setProgramType(type);
2228 return emit;
/external/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_sched.cpp424 alu_group_node* alu_group_tracker::emit() { function in class:r600_sb::alu_group_tracker
863 sblog << "can't emit SET_CF_IDX";
879 sblog << "can't emit AR load : ";
1322 sblog << "can't emit AR load : ";
1962 alu_group_node *g = grp().emit();
/external/python/cpython2/Modules/
H A D_collectionsmodule.c940 char *emit = ""; /* No separator emitted on first pass */ local
963 fputs(emit, fp);
965 emit = separator; local
/external/python/cpython3/Lib/unittest/
H A Dcase.py286 def emit(self, record): member in class:_CapturingHandler
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
H A DEmitter.java214 public void emit(Event event) throws IOException { method in class:Emitter
1049 // Although the plain scalar writer supports breaks, we never emit

Completed in 587 milliseconds

12345678