HomeSort by relevance Sort by last modified time
    Searched refs:ic (Results 51 - 75 of 177) sorted by null

1 23 4 5 6 7 8

  /build/tools/acp/
acp.c 175 int ic, retVal; local
184 ic = getopt(argc, argv, "defprtuv");
185 if (ic < 0)
188 switch (ic) {
214 fprintf(stderr, "Unexpected arg -%c\n", ic);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
AbstractCinematicEvent.java 267 InputCapsule ic = im.getCapsule(this); local
268 playState = ic.readEnum("playState", PlayState.class, PlayState.Stopped);
269 speed = ic.readFloat("speed", 1);
270 initialDuration = ic.readFloat("initalDuration", 10);
271 loopMode = ic.readEnum("loopMode", LoopMode.class, LoopMode.DontLoop);
SoundTrack.java 178 InputCapsule ic = im.getCapsule(this); local
179 path = ic.readString("path", "");
180 stream = ic.readBoolean("stream", false);
AnimationTrack.java 171 InputCapsule ic = im.getCapsule(this); local
172 modelName = ic.readString("modelName", "");
173 animationName = ic.readString("animationName", "");
PositionTrack.java 118 InputCapsule ic = im.getCapsule(this); local
119 spatialName = ic.readString("spatialName", "");
120 endPosition = (Vector3f) ic.readSavable("endPosition", null);
RotationTrack.java 122 InputCapsule ic = im.getCapsule(this); local
123 spatialName = ic.readString("spatialName", "");
124 endRotation = (Quaternion) ic.readSavable("endRotation", null);
ScaleTrack.java 117 InputCapsule ic = im.getCapsule(this); local
118 spatialName = ic.readString("spatialName", "");
119 endScale = (Vector3f) ic.readSavable("endScale", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
Technique.java 253 InputCapsule ic = im.getCapsule(this); local
254 def = (TechniqueDef) ic.readSavable("def", null);
255 worldBindUniforms = ic.readSavableArrayList("worldBindUniforms", null);
256 defines = (DefineList) ic.readSavable("defines", null);
257 shader = (Shader) ic.readSavable("shader", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
LodControl.java 197 InputCapsule ic = im.getCapsule(this); local
198 trisPerPixel = ic.readFloat("trisPerPixel", 1f);
199 distTolerance = ic.readFloat("distTolerance", 1f);
200 numLevels = ic.readInt("numLevels", 0);
201 numTris = ic.readIntArray("numTris", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SortUtil.java 119 private static void test(Float[] original, Float[] sorted, Comparator<Float> ic) {
125 gsort(sorted, ic);
133 qsort(sorted, ic);
141 msort(original, sorted, ic);
149 Arrays.sort(sorted, ic);
156 Comparator<Float> ic = new Comparator<Float>() { local
168 test(original, sorted, ic);
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
BloomFilter.java 301 InputCapsule ic = im.getCapsule(this); local
302 glowMode = ic.readEnum("glowMode", GlowMode.class, GlowMode.Scene);
303 blurScale = ic.readFloat("blurScale", 1.5f);
304 exposurePower = ic.readFloat("exposurePower", 5.0f);
305 exposureCutOff = ic.readFloat("exposureCutOff", 0.0f);
306 bloomIntensity = ic.readFloat("bloomIntensity", 2.0f);
307 downSamplingFactor = ic.readFloat("downSamplingFactor", 1);
FadeFilter.java 153 InputCapsule ic = im.getCapsule(this); local
154 duration = ic.readFloat("duration", 1);
  /external/icu4c/layout/
IndicRearrangementProcessor.cpp 69 le_int32 ia, ib, ic, id, ix, x; local
166 ic = glyphStorage.getCharIndex(lastGlyph - 1, success);
180 glyphStorage.setCharIndex(firstGlyph, ic, success);
187 ic = glyphStorage.getCharIndex(lastGlyph - 1, success);
202 glyphStorage.setCharIndex(firstGlyph + 1, ic, success);
210 ic = glyphStorage.getCharIndex(lastGlyph - 1, success);
225 glyphStorage.setCharIndex(firstGlyph, ic, success);
235 ic = glyphStorage.getCharIndex(lastGlyph - 1, success);
251 glyphStorage.setCharIndex(firstGlyph + 1, ic, success);
317 ic = glyphStorage.getCharIndex(lastGlyph - 1, success)
    [all...]
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 82 int ic; member in struct:Test1::C
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
GhostControl.java 172 InputCapsule ic = im.getCapsule(this); local
173 enabled = ic.readBoolean("enabled", true);
174 spatial = (Spatial) ic.readSavable("spatial", null);
175 applyLocal = ic.readBoolean("applyLocalPhysics", false);
CharacterControl.java 200 InputCapsule ic = im.getCapsule(this); local
201 enabled = ic.readBoolean("enabled", true);
202 useViewDirection = ic.readBoolean("viewDirectionEnabled", true);
203 viewDirection = (Vector3f) ic.readSavable("viewDirection", new Vector3f(Vector3f.UNIT_Z));
204 applyLocal = ic.readBoolean("applyLocalPhysics", false);
205 spatial = (Spatial) ic.readSavable("spatial", null);
RigidBodyControl.java 257 InputCapsule ic = im.getCapsule(this); local
258 enabled = ic.readBoolean("enabled", true);
259 kinematicSpatial = ic.readBoolean("kinematicSpatial", true);
260 spatial = (Spatial) ic.readSavable("spatial", null);
261 motionState.setApplyPhysicsLocal(ic.readBoolean("applyLocalPhysics", false));
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
DefineList.java 67 InputCapsule ic = im.getCapsule(this); local
69 String[] keys = ic.readStringArray("keys", null);
70 String[] vals = ic.readStringArray("vals", null);
75 compiled = ic.readString("compiled", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
TimeLine.java 113 InputCapsule ic = im.getCapsule(this); local
114 ArrayList list = ic.readSavableArrayList("keyFrames", null);
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/cinematic/events/
GuiTrack.java 116 InputCapsule ic = im.getCapsule(this); local
117 screen = ic.readString("screen", "");
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
NormalRecalcControl.java 102 InputCapsule ic = im.getCapsule(this); local
103 terrain = (TerrainQuad) ic.readSavable("terrain", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleEmitter.java 1126 InputCapsule ic = im.getCapsule(this); local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
SpatialTrack.java 236 InputCapsule ic = im.getCapsule(this); local
237 translations = (CompactVector3Array) ic.readSavable("translations", null);
238 rotations = (CompactQuaternionArray) ic.readSavable("rotations", null);
239 times = ic.readFloatArray("times", null);
240 scales = (CompactVector3Array) ic.readSavable("scales", null);
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/
SSAOFilter.java 318 InputCapsule ic = im.getCapsule(this); local
319 sampleRadius = ic.readFloat("sampleRadius", 5.1f);
320 intensity = ic.readFloat("intensity", 1.5f);
321 scale = ic.readFloat("scale", 0.2f);
322 bias = ic.readFloat("bias", 0.1f);
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapFont.java 163 InputCapsule ic = im.getCapsule(this); local
164 charSet = (BitmapCharacterSet) ic.readSavable("charSet", null);
165 Savable[] pagesSavable = ic.readSavableArray("pages", null);

Completed in 613 milliseconds

1 23 4 5 6 7 8