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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/AsmParser/
directive_space.s 4 # CHECK: .space 1
6 .space 1
9 # CHECK: .space 2,3
11 .space 2, 3
14 # CHECK: .space 1
dot-symbol.s 7 # CHECK: assignment to pseudo-symbol '.' is unsupported (use '.space' or '.org').
  /external/chromium_org/chrome/common/extensions/docs/static/css/
print.css 6 white-space: pre-wrap; /* css-3 */
7 white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
8 white-space: -pre-wrap; /* Opera 4-6 */
9 white-space: -o-pre-wrap; /* Opera 7 */
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/
PhysicsTickListener.java 42 * @param space
45 public void prePhysicsTick(PhysicsSpace space, float f);
49 * @param space
52 public void physicsTick(PhysicsSpace space, float f);
  /external/llvm/test/MC/MachO/
relax-recompute-align.s 26 .space 0x8a, 0x90
28 .space (0xb3 - 0x8f), 0x90
30 .space (0xcd - 0xb5), 0x90
33 .space (0x130 - 0xd0),0x90
i386-large-relocations.s 3 .space 0x1ed280
6 .space 0x5181020
relax-jumps.s 18 .space 200, 0x90
28 .space 200, 0x90
  /external/chromium/chrome/common/extensions/docs/css/
print.css 13 white-space: pre-wrap; /* css-3 */
14 white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
15 white-space: -pre-wrap; /* Opera 4-6 */
16 white-space: -o-pre-wrap; /* Opera 7 */
  /frameworks/compile/mclinker/lib/Support/
MemoryArea.cpp 10 #include <mcld/Support/Space.h>
23 MemoryArea::MemoryArea(Space& pUniverse)
37 // The layout of MemorySpace in the virtual memory space
48 // space.data +space.size
50 // space.file_offset is the offset of the mapped file segment from the start of
52 // (space.data, r_start) and (r_len, space.size) are zero.
56 Space* space = find(pOffset, pLength) local
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
new6.cpp 9 int space = 0xdeadbeef; variable
14 return &space;
  /ndk/tests/device/test-stlport_static-exception/jni/
new6.cpp 9 int space = 0xdeadbeef; variable
14 return &space;
  /art/runtime/gc/collector/
partial_mark_sweep.cc 20 #include "gc/space/space.h"
37 // For partial GCs we need to bind the bitmap of the zygote space so that all objects in the
38 // zygote space are viewed as marked.
39 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
40 if (space->GetGcRetentionPolicy() == space::kGcRetentionPolicyFullCollect) {
41 CHECK(space->IsZygoteSpace());
42 ImmuneSpace(space);
garbage_collector.cc 27 #include "gc/space/large_object_space.h"
28 #include "gc/space/space-inl.h"
116 // Swap the live and mark bitmaps for each alloc space. This is needed since sweep re-swaps
120 for (const auto& space : GetHeap()->GetContinuousSpaces()) {
122 if (space->GetGcRetentionPolicy() == space::kGcRetentionPolicyAlwaysCollect ||
124 space->GetGcRetentionPolicy() == space::kGcRetentionPolicyFullCollect)) {
125 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap()
135 space::LargeObjectSpace* space = down_cast<space::LargeObjectSpace*>(disc_space); local
    [all...]
  /art/runtime/gc/space/
space_test.cc 28 namespace space { namespace in namespace:art::gc
32 void SizeFootPrintGrowthLimitAndTrimBody(DlMallocSpace* space, intptr_t object_size,
36 void AddContinuousSpace(ContinuousSpace* space) {
37 Runtime::Current()->GetHeap()->AddContinuousSpace(space);
49 UniquePtr<Space> space(DlMallocSpace::Create("test", 16 * MB, 32 * MB, 32 * MB, NULL));
50 EXPECT_TRUE(space.get() != NULL);
54 UniquePtr<Space> space(DlMallocSpace::Create("test", 16 * MB, 16 * MB, 16 * MB, NULL));
55 EXPECT_TRUE(space.get() != NULL)
    [all...]
space.cc 17 #include "space.h"
23 namespace space { namespace in namespace:art::gc
25 Space::Space(const std::string& name, GcRetentionPolicy gc_retention_policy)
28 void Space::Dump(std::ostream& os) const {
32 std::ostream& operator<<(std::ostream& os, const Space& space) {
33 space.Dump(os);
40 Space(name, gc_retention_policy),
45 } // namespace space
    [all...]
  /art/runtime/gc/accounting/
mod_union_table-inl.h 22 #include "gc/space/space.h"
28 // A mod-union table to record image references to the Zygote and alloc space.
34 const std::vector<space::ContinuousSpace*>& spaces = GetHeap()->GetContinuousSpaces();
35 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
47 // A mod-union table to record Zygote references to the alloc space.
53 const std::vector<space::ContinuousSpace*>& spaces = GetHeap()->GetContinuousSpaces();
54 typedef std::vector<space::ContinuousSpace*>::const_iterator It;
56 space::ContinuousSpace* space = *it local
    [all...]
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_PhysicsSpace.cpp 51 jmePhysicsSpace* space = new jmePhysicsSpace(env, object); local
52 if (space == NULL) {
54 env->ThrowNew(newExc, "The physics space has not been created.");
57 space->createPhysicsSpace(minX, minY, minZ, maxX, maxY, maxZ, broadphase, threading);
58 return reinterpret_cast<jlong>(space);
68 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
69 if (space == NULL) {
71 env->ThrowNew(newExc, "The physics space does not exist.");
74 space->stepSimulation(tpf, maxSteps, accuracy);
84 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId) local
109 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
133 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
157 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
181 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
208 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
232 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
254 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
276 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
298 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
320 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
342 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
364 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
392 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); local
402 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*> (spaceId); local
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
return_unicode.js 1 // U+200B is the codepoint for zero-width-space.
  /external/chromium-libpac/test/js-unittest/
return_unicode.js 1 // U+200B is the codepoint for zero-width-space.
  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_title.css 12 white-space: nowrap;
  /external/chromium_org/chrome/browser/resources/user_actions/
user_actions.css 6 white-space: nowrap;
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
return_unicode.js 1 // U+200B is the codepoint for zero-width-space.
  /external/chromium_org/ui/webui/resources/css/
alert_overlay.css 10 white-space: pre-wrap;
  /external/clang/test/Analysis/
CGColorSpace.c 5 extern CGColorSpaceRef CGColorSpaceRetain(CGColorSpaceRef space);
6 extern void CGColorSpaceRelease(CGColorSpaceRef space);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
GhostControl.java 32 protected PhysicsSpace space = null; field in class:GhostControl
100 if (space != null) {
106 space.addCollisionObject(this);
109 space.removeCollisionObject(this);
128 if (enabled && space != null && space.getDebugManager() != null) {
130 attachDebugShape(space.getDebugManager());
140 public void setPhysicsSpace(PhysicsSpace space) {
141 if (space == null) {
142 if (this.space != null)
    [all...]

Completed in 135 milliseconds

1 2 3 4 5 6 7 8 91011>>