HomeSort by relevance Sort by last modified time
    Searched refs:up (Results 51 - 75 of 776) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeIterator.h 44 id<ANTLRTree> up; variable
51 @property(retain, readwrite) id<ANTLRTree> up; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeIterator.h 44 id<ANTLRTree> up; variable
51 @property(retain, readwrite) id<ANTLRTree> up; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeIterator.h 46 __strong id<ANTLRBaseTree> up; variable
56 @property(retain, readwrite) id<ANTLRBaseTree> up; variable
  /external/clang/test/SemaCXX/
for-range-dereference.cpp 63 expected-note {{when looking up 'end' function for range expression of type 'DeletedEnd'}}
79 expected-note {{when looking up 'begin' function for range expression of type 'DeletedADLBegin'}}
  /external/quake/quake/src/WinQuake/
chase.cpp 64 vec3_t forward, up, right; local
69 AngleVectors (cl.viewangles, forward, right, up);
r_sprite.cpp 141 vec3_t left, up, right, down, transformed, local; local
152 VectorScale (r_spritedesc.vup, r_spritedesc.pspriteframe->up, up);
158 pverts[0][0] = r_entorigin[0] + up[0] + left[0];
159 pverts[0][1] = r_entorigin[1] + up[1] + left[1];
160 pverts[0][2] = r_entorigin[2] + up[2] + left[2];
164 pverts[1][0] = r_entorigin[0] + up[0] + right[0];
165 pverts[1][1] = r_entorigin[1] + up[1] + right[1];
166 pverts[1][2] = r_entorigin[2] + up[2] + right[2];
303 // generate the sprite's axes, with vup straight up in worldspace, and
    [all...]
  /external/webkit/LayoutTests/fast/events/touch/resources/
touch-stale-node-crash.js 7 window.location = 'resources/send-touch-up.html';
  /hardware/libhardware/
Android.mk 3 # Setting LOCAL_PATH will mess up all-subdir-makefiles, so do it beforehand.
  /prebuilts/tools/common/proguard/proguard4.7/bin/
proguard.bat 3 REM Start-up script for ProGuard -- free class file shrinker, optimizer,
  /sdk/files/proguard/bin/
proguard.bat 3 REM Start-up script for ProGuard -- free class file shrinker, optimizer,
  /frameworks/base/core/jni/android/opengl/
