Searched defs:up (Results 1 - 25 of 134) sorted by relevance

123456

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeIterator.h44 id<ANTLRTree> up; variable
51 @property(retain, readwrite) id<ANTLRTree> up; variable
H A DANTLRBufferedTreeNodeStream.h63 id<ANTLRTree> up; variable
84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeIterator.h44 id<ANTLRTree> up; variable
51 @property(retain, readwrite) id<ANTLRTree> up; variable
H A DANTLRBufferedTreeNodeStream.h63 id<ANTLRTree> up; variable
84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeIterator.h44 id<ANTLRTree> up; variable
51 @property(retain, readwrite) id<ANTLRTree> up; variable
H A DANTLRBufferedTreeNodeStream.h63 id<ANTLRTree> up; variable
84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeIterator.h46 __strong id<ANTLRBaseTree> up; variable
56 @property(retain, readwrite) id<ANTLRBaseTree> up; variable
H A DANTLRBufferedTreeNodeStream.h64 id up; variable
85 @property (retain, getter=getUp, setter=setUp:) id up; variable
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeIterator.cs48 public object up; field in class:Antlr.Runtime.Tree.TreeIterator
67 up = adaptor.Create(TokenTypes.Up, "UP");
99 // if any queued up, use those first
115 // while we're out of siblings, keep popping back up towards root
118 nodes.Enqueue(up); // we're moving back up
/external/clang/test/SemaCXX/
H A Ddynamic-cast.cpp48 void up() function
/external/dhcpcd/
H A Dipv4ll.c126 time_t up; local
129 up = uptime();
130 if (iface->state->defend + DEFEND_INTERVAL > up) {
139 iface->state->defend = up;
/external/skia/third_party/glu/libtess/
H A Dtessmono.c81 GLUhalfEdge *up, *lo; local
88 up = face->anEdge;
89 assert( up->Lnext != up && up->Lnext->Lnext != up );
91 for( ; VertLeq( up->Dst, up->Org ); up = up
[all...]
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dconfig_standalone.py42 up = os.path.dirname variable
43 script_dir = up(up(up(this_dir)))
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeIterator.cs51 public object up; field in class:Antlr.Runtime.Tree.TreeIterator
72 up = adaptor.Create( TokenTypes.Up, "UP" );
111 // if any queued up, use those first
136 // while we're out of siblings, keep popping back up towards root
140 nodes.Enqueue( up ); // we're moving back up
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeIterator.java48 public Object up; field in class:TreeIterator
67 up = adaptor.create(Token.UP, "UP");
94 // if any queued up, use those first
108 // while we're out of siblings, keep popping back up towards root
112 nodes.add(up); // we're moving back up
/external/jmonkeyengine/engine/src/test/jme3test/terrain/
H A DTerrainGridSerializationTest.java119 private boolean up; field in class:TerrainGridSerializationTest
139 TerrainGridSerializationTest.this.up = true;
141 TerrainGridSerializationTest.this.up = false;
167 if (this.up) {
/external/kernel-headers/original/asm-arm/
H A Dsemaphore.h89 * Note! This is subtle. We jump to wake people up only if
92 * jumps for both down() and up().
94 static inline void up(struct semaphore * sem) function
/external/kernel-headers/original/asm-x86/
H A Dsemaphore_32.h157 * Note! This is subtle. We jump to wake people up only if
160 static inline void up(struct semaphore * sem) function
163 "# atomic up operation\n\t"
/external/chromium/chrome/browser/resources/
H A Dmenu.js272 var up = document.getElementById('scroll-up'); variable
274 up.addEventListener('mouseout', this.stopScroll_.bind(this));
277 up.addEventListener('mouseover',
287 up.getBoundingClientRect().height +
516 var up = document.getElementById('scroll-up');
521 up.classList.add('hidden');
530 up.classList.remove('hidden');
534 up
[all...]
/external/elfutils/libcpu/
H A Dmemory-access.h95 const union unaligned *up = p; local
97 return bswap_16 (up->u2);
98 return up->u2;
103 const union unaligned *up = p; local
105 return (int16_t) bswap_16 (up->u2);
106 return up->s2;
112 const union unaligned *up = p; local
113 return up->u4;
118 const union unaligned *up = p; local
120 return bswap_32 (up
126 const union unaligned *up = p; local
135 const union unaligned *up = p; local
143 const union unaligned *up = p; local
[all...]
/external/guava/guava/src/com/google/common/math/
H A DDoubleUtils.java37 static double next(double x, boolean up) { argument
40 return up ? Double.MIN_VALUE : -Double.MIN_VALUE;
43 if ((x < 0.0) == up) {
150 * round up or down. twiceSignifFloor will contain the top SIGNIFICAND_BITS + 2 bits, and
161 * We round up if either the fractional part of signif is strictly greater than 0.5 (which is
173 * directly. If the exponent is MAX_DOUBLE_EXPONENT, we round up (correctly) to
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalCollection.java106 throw up();
109 throw up();
112 throw up();
115 throw up();
117 private static UnsupportedOperationException up() { method in class:MinimalCollection
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DRing.java41 * space that is specified via the ring's center point, an up vector, an inner
52 private Vector3f center, up; field in class:Ring
63 up = Vector3f.UNIT_Y.clone();
70 * up vector, and inner and outer radii.
74 * @param up
75 * the unit up vector defining the ring's orientation.
81 public Ring(Vector3f center, Vector3f up, float innerRadius, argument
84 this.up = up;
109 * <code>getUp</code> returns the ring's up vecto
123 setUp(Vector3f up) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSkyFactory.java142 public static Spatial createSky(AssetManager assetManager, Texture west, Texture east, Texture north, Texture south, Texture up, Texture down, Vector3f normalScale) { argument
143 return createSky(assetManager, west, east, north, south, up, down, normalScale, 10);
146 public static Spatial createSky(AssetManager assetManager, Texture west, Texture east, Texture north, Texture south, Texture up, Texture down, Vector3f normalScale, int sphereRadius) { argument
157 Image upImg = up.getImage();
199 public static Spatial createSky(AssetManager assetManager, Texture west, Texture east, Texture north, Texture south, Texture up, Texture down) { argument
200 return createSky(assetManager, west, east, north, south, up, down, Vector3f.UNIT_XYZ);
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestQ3.java62 private boolean left=false,right=false,up=false,down=false; field in class:TestQ3
132 if(up)
167 up=true;
169 up=false;

Completed in 492 milliseconds

123456