HomeSort by relevance Sort by last modified time
    Searched defs:emit (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/CodeGen/
builtins-arm-msvc-compat-only.c 1 // RUN: %clang_cc1 -triple thumbv7-windows -fms-extensions -emit-llvm -o - %s \
3 // RUN: %clang_cc1 -triple armv7-eabi -emit-llvm %s -o /dev/null 2>&1 \
7 void emit() { function
  /external/llvm/lib/CodeGen/AsmPrinter/
AddressPool.cpp 26 // Emit addresses into the section given.
27 void AddressPool::emit(AsmPrinter &Asm, const MCSection *AddrSection) { function in class:AddressPool
DwarfStringPool.cpp 35 void DwarfStringPool::emit(AsmPrinter &Asm, const MCSection *StrSection, function in class:DwarfStringPool
52 // Emit a label for reference from debug information entries.
55 // Emit the string itself with a terminating null byte.
60 // If we've got an offset section go ahead and emit that now as well.
  /external/jmonkeyengine/engine/src/test/jme3test/effect/
TestPointSprite.java 55 final ParticleEmitter emit = new ParticleEmitter("Emitter", Type.Point, 10000); local
56 emit.setShape(new EmitterBoxShape(new Vector3f(-1.8f, -1.8f, -1.8f),
58 emit.setGravity(0, 0, 0);
59 emit.setLowLife(60);
60 emit.setHighLife(60);
61 emit.getParticleInfluencer().setInitialVelocity(new Vector3f(0, 0, 0));
62 emit.setImagesX(15);
63 emit.setStartSize(0.05f);
64 emit.setEndSize(0.05f);
65 emit.setStartColor(ColorRGBA.White)
    [all...]
TestMovingParticle.java 51 private ParticleEmitter emit; field in class:TestMovingParticle
61 emit = new ParticleEmitter("Emitter", Type.Triangle, 300);
62 emit.setGravity(0, 0, 0);
63 emit.setVelocityVariation(1);
64 emit.setLowLife(1);
65 emit.setHighLife(1);
66 emit.setInitialVelocity(new Vector3f(0, .5f, 0));
67 emit.setImagesX(15);
70 emit.setMaterial(mat);
72 rootNode.attachChild(emit);
    [all...]
TestParticleExportingCloning.java 55 ParticleEmitter emit = new ParticleEmitter("Emitter", Type.Triangle, 200); local
56 emit.setShape(new EmitterSphereShape(Vector3f.ZERO, 1f));
57 emit.setGravity(0, 0, 0);
58 emit.setLowLife(5);
59 emit.setHighLife(10);
60 emit.setInitialVelocity(new Vector3f(0, 0, 0));
61 emit.setImagesX(15);
64 emit.setMaterial(mat);
66 ParticleEmitter emit2 = emit.clone();
69 rootNode.attachChild(emit);
    [all...]
  /frameworks/compile/mclinker/lib/LD/
MsgHandler.cpp 20 emit();
23 bool MsgHandler::emit() { function in class:mcld::MsgHandler
25 return m_Engine.emit();
DiagnosticEngine.cpp 60 // emit - process current diagnostic.
61 bool DiagnosticEngine::emit() { function in class:mcld::DiagnosticEngine
MergedStringTable.cpp 28 void MergedStringTable::emit(MemoryRegion& pRegion) { function in class:mcld::MergedStringTable
DebugString.cpp 86 void DebugString::emit(MemoryRegion& pRegion) { function in class:mcld::DebugString
87 return m_StringTable.emit(pRegion);
  /external/jmonkeyengine/engine/src/android/jme3test/android/
TestMovingParticle.java 53 private ParticleEmitter emit; field in class:TestMovingParticle
63 emit = new ParticleEmitter("Emitter", Type.Triangle, 300);
64 emit.setGravity(0, 0, 0);
65 emit.setVelocityVariation(1);
66 emit.setLowLife(1);
67 emit.setHighLife(1);
68 emit.setInitialVelocity(new Vector3f(0, .5f, 0));
69 emit.setImagesX(15);
72 emit.setMaterial(mat);
74 rootNode.attachChild(emit);
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
IContent.java 20 void emit (final HTMLWriter out); method in interface:IContent
TextContent.java 25 public void emit (final HTMLWriter out) method in class:TextContent
ElementList.java 33 public void emit (final HTMLWriter out) method in class:ElementList
38 content.emit (out);
Text.java 28 public void emit (final HTMLWriter out) method in class:Text
ISimpleElement.java 65 public void emit (final HTMLWriter out) method in class:ISimpleElement.Factory.SimpleElementImpl
73 m_attrs.emit (out);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Lexer.as 79 emit();
139 /** The standard method called to automatically emit a token at the
142 * use that to set the token's text. Override this method to emit
145 public function emit():Token { function
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_action.h 42 /** Arguments that are passed to lp_build_tgsi_action::emit. The
69 * the lp_build_tgsi_action::emit function. However, this value is
74 /** The lp_build_tgsi_action::emit 'executes' the opcode and writes the
107 void (*emit)(const struct lp_build_tgsi_action *, member in struct:lp_build_tgsi_action
115 * that can be assigned to lp_build_tgsi_action::emit and used for
  /external/mesa3d/src/gallium/auxiliary/util/
u_split_prim.h 13 void (*emit)(void *priv, unsigned start, unsigned count); member in struct:util_split_prim
50 s->emit(s->priv, s->start, 1);
59 s->emit(s->priv, s->p_start, s->p_end - s->p_start);
61 s->emit(s->priv, s->start, 1);
74 s->emit(s->priv, s->p_start, max_verts);
76 s->emit(s->priv, s->p_start + max_verts, 1);
109 s->emit (s->priv, s->p_start, max_verts);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_lower_texture_gradients.cpp 47 void emit(ir_variable *, ir_rvalue *);
51 * Emit a variable declaration and an assignment to initialize it.
54 lower_texture_grad_visitor::emit(ir_variable *var, ir_rvalue *value) function in class:lower_texture_grad_visitor
111 emit(size, expr(ir_unop_i2f,
121 emit(dPdx, mul(size, ir->lod_info.grad.dPdx));
125 emit(dPdy, mul(size, ir->lod_info.grad.dPdy));
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_driver.h 64 nouveau_state_func *emit; member in struct:nouveau_driver
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOTPLT.cpp 36 uint64_t MipsGOTPLT::emit(MemoryRegion& pRegion) { function in class:mcld::MipsGOTPLT
  /external/llvm/utils/TableGen/
CTagsEmitter.cpp 39 void emit(raw_ostream &OS) const { function in class:__anon15655::Tag
81 // Emit tags.
87 I->emit(OS);
  /external/okhttp/okio/okio/src/main/java/okio/
BufferedSink.java 113 BufferedSink emit() throws IOException; method in interface:BufferedSink
  /build/core/tasks/
product-graph.mk 57 # Emit properties of a product node to a file.
60 define emit-product-node-props
78 $(foreach p,$(PRIVATE_PRODUCTS),$(call emit-product-node-props,$(p),$@.in))

Completed in 370 milliseconds

1 2 3 4 5 6 7