Searched defs:space (Results 1 - 25 of 180) sorted by relevance

12345678

/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/
H A DPhysicsTickListener.java42 * @param space
45 public void prePhysicsTick(PhysicsSpace space, float f); argument
49 * @param space
52 public void physicsTick(PhysicsSpace space, float f); argument
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
H A DPhysicsControl.java16 public void setPhysicsSpace(PhysicsSpace space); argument
21 * The physics object is removed from the physics space when the control
24 * space. This allows disabling/enabling physics to move the spatial freely.
/external/jmonkeyengine/engine/src/bullet-native/
H A DjmeBulletUtil.h60 void *space; member in class:jmeUserPointer
/external/ceres-solver/internal/ceres/
H A Dstringprintf.cc53 char space[1024]; local
60 int result = vsnprintf(space, sizeof(space), format, backup_ap);
63 if (result < sizeof(space)) {
66 dst->append(space, result);
71 // Error or MSVC running out of space. MSVC 8.0 and higher
72 // can be asked about space needed with the special idiom below:
H A Dresidual_block_utils.cc105 string space = "Residuals: "; local
106 result += space;
/external/chromium_org/ppapi/native_client/src/untrusted/nacl_ppapi_util/
H A Dstring_buffer.cc37 size_t space; local
44 space = nbytes_ - insert_;
47 written = vsnprintf(insert_pt, space, fmt, ap);
49 if (written < space) {
53 // insufficient space -- grow the buffer
/external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
H A DToken.cpp40 void Token::setHasLeadingSpace(bool space) argument
42 if (space)
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-fallback-shape.cc98 hb_codepoint_t space; local
99 font->get_glyph (' ', 0, &space);
108 buffer->info[i].codepoint = space;
/external/chromium_org/third_party/re2/util/
H A Dstringprintf.cc15 char space[1024]; local
22 int result = vsnprintf(space, sizeof(space), format, backup_ap);
25 if ((result >= 0) && (result < sizeof(space))) {
27 dst->append(space, result);
32 int length = sizeof(space);
/external/chromium_org/v8/src/
H A Dsweeper-thread.cc82 intptr_t SweeperThread::StealMemory(PagedSpace* space) { argument
83 if (space->identity() == OLD_POINTER_SPACE) {
84 return space->free_list()->Concatenate(&free_list_old_pointer_space_);
85 } else if (space->identity() == OLD_DATA_SPACE) {
86 return space->free_list()->Concatenate(&free_list_old_data_space_);
/external/harfbuzz_ng/src/
H A Dhb-fallback-shape.cc98 hb_codepoint_t space; local
99 font->get_glyph (' ', 0, &space);
108 buffer->info[i].codepoint = space;
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DPhysicsTestHelper.java38 * @param space
40 public static void createPhysicsTestWorld(Node rootNode, AssetManager assetManager, PhysicsSpace space) { argument
57 space.add(floorGeometry);
68 space.add(boxGeometry);
78 space.add(sphereGeometry);
82 public static void createPhysicsTestWorldSoccer(Node rootNode, AssetManager assetManager, PhysicsSpace space) { argument
99 space.add(floorGeometry);
111 space.add(ballGeometry);
121 space.add(boxGeometry);
175 * @param space
177 createBallShooter(final Application app, final Node rootNode, final PhysicsSpace space) argument
[all...]
/external/regex-re2/util/
H A Dstringprintf.cc11 char space[1024]; local
18 int result = vsnprintf(space, sizeof(space), format, backup_ap);
21 if ((result >= 0) && (result < sizeof(space))) {
23 dst->append(space, result);
28 int length = sizeof(space);
/external/kernel-headers/original/linux/
H A Defs_dir.h30 unsigned char space[EFS_DIRBSIZE - EFS_DIRBLK_HEADERSIZE]; member in struct:efs_dir
37 #define EFS_SLOTAT(dir, slot) EFS_REALOFF((dir)->space[slot])
/external/llvm/lib/Target/NVPTX/
H A DNVPTXutil.cpp36 static int encode_leb128(uint64_t val, int *nbytes, char *space, int splen) { argument
38 char *end = space + splen;
40 a = space;
53 *nbytes = a - space;
/external/ceres-solver/include/ceres/internal/
H A Dmanual_constructor.h31 // ManualConstructor statically-allocates space in which to store some
37 // (When I say ManualConstructor statically allocates space, I mean that
114 inline void* space() { function in class:ceres::internal::ManualConstructor
120 new(space()) Type;
125 new(space()) Type(p1);
130 new(space()) Type(p1, p2);
135 new(space()) Type(p1, p2, p3);
140 new(space()) Type(p1, p2, p3, p4);
146 new(space()) Type(p1, p2, p3, p4, p5);
153 new(space()) Typ
[all...]
/external/chromium/net/proxy/
H A Dproxy_server.cc156 // Start by finding the first space (if any).
157 std::string::const_iterator space; local
158 for (space = begin; space != end; ++space) {
159 if (HttpUtil::IsLWS(*space)) {
164 // Everything to the left of the space is the scheme.
165 Scheme scheme = GetSchemeFromPacTypeInternal(begin, space);
167 // And everything to the right of the space is the
169 return FromSchemeHostAndPort(scheme, space, en
[all...]
/external/chromium/third_party/libevent/test/
H A Dbench.c85 int *cp, space; local
98 space = num_pipes / num_active;
99 space = space * 2;
101 write(pipes[i * space + 1], "e", 1);
/external/chromium_org/net/proxy/
H A Dproxy_server.cc155 // Start by finding the first space (if any).
156 std::string::const_iterator space; local
157 for (space = begin; space != end; ++space) {
158 if (HttpUtil::IsLWS(*space)) {
163 // Everything to the left of the space is the scheme.
164 Scheme scheme = GetSchemeFromPacTypeInternal(begin, space);
166 // And everything to the right of the space is the
168 return FromSchemeHostAndPort(scheme, space, en
[all...]
/external/chromium_org/third_party/libevent/test/
H A Dbench.c85 int *cp, space; local
98 space = num_pipes / num_active;
99 space = space * 2;
101 write(pipes[i * space + 1], "e", 1);
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstringprintf.cc59 char space[kSpaceLength]; local
66 int result = vsnprintf(space, kSpaceLength, format, backup_ap);
72 dst->append(space, result);
77 // Error or MSVC running out of space. MSVC 8.0 and higher
78 // can be asked about space needed with the special idiom below:
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DFeature.java17 * common methods that take the evalueation space of the feature.
22 /** The evalueation space. */
23 protected Space space; field in class:Feature
38 * @param space
39 * the spatial's evaluation space
45 public Feature(Space space, Long oma, BlenderContext blenderContext) { argument
46 this.space = space;
56 * @param space
57 * the spatial's evaluation space
63 Feature(Spatial spatial, Space space, Long oma, BlenderContext blenderContext) argument
80 Feature(Bone bone, Space space, Long oma, BlenderContext blenderContext) argument
[all...]
/external/chromium_org/chrome/browser/ui/webui/quota_internals/
H A Dquota_internals_proxy.cc99 int64 space) {
101 ReportAvailableSpace(space);
98 DidGetAvailableSpace(quota::QuotaStatusCode status, int64 space) argument
/external/chromium_org/gpu/command_buffer/client/
H A Dcmd_buffer_helper.cc195 // space may not be available.
267 CommandBufferEntry* space = &entries_[put_]; local
273 return space;
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
H A DGlyphPageTreeNodeChromiumWin.cpp69 // Initializes space glyph
72 static wchar_t space = ' '; local
73 return getGlyphIndices(font, dc, &space, 1, spaceGlyph, 0);
155 Glyph spaceGlyph = 0; // Glyph for a space. Lazily filled.
162 // When this character should be a space, we ignore whatever the font
163 // says and use a space. Otherwise, if fonts don't map one of these
164 // space or zero width glyphs, we will get a box.

Completed in 901 milliseconds

12345678