HomeSort by relevance Sort by last modified time
    Searched refs:destroyed (Results 1 - 25 of 418) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/libs/hwui/tests/unit/
LinearAllocatorTests.cpp 46 int destroyed[10] = { 0 }; local
50 la.create<TestUtils::SignalingDtor>()->setSignal(destroyed + i);
55 la.create<TestUtils::SignalingDtor>(destroyed + 5 + i);
60 EXPECT_EQ(0, destroyed[i]);
64 EXPECT_EQ(1, destroyed[i]);
69 int destroyed = 0; local
78 sigdtor->setSignal(&destroyed);
79 EXPECT_EQ(0, destroyed);
82 EXPECT_EQ(1, destroyed);
86 EXPECT_EQ(1, destroyed);
122 int destroyed = 0; local
    [all...]
  /external/libgdx/extensions/gdx-bullet/src/com/badlogic/gdx/physics/bullet/
BulletBase.java 26 protected boolean destroyed; field in class:BulletBase
53 destroyed = false;
57 if (!destroyed)
89 /** @return True if the native is destroyed when this object gets out of scope, false otherwise. */
119 if (destroyed && Bullet.enableLogging)
120 Gdx.app.error("Bullet", "Already destroyed "+toString());
121 destroyed = true;
135 if (!destroyed && Bullet.enableLogging)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
backslash-at.s 1 @ Check that \@ is not destroyed when assembling for the ARM.
  /external/webrtc/webrtc/base/
win32window_unittest.cc 22 bool destroyed() const { return destroyed_; } function in class:TestWindow
44 EXPECT_FALSE(wnd.destroyed());
53 EXPECT_TRUE(wnd.destroyed());
  /external/libgdx/extensions/gdx-bullet/jni/swig/common/
gdxDefault.i 19 if (!destroyed)
45 if (!destroyed)
80 if (!destroyed)
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btCompoundCollisionAlgorithm.java 34 if (!destroyed)
45 if (!destroyed)
86 if (!destroyed)
97 if (!destroyed)
135 if (!destroyed)
146 if (!destroyed)
btConvexConcaveCollisionAlgorithm.java 34 if (!destroyed)
45 if (!destroyed)
85 if (!destroyed)
96 if (!destroyed)
139 if (!destroyed)
150 if (!destroyed)
btBox2dBox2dCollisionAlgorithm.java 34 if (!destroyed)
45 if (!destroyed)
85 if (!destroyed)
96 if (!destroyed)
btBoxBoxCollisionAlgorithm.java 34 if (!destroyed)
45 if (!destroyed)
85 if (!destroyed)
96 if (!destroyed)
btEmptyAlgorithm.java 34 if (!destroyed)
45 if (!destroyed)
81 if (!destroyed)
92 if (!destroyed)
btSphereBoxCollisionAlgorithm.java 34 if (!destroyed)
45 if (!destroyed)
89 if (!destroyed)
100 if (!destroyed)
btSphereSphereCollisionAlgorithm.java 34 if (!destroyed)
45 if (!destroyed)
85 if (!destroyed)
96 if (!destroyed)
btSphereTriangleCollisionAlgorithm.java 34 if (!destroyed)
45 if (!destroyed)
85 if (!destroyed)
96 if (!destroyed)
ClosestNotMeRayResultCallback.java 34 if (!destroyed)
45 if (!destroyed)
GIM_BVH_DATA.java 34 if (!destroyed)
45 if (!destroyed)
GIM_BVH_DATA_ARRAY.java 34 if (!destroyed)
45 if (!destroyed)
GIM_BVH_TREE_NODE_ARRAY.java 34 if (!destroyed)
45 if (!destroyed)
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/
btSoftBodyConcaveCollisionAlgorithm.java 36 if (!destroyed)
47 if (!destroyed)
87 if (!destroyed)
98 if (!destroyed)
136 if (!destroyed)
147 if (!destroyed)
btSoftRigidCollisionAlgorithm.java 36 if (!destroyed)
47 if (!destroyed)
83 if (!destroyed)
94 if (!destroyed)
btSoftSoftCollisionAlgorithm.java 36 if (!destroyed)
47 if (!destroyed)
87 if (!destroyed)
98 if (!destroyed)
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/dynamics/com/badlogic/gdx/physics/bullet/dynamics/
btVehicleRaycaster.java 35 if (!destroyed)
46 if (!destroyed)
78 if (!destroyed)
89 if (!destroyed)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_module.py 69 destroyed = []
71 m.destroyed = destroyed
73 def __del__(self, destroyed=destroyed):
74 destroyed.append(1)
79 self.assertEqual(destroyed, [1])
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_module.py 69 destroyed = []
71 m.destroyed = destroyed
73 def __del__(self, destroyed=destroyed):
74 destroyed.append(1)
79 self.assertEqual(destroyed, [1])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_module.py 69 destroyed = []
71 m.destroyed = destroyed
73 def __del__(self, destroyed=destroyed):
74 destroyed.append(1)
79 self.assertEqual(destroyed, [1])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_module.py 69 destroyed = []
71 m.destroyed = destroyed
73 def __del__(self, destroyed=destroyed):
74 destroyed.append(1)
79 self.assertEqual(destroyed, [1])

Completed in 401 milliseconds

1 2 3 4 5 6 7 8 91011>>