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

1 2 34 5 6 7 8

  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
VertexBuffer.java 992 InputCapsule ic = im.getCapsule(this); local
993 components = ic.readInt("components", 0);
994 usage = ic.readEnum("usage", Usage.class, Usage.Dynamic);
995 bufType = ic.readEnum("buffer_type", Type.class, null);
996 format = ic.readEnum("format", Format.class, Format.Float);
997 normalized = ic.readBoolean("normalized", false);
998 offset = ic.readInt("offset", 0);
999 stride = ic.readInt("stride", 0)
    [all...]
Geometry.java 536 InputCapsule ic = im.getCapsule(this); local
537 mesh = (Mesh) ic.readSavable("mesh", null);
540 String matName = ic.readString("materialName", null);
553 material = (Material) ic.readSavable("material", null);
555 ignoreTransform = ic.readBoolean("ignoreTransform", false);
557 if (ic.getSavableVersion(Geometry.class) == 0){
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainLodControl.java 205 InputCapsule ic = im.getCapsule(this); local
206 terrain = (Terrain) ic.readSavable("terrain", null);
207 lodCalculator = (LodCalculator) ic.readSavable("lodCalculator", new DistanceLodCalculator());
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
DistanceLodCalculator.java 123 InputCapsule ic = im.getCapsule(this); local
124 size = ic.readInt("patchSize", 32);
125 lodMultiplier = ic.readFloat("lodMultiplier", 2.7f);
  /frameworks/base/core/java/com/android/internal/statusbar/
StatusBarIconList.java 58 StatusBarIcon ic = mIcons[i]; local
59 if (ic == null) {
63 ic.writeToParcel(out, flags);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
GeoMap.java 350 InputCapsule ic = im.getCapsule(this); local
351 hdata = ic.readFloatArray("hdataarray", null);
353 FloatBuffer buf = ic.readFloatBuffer("hdata", null);
359 width = ic.readInt("width", 0);
360 height = ic.readInt("height", 0);
361 maxval = ic.readInt("maxval", 0);
  /external/v8/test/mjsunit/
megamorphic-callbacks.js 44 // Initialize IC stubs.
60 assertEquals(100, load(o), "ic load");
66 assertEquals(42, o.y_mirror, "ic store");
70 assertEquals(300, call(o), "ic call");
store-dictionary.js 37 // Make the store ic in the 'store' function go into dictionary store
48 // Attempt to store using the store ic in the 'store' function.
  /frameworks/base/core/java/android/inputmethodservice/
IInputMethodWrapper.java 156 InputConnection ic = inputContext != null local
160 inputMethod.startInput(ic, info);
167 InputConnection ic = inputContext != null local
171 inputMethod.restartInput(ic, info);
231 InputConnection ic = new InputConnectionWrapper( local
233 InputBinding nu = new InputBinding(ic, binding);
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetKey.java 198 InputCapsule ic = im.getCapsule(this); local
199 name = reducePath(ic.readString("name", null));
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHNode.java 126 InputCapsule ic = im.getCapsule(this); local
127 leftIndex = ic.readInt("left_index", 0);
128 rightIndex = ic.readInt("right_index", 0);
129 leftPlane = ic.readFloat("left_plane", 0);
130 rightPlane = ic.readFloat("right_plane", 0);
131 axis = ic.readInt("axis", 0);
132 left = (BIHNode) ic.readSavable("left_node", null);
133 right = (BIHNode) ic.readSavable("right_node", null);
BIHTree.java 475 InputCapsule ic = im.getCapsule(this); local
476 mesh = (Mesh) ic.readSavable("mesh", null);
477 root = (BIHNode) ic.readSavable("root", null);
478 maxTrisPerNode = ic.readInt("tris_per_node", 0);
479 pointData = ic.readFloatArray("points", null);
480 triIndices = ic.readIntArray("indices", null);
  /external/webkit/Source/WebKit/chromium/src/
WebDevToolsFrontendImpl.cpp 95 InspectorController* ic = m_webViewImpl->page()->inspectorController(); local
96 ic->setInspectorFrontendClient(new InspectorFrontendClientImpl(m_webViewImpl->page(), m_client, this));
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetProvider.java 96 Intent ic = new Intent(context, BookmarkWidgetProxy.class); local
98 PendingIntent.getBroadcast(context, 0, ic,
  /frameworks/base/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;
  /external/v8/src/
ic.cc 35 #include "ic-inl.h"
43 char IC::TransitionMarkFromState(IC::State state) {
61 void IC::TraceIC(const char* type,
112 IC::IC(FrameDepth depth, Isolate* isolate) : isolate_(isolate) {
114 // To improve the performance of the (much used) IC code, we unfold
116 // ~35% speedup when running DeltaBlue with the '--nouse-ic' flag.
142 Address IC::OriginalCodeAddress() const {
144 // Compute the JavaScript frame for the frame pointer of this IC
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationData.java 44 public Entry(IBinder key, StatusBarNotification n, StatusBarIconView ic) {
47 this.icon = ic;
  /dalvik/vm/
UtfString.cpp 110 int ic; local
112 while ((ic = *utf8Str++) != '\0') {
114 if ((ic & 0x80) != 0) {
117 if ((ic & 0x20) != 0) {
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
VehicleControl.java 262 InputCapsule ic = im.getCapsule(this); local
263 enabled = ic.readBoolean("enabled", true);
264 spatial = (Spatial) ic.readSavable("spatial", null);
265 motionState.setApplyPhysicsLocal(ic.readBoolean("applyLocalPhysics", false));
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
Cinematic.java 144 InputCapsule ic = im.getCapsule(this); local
146 cinematicEvents = ic.readSavableArrayList("cinematicEvents", null);
147 cameras = (Map<String, CameraNode>) ic.readStringSavableMap("cameras", null);
148 timeLine = (TimeLine) ic.readSavable("timeLine", null);
  /external/valgrind/main/none/tests/s390x/
insert.c 45 memsweep(ic, s2);
  /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/post/
Filter.java 334 InputCapsule ic = im.getCapsule(this); local
335 name = ic.readString("name", "");
336 enabled = ic.readBoolean("enabled", true);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
PhysicsHoverControl.java 220 InputCapsule ic = im.getCapsule(this); local
221 enabled = ic.readBoolean("enabled", true);
222 spatial = (Spatial) ic.readSavable("spatial", null);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 148 final InputConnection ic = mTextView.onCreateInputConnection(ei); local
154 mLatinIME.onCreateInputMethodInterface().startInput(ic, ei);
159 mInputConnection = ic;

Completed in 258 milliseconds

1 2 34 5 6 7 8