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

1 23 4 5 6 7

  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.c 781 char **objects = NULL; local
787 if (!dbus_connection_list_registered(con, path, &objects))
790 for (i = 0; objects[i]; i++) {
792 "%s/%s", path, objects[i]);
797 dbus_free_string_array(objects);
805 * Traverses through all registered objects and sends PropertiesChanged for
  /libcore/luni/src/main/java/java/text/
Bidi.java 530 * Reorders a range of objects according to their specified levels. This is
532 * of objects at {@code index} from {@code objectStart} to {@code
540 * @param objects
543 * the start offset of the range of objects.
545 * the count of the range of objects to reorder.
549 * if {@code count > objects.length - objectStart}.
552 Object[] objects, int objectStart, int count) {
555 || count > objects.length - objectStart) {
557 ", levelStart=" + levelStart + ", objects=" + objects.length
571 System.arraycopy(result.toArray(), 0, objects, objectStart, count); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldMessageFormatTest.java 287 Object[] objects = new Object[] { "", new Integer(3), 8, ""}; local
290 format.format(objects, new StringBuffer(),
  /libcore/luni/src/test/java/libcore/java/util/concurrent/
CopyOnWriteArrayListTest.java 279 CopyOnWriteArrayList<Object> objects = new CopyOnWriteArrayList<Object>(asList); local
280 objects.add(Boolean.TRUE);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
Collections2Test.java 265 List<Object> objects = Arrays.asList(new Object[] { new Integer(1), null, null, local
269 .frequency(objects, new Integer(1)));
272 .frequency(objects, new Long(1)));
275 Collections.frequency(objects, null));
  /external/jmonkeyengine/engine/src/blender/com/jme3/asset/
BlenderKey.java 79 /** This variable determines if assets that are not linked to the objects should be loaded. */
91 * User's default material that is set fo objects that have no material definition in blender. The default value is
265 * If not then only objects on selected layers will be loaded and their assets if required.
276 * If not then only objects on selected layers will be loaded and their assets if required.
334 * This method sets the default material for objects.
475 int OBJECTS = 0x0000000B;
494 /** Objects from all scenes. */
495 private List<Node> objects; field in class:BlenderKey.LoadingResults
496 /** Materials from all objects. */
498 /** Textures from all objects. */
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
Properties.java 1 package com.jme3.scene.plugins.blender.objects;
ObjectHelper.java 32 package com.jme3.scene.plugins.blender.objects;
289 * @return objects transformation relative to its parent
413 && (blenderContext.getBlenderKey().getFeaturesToLoad() & FeaturesToLoad.OBJECTS) != 0);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsRigidBody.java 32 package com.jme3.bullet.objects;
39 import com.jme3.bullet.objects.infos.RigidBodyMotionState;
258 * but affects other physics objects. Iits kinetic force is calculated by the amount
281 * This avoids the problem of fast objects moving through other objects, set to zero to disable (default)
313 * Sets the mass of this PhysicsRigidBody, objects with mass=0 are static.
PhysicsVehicle.java 32 package com.jme3.bullet.objects;
36 import com.jme3.bullet.objects.infos.VehicleTuning;
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsVehicle.java 32 package com.jme3.bullet.objects;
PhysicsRigidBody.java 32 package com.jme3.bullet.objects;
43 import com.jme3.bullet.objects.infos.RigidBodyMotionState;
265 * but affects other physics objects. Its kinetic force is calculated by the amount
290 * This avoids the problem of fast objects moving through other objects, set to zero to disable (default)
314 * Sets the mass of this PhysicsRigidBody, objects with mass=0 are static.
  /external/replicaisland/src/com/replica/replicaisland/
GameRenderer.java 31 * queue of renderable objects from the thread and uses that to draw the scene every frame. If
209 FixedSizeArray<BaseObject> objects = mDrawQueue.getObjects(); local
210 Object[] objectArray = objects.getArray();
211 final int count = objects.getCount();
255 + " Objects/Frame: " + averageObjectsPerFrame
  /cts/tests/tests/os/src/android/os/cts/
ParcelTest.java 463 Object[] objects = new Object[5]; local
464 objects[0] = Integer.MAX_VALUE;
465 objects[1] = true;
466 objects[2] = Long.MAX_VALUE;
467 objects[3] = "String";
468 objects[4] = Float.MAX_VALUE;
471 p.writeValue(objects);
476 assertEquals(objects[i], objects2[i]);
    [all...]
  /external/chromium/base/
