Searched defs:up (Results 1 - 25 of 126) 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/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2185-2.js88 function up(a) { function
110 var asc = up([]);
112 var asc_desc = down(up([]));
113 var desc_asc = up(down([]));
114 var asc_asc = up(up([]));
135 bench("up", asc);
142 bench("up, down", asc_desc);
143 bench("up, up", asc_as
[all...]
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Dauto_pointer.pass.cpp47 std::unique_ptr<A> up(std::move(ap));
48 assert(up.get() == p);
58 std::unique_ptr<A> up; local
59 up = std::move(ap);
60 assert(up.get() == p);
H A Dauto_pointer01.fail.cpp47 std::unique_ptr<A> up(ap);
48 assert(up.get() == p);
58 std::unique_ptr<A> up; local
59 up = ap;
60 assert(up.get() == p);
/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.cpp50 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/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/chromium_org/content/browser/gamepad/
H A Dgamepad_standard_mappings.cc38 bool up = false; local
43 // Dpad is mapped as a direction on one axis, where -1 is up and it
44 // increases clockwise to 1, which is up + left. It's set to a large (> 1.f)
45 // number when nothing is depressed, except on start up, sometimes it's 0.0
48 up = (dir >= -1.f && dir < -0.7f) || (dir >= .95f && dir <= 1.f);
54 mapped->buttons[kButtonDpadUp].pressed = up;
55 mapped->buttons[kButtonDpadUp].value = up ? 1.f : 0.f;
/external/chromium_org/third_party/skia/src/opts/
H A DSkMorphology_opts_SSE2.cpp36 const SkPMColor* up = upperSrc; local
40 for (const SkPMColor* p = lp; p <= up; p += srcStrideX) {
47 up += srcStrideY;
H A DSkMorphology_opts_neon.cpp39 const SkPMColor* up = upperSrc; local
43 for (const SkPMColor* p = lp; p <= up; p += srcStrideX) {
50 up += srcStrideY;
/external/chromium_org/third_party/webrtc/modules/video_coding/utility/
H A Dquality_scaler.cc130 void QualityScaler::AdjustScale(bool up) { argument
131 downscale_shift_ += up ? -1 : 1;
/external/elfutils/0.153/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/ppp/pppd/plugins/pppoatm/
H A Dtext2qos.c25 int __t2q_get_rate(const char **text,int up) argument
69 rate = (rate+(up ? 8*ATM_CELL_PAYLOAD-1 : 0))/8/
/external/skia/src/opts/
H A DSkMorphology_opts_SSE2.cpp36 const SkPMColor* up = upperSrc; local
40 for (const SkPMColor* p = lp; p <= up; p += srcStrideX) {
47 up += srcStrideY;

Completed in 4030 milliseconds

123456