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

1 2 3 4

  /external/llvm/test/Bindings/Ocaml/
bitreader.ml 57 begin let oc = open_out fn in var
58 output_string oc "not a bitcode file\n";
59 close_out oc
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioKey.java 124 OutputCapsule oc = ex.getCapsule(this); local
125 oc.write(stream, "do_stream", false);
126 oc.write(streamCache, "use_stream_cache", false);
LowPassFilter.java 82 OutputCapsule oc = ex.getCapsule(this); local
83 oc.write(volume, "volume", 0);
84 oc.write(highFreqVolume, "hf_volume", 0);
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
Kerning.java 64 OutputCapsule oc = ex.getCapsule(this); local
65 oc.write(second, "second", 0);
66 oc.write(amount, "amount", 0);
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
ColorOverlayFilter.java 101 OutputCapsule oc = ex.getCapsule(this); local
102 oc.write(color, "color", ColorRGBA.White);
FadeFilter.java 146 OutputCapsule oc = ex.getCapsule(this); local
147 oc.write(duration, "duration", 1);
FogFilter.java 156 OutputCapsule oc = ex.getCapsule(this); local
157 oc.write(fogColor, "fogColor", ColorRGBA.White.clone());
158 oc.write(fogDensity, "fogDensity", 0.7f);
159 oc.write(fogDistance, "fogDistance", 1000);
RadialBlurFilter.java 144 OutputCapsule oc = ex.getCapsule(this); local
145 oc.write(sampleDist, "sampleDist", 1.0f);
146 oc.write(sampleStrength, "sampleStrength", 2.2f);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
KeyFrame.java 65 OutputCapsule oc = ex.getCapsule(this); local
66 oc.writeSavableArrayList((ArrayList) cinematicEvents, "cinematicEvents", null);
67 oc.write(index, "index", 0);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
EmitterPointShape.java 88 OutputCapsule oc = ex.getCapsule(this); local
89 oc.write(point, "point", null);
EmitterBoxShape.java 107 OutputCapsule oc = ex.getCapsule(this); local
108 oc.write(min, "min", null);
109 oc.write(len, "length", null);
EmitterSphereShape.java 106 OutputCapsule oc = ex.getCapsule(this); local
107 oc.write(center, "center", null);
108 oc.write(radius, "radius", 0);
  /external/jmonkeyengine/engine/src/core/com/jme3/light/
DirectionalLight.java 93 OutputCapsule oc = ex.getCapsule(this); local
94 oc.write(direction, "direction", null);
PointLight.java 140 OutputCapsule oc = ex.getCapsule(this); local
141 oc.write(position, "position", null);
142 oc.write(radius, "radius", 0f);
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
ShaderVariable.java 58 OutputCapsule oc = ex.getCapsule(this); local
59 oc.write(name, "name", null);
ShaderKey.java 113 OutputCapsule oc = ex.getCapsule(this); local
114 oc.write(fragName, "fragment_name", null);
115 oc.write(language, "language", null);
Shader.java 126 OutputCapsule oc = ex.getCapsule(this); local
127 oc.write(shaderType, "shaderType", null);
128 oc.write(name, "name", null);
129 oc.write(source, "source", null);
130 oc.write(defines, "defines", null);
246 OutputCapsule oc = ex.getCapsule(this); local
247 oc.write(language, "language", null);
248 oc.writeSavableArrayList(shaderList, "shaderList", null);
249 oc.writeIntSavableMap(attribs, "attribs", null);
250 oc.writeStringSavableMap(uniforms, "uniforms", null);
    [all...]
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/cinematic/events/
GuiTrack.java 109 OutputCapsule oc = ex.getCapsule(this); local
110 oc.write(screen, "screen", "");
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
PositionTrack.java 110 OutputCapsule oc = ex.getCapsule(this); local
111 oc.write(spatialName, "spatialName", "");
112 oc.write(endPosition, "endPosition", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
MatParamTexture.java 55 OutputCapsule oc = ex.getCapsule(this); local
56 oc.write(unit, "texture_unit", -1);
57 oc.write(texture, "texture", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
UserData.java 103 OutputCapsule oc = ex.getCapsule(this); local
104 oc.write(type, "type", (byte)0);
109 oc.write(i, "intVal", 0);
113 oc.write(f, "floatVal", 0f);
117 oc.write(b, "boolVal", false);
121 oc.write(s, "strVal", null);
125 oc.write(l, "longVal", 0l);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
AbstractControl.java 101 OutputCapsule oc = ex.getCapsule(this); local
102 oc.write(enabled, "enabled", true);
103 oc.write(spatial, "spatial", null);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
NormalRecalcControl.java 95 OutputCapsule oc = ex.getCapsule(this); local
96 oc.write(terrain, "terrain", null);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
SimpleLodThreshold.java 92 OutputCapsule oc = ex.getCapsule(this); local
93 oc.write(size, "size", 16);
94 oc.write(lodMultiplier, "lodMultiplier", 2);
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetKey.java 193 OutputCapsule oc = ex.getCapsule(this); local
194 oc.write(name, "name", null);

Completed in 1304 milliseconds

1 2 3 4