message_loop_unittest.cc 185 // count on subsequent RecordRunTimeTask objects running at a future time,
1363 HANDLE objects[2] = { callback1_called.Get(), callback2_called.Get() }; local
    [all...]
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 288 private Object[] objects; field in class:ArrayAccessReplaceTest.Simple
330 return objects[pos];
374 objects[pos] = value;
  /external/opencv/cvaux/src/
cveigenobjects.cpp 195 // Purpose: The function calculates a covariance matrix for a group of input objects
198 // Parameters: nObjects - number of source objects
199 // objects - array of pointers to ROIs of the source objects
203 // size - ROI size of each source and averaged objects
243 nio = ioBufSize / n; /* number of objects in buffer */
354 uchar **objects = (uchar **) (((CvInput *) & input)->data); local
358 uchar *bu = objects[i];
366 uchar *bu2 = objects[j];
421 // object for a group of input objects (images, vectors, etc.). ROI supported
1203 uchar **objects = (uchar **) cvAlloc( sizeof( uchar * ) * nObjects ); local
1342 IplImage **objects = (IplImage **) (((CvInput *) & input)->data); local
1404 IplImage **objects = (IplImage **) (((CvInput *) & input)->data); local
    [all...]
  /frameworks/base/core/java/android/text/
DynamicLayout.java 331 Directions[] objects = new Directions[1]; local
348 objects[0] = reflowed.getLineDirections(i);
356 mObjects.insertAt(startline + i, objects);
  /frameworks/native/libs/binder/
Parcel.cpp 366 const size_t *objects = parcel->mObjects; local
382 // Count objects in range
384 size_t off = objects[i];
410 // grow objects
413 size_t *objects = local
415 if (objects == (size_t*)0) {
418 mObjects = objects;
422 // append and acquire objects
425 size_t off = objects[i] - offset + startPos;
513 const size_t* Parcel::objects() cons function in class:android::Parcel
1355 size_t* const objects = mObjects; local
1369 size_t* const objects = mObjects; local
1470 size_t* objects = NULL; local
1518 size_t* objects = local
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 294 List<Object> objects = Arrays.asList(new Object[] { new Integer(1), null, null, local
298 .frequency(objects, new Integer(1)));
301 .frequency(objects, new Long(1)));
304 Collections.frequency(objects, null));
  /external/clang/lib/Sema/
SemaExprObjC.cpp 654 ParmVarDecl *objects = ParmVarDecl::Create(Context, Method, local
657 &Context.Idents.get("objects"),
661 Params.push_back(objects);
772 ParmVarDecl *objects = ParmVarDecl::Create(Context, Method, local
775 &Context.Idents.get("objects")
    [all...]
  /external/skia/legacy/src/core/
SkPicturePlayback.cpp 148 SkDebugf("playback size %zd (objects:%d) ", overallBytes, overall);
883 int objects = bitmaps(sizePtr); local
884 objects += paints(sizePtr);
885 objects += paths(sizePtr);
886 objects += pictures(sizePtr);
887 objects += regions(sizePtr);
889 return objects;
    [all...]
  /external/skia/src/core/
SkPicturePlayback.cpp 134 SkDebugf("playback size %zd (objects:%d) ", overallBytes, overall);
1004 int objects = bitmaps(sizePtr); local
    [all...]
  /external/webkit/Source/WebCore/page/
FrameView.cpp 1997 Vector<RenderEmbeddedObject*> objects; local
    [all...]
  /external/yaffs2/yaffs2/
yaffs_guts.h 84 /* Some special object ids for pseudo objects */
403 __u8 renameAllowed:1; /* Some objects are not allowed to be renamed. */
422 struct list_head hashLink; /* list of objects in this hash bucket */
424 struct list_head hardLinks; /* all the equivalent hard linked objects */
476 yaffs_Object *objects; member in struct:yaffs_ObjectList_struct
692 __u32 *gcCleanupList; /* objects to delete at the end of a GC. */
732 yaffs_Object *deletedDir; /* Directory where deleted objects are sent to disappear. */

Completed in 2187 milliseconds

1 23 4 5 6 7