poly_clip.cpp 62 float *up, *vp, *wp; local
80 up = (float *)u;
83 for(int i = 0; i < 4; i++, wp++, up++, vp++) {
84 *wp = *up+t*(*vp-*up);
149 /* if result ended up in p2 then copy it to p1 */
  /external/libpng/
pngwrite.c 108 png_unknown_chunk *up; local
112 for (up = info_ptr->unknown_chunks;
113 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
114 up++)
116 int keep = png_handle_as_unknown(png_ptr, up->name);
118 up->location && !(up->location & PNG_HAVE_PLTE) &&
119 !(up->location & PNG_HAVE_IDAT) &&
120 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
123 if (up->size == 0
286 png_unknown_chunk *up; local
390 png_unknown_chunk *up; local
    [all...]
  /frameworks/base/core/java/android/net/
EthernetDataTracker.java 73 public void interfaceStatusChanged(String iface, boolean up) {
74 Log.d(TAG, "Interface status changed: " + iface + (up ? "up" : "down"));
77 public void interfaceLinkStateChanged(String iface, boolean up) {
79 Log.d(TAG, "Interface " + iface + " link " + (up ? "up" : "down"));
80 mLinkUp = up;
81 mTracker.mNetworkInfo.setIsAvailable(up);
84 if (up) {
127 // we don't get link status indications unless the iface is up - bring it u
    [all...]
  /external/quake/quake/src/QW/client/
r_sprite.c 141 vec3_t left, up, right, down, transformed, local; local
152 VectorScale (r_spritedesc.vup, r_spritedesc.pspriteframe->up, up);
158 pverts[0][0] = r_entorigin[0] + up[0] + left[0];
159 pverts[0][1] = r_entorigin[1] + up[1] + left[1];
160 pverts[0][2] = r_entorigin[2] + up[2] + left[2];
164 pverts[1][0] = r_entorigin[0] + up[0] + right[0];
165 pverts[1][1] = r_entorigin[1] + up[1] + right[1];
166 pverts[1][2] = r_entorigin[2] + up[2] + right[2];
303 // generate the sprite's axes, with vup straight up in worldspace, an
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeIterator.cs 39 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
48 public object up; field in class:Antlr.Runtime.Tree.TreeIterator
52 /** If we emit UP/DOWN nodes, we need to spit out multiple nodes per
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
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeIterator.cs 40 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
51 public object up; field in class:Antlr.Runtime.Tree.TreeIterator
55 /** If we emit UP/DOWN nodes, we need to spit out multiple nodes per
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
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeIterator.java 39 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
48 public Object up; field in class:TreeIterator
52 /** If we emit UP/DOWN nodes, we need to spit out multiple nodes per
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
    [all...]
  /external/guava/guava/src/com/google/common/math/
DoubleUtils.java 37 static double next(double x, boolean up) {
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/skia/src/svg/
SkSVGParser.cpp 392 SkSVGElement* up = parent; local
393 while (up && up->fIsDef == false) {
394 up->fIsDef = true;
395 up = up->fParent;
399 SkSVGElement* up = parent; local
400 while (up && up->fIsNotDef == false) {
401 up->fIsNotDef = true
    [all...]
  /external/valgrind/main/coregrind/m_demangle/
safe-ctype.c 142 #define up _sch_isupper macro
149 #define U (const unsigned short) (up|is |pr) /* upper case letter */
150 #define XU (const unsigned short) (up|is|xd|pr) /* uppercase hex digit */
  /external/valgrind/main/coregrind/m_syswrap/
syscall-mips32-linux.S 80 subu $29, $29, 56 #set up the steck frame,
119 subu $29, $29, 24 #set up the steck frame,
128 3: addu $29, $29, 24 #set up the steck frame,
  /frameworks/support/v4/honeycomb/android/support/v4/app/
ActionBarDrawerToggleHoneycomb.java 35 * Before JB-MR2 (API 18) it was not possible to change the home-as-up indicator glyph
58 Log.w(TAG, "Couldn't set home-as-up indicator via JB-MR2 API", e);
63 Log.w(TAG, "Couldn't set home-as-up indicator");
125 final View up = first.getId() == android.R.id.home ? second : first; local
127 if (up instanceof ImageView) {
129 upIndicatorView = (ImageView) up;
  /external/qemu/distrib/libpng-1.2.19/
pngwrite.c 100 png_unknown_chunk *up; local
104 for (up = info_ptr->unknown_chunks;
105 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
106 up++)
108 int keep=png_handle_as_unknown(png_ptr, up->name);
110 up->location && !(up->location & PNG_HAVE_PLTE) &&
111 !(up->location & PNG_HAVE_IDAT) &&
112 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
115 png_write_chunk(png_ptr, up->name, up->data, up->size)
267 png_unknown_chunk *up; local
369 png_unknown_chunk *up; local
    [all...]
  /external/icu4c/i18n/
decNumber.c 60 /* precision (up to 999,999,999 digits) and arbitrary exponent */
158 /* numbers up to four digits, using appropriate constants. This */
233 /* of 17 [we only need up to **4] */
378 Unit *up; /* work pointer */ local
381 for (up=dn->lsu; uin>0; up++) {
382 *up=(Unit)(uin%(DECDPUNMAX+1));
385 dn->digits=decGetDigits(dn->lsu, up-dn->lsu);
408 const Unit *up; /* .. */ local
410 up=dn->lsu; /* -> lsu *
444 const Unit *up; \/* .. *\/ local
521 Unit *up; \/* .. *\/ local
3486 const Unit *up=dn->lsu; \/* Unit pointer, -> lsu *\/ local
3519 Unit *up=dn->lsu+D2U(dn->digits)-1; \/* -> msu [target pointer] *\/ local
3654 const Unit *up=dn->lsu+D2U(dn->digits)-1; \/* -> msu [input pointer] *\/ local
4735 Unit *up; \/* .. *\/ local
4917 Unit *up; \/* .. *\/ local
6635 Unit *up; \/* -> current Unit *\/ local
6782 Unit *target, *up; \/* work *\/ local
6933 const Unit *up; \/* work *\/ local
7198 Unit *up; \/* work *\/ local
7222 Unit *up, *sup; \/* work *\/ local
7436 Unit *up; \/* work *\/ local
7585 const Unit *up; \/* work *\/ local
7809 Unit *up=uar+(len-1); \/* -> msu *\/ local
7855 const Unit *up; \/* work *\/ local
7998 const Unit *up; \/* work *\/ local
    [all...]
  /bionic/libc/arch-mips/bionic/
clone.S 49 # set up child stack
115 # set up child stack

Completed in 2202 milliseconds

1 23 4 5 6 7 8 91011>>