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

1 23 4 5 6 7 8

  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
SimpleLodThreshold.java 98 InputCapsule ic = im.getCapsule(this); local
99 size = ic.readInt("size", 16);
100 lodMultiplier = ic.readInt("lodMultiplier", 2);
DistanceLodCalculator.java 123 InputCapsule ic = im.getCapsule(this); local
124 size = ic.readInt("patchSize", 32);
125 lodMultiplier = ic.readFloat("lodMultiplier", 2.7f);
  /frameworks/native/libs/utils/
ZipUtils.cpp 280 int ic; local
284 ic = getc(fp);
285 if (ic != 0x1f || getc(fp) != 0x8b)
311 ic = getc(fp);
312 } while (ic != 0 && ic != EOF);
317 ic = getc(fp);
318 } while (ic != 0 && ic != EOF);
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.modifying.operations/alg.unique/
unique.pass.cpp 43 int ic[] = {0, 0}; local
44 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
45 r = std::unique(Iter(ic), Iter(ic+sc));
46 assert(base(r) == ic + 1);
47 assert(ic[0] == 0);
116 Ptr ic[2]; local
117 const unsigned sc = sizeof(ic)/sizeof(ic[0])
    [all...]
unique_copy.pass.cpp 44 const int ic[] = {0, 0}; local
45 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
47 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc));
unique_pred.pass.cpp 57 int ic[] = {0, 0}; local
58 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
60 r = std::unique(Iter(ic), Iter(ic+sc), count_equal());
61 assert(base(r) == ic + 1);
62 assert(ic[0] == 0);
146 Ptr ic[2]; local
147 const unsigned sc = sizeof(ic)/sizeof(ic[0])
    [all...]
unique_copy_pred.pass.cpp 59 const int ic[] = {0, 0}; local
60 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
63 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc), count_equal());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 299 final DefaultInformationControl ic = new DefaultInformationControl(control.getShell()); local
300 ic.setInformation(tooltip);
301 Point sz = ic.computeSizeHint();
302 ic.setSize(sz.x, sz.y);
303 ic.setVisible(false); // initially hidden
312 ic.setVisible(false);
317 ic.setLocation(control.toDisplay(10, 25)); // same offset as in PDETextHover
318 ic.setVisible(true);
324 ic.dispose();
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 276 InputConnection ic = getCurrentInputConnection(); local
277 if (ic != null) {
278 ic.finishComposingText();
316 InputConnection ic = getCurrentInputConnection(); local
317 if (c == 0 || ic == null) {
385 InputConnection ic = getCurrentInputConnection(); local
386 if (ic != null) {
389 ic.clearMetaKeyStates(KeyEvent.META_ALT_ON);
532 InputConnection ic = getCurrentInputConnection(); local
533 if (ic == null) return
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetKey.java 198 InputCapsule ic = im.getCapsule(this); local
199 name = reducePath(ic.readString("name", null));
TextureKey.java 184 InputCapsule ic = im.getCapsule(this); local
185 flipY = ic.readBoolean("flip_y", false);
186 generateMips = ic.readBoolean("generate_mips", false);
187 asCube = ic.readBoolean("as_cubemap", false);
188 anisotropy = ic.readInt("anisotropy", 0);
  /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/core/com/jme3/cinematic/events/
AnimationTrack.java 171 InputCapsule ic = im.getCapsule(this); local
172 modelName = ic.readString("modelName", "");
173 animationName = ic.readString("animationName", "");
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);
SoundTrack.java 178 InputCapsule ic = im.getCapsule(this); local
179 path = ic.readString("path", "");
180 stream = ic.readBoolean("stream", false);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
DefaultParticleInfluencer.java 57 InputCapsule ic = im.getCapsule(this); local
58 startVelocity = (Vector3f) ic.readSavable("startVelocity", Vector3f.ZERO.clone());
59 velocityVariation = ic.readFloat("variation", 0.2f);
NewtonianParticleInfluencer.java 137 InputCapsule ic = im.getCapsule(this); local
138 normalVelocity = ic.readFloat("normalVelocity", 0.0f);
139 surfaceTangentFactor = ic.readFloat("surfaceTangentFactor", 0.0f);
140 surfaceTangentRotation = ic.readFloat("surfaceTangentRotation", 0.0f);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
EmitterMeshVertexShape.java 150 InputCapsule ic = im.getCapsule(this); local
151 this.vertices = ic.readSavableArrayList("vertices", null);
153 List<List<Vector3f>> tmpNormals = ic.readSavableArrayList("normals", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/light/
Light.java 190 InputCapsule ic = im.getCapsule(this); local
191 color = (ColorRGBA) ic.readSavable("color", null);
192 enabled = ic.readBoolean("enabled", true);
193 name = ic.readString("name", null);
SpotLight.java 206 InputCapsule ic = im.getCapsule(this); local
207 spotInnerAngle = ic.readFloat("spotInnerAngle", FastMath.QUARTER_PI / 8);
208 spotOuterAngle = ic.readFloat("spotOuterAngle", FastMath.QUARTER_PI / 6);
209 direction = (Vector3f) ic.readSavable("direction", new Vector3f());
210 position = (Vector3f) ic.readSavable("position", new Vector3f());
211 spotRange = ic.readFloat("spotRange", 100);
  /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/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/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);
  /frameworks/native/cmds/service/
service.cpp 71 int ic = getopt(argc, argv, "h?"); local
72 if (ic < 0)
75 switch (ic) {
81 aerr << "service: Unknown option -" << ic << endl;

Completed in 1439 milliseconds

1 23 4 5 6 7 8