HomeSort by relevance Sort by last modified time
    Searched defs:up (Results 1 - 25 of 260) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/libcxx/test/std/utilities/tuple/tuple.general/
tuple.smartptr.pass.cpp 21 std::tuple<std::unique_ptr<char>> up; local
27 std::tuple<std::unique_ptr<char[]>> up; local
33 std::tuple<std::unique_ptr<char[5]>> up; local
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.general/
tuple.smartptr.pass.cpp 18 std::tuple<std::unique_ptr<char>> up; local
24 std::tuple<std::unique_ptr<char[]>> up; local
30 std::tuple<std::unique_ptr<char[5]>> up; local
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeIterator.h 44 id<ANTLRTree> up; variable
51 @property(retain, readwrite) id<ANTLRTree> up; variable
ANTLRBufferedTreeNodeStream.h 63 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/
ANTLRTreeIterator.h 44 id<ANTLRTree> up; variable
51 @property(retain, readwrite) id<ANTLRTree> up; variable
ANTLRBufferedTreeNodeStream.h 63 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/
ANTLRTreeIterator.h 44 id<ANTLRTree> up; variable
51 @property(retain, readwrite) id<ANTLRTree> up; variable
ANTLRBufferedTreeNodeStream.h 63 id<ANTLRTree> up; variable
84 @property (retain, getter=getUp, setter=setUp:) 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/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
UnresolvedPrincipalTest.java 38 UnresolvedPrincipal up = new UnresolvedPrincipal(klass, name); local
39 assertEquals(klass, up.getClassName());
40 assertEquals(name, up.getName());
42 up = new UnresolvedPrincipal(klass, null);
43 assertEquals(klass, up.getClassName());
44 assertNull(up.getName());
47 up = new UnresolvedPrincipal(null, name);
71 UnresolvedPrincipal up = new UnresolvedPrincipal(klass, name); local
75 assertTrue(up.equals(up));
    [all...]
  /external/dhcpcd/
ipv4ll.c 126 time_t up; local
129 up = uptime();
130 if (iface->state->defend + DEFEND_INTERVAL > up) {
139 iface->state->defend = up;
  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
auto_pointer.pass.cpp 48 std::unique_ptr<A> up(std::move(ap));
49 assert(up.get() == p);
59 std::unique_ptr<A> up; local
60 up = std::move(ap);
61 assert(up.get() == p);
auto_pointer01.fail.cpp 47 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/v8/test/mjsunit/regress/
regress-2185-2.js 88 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_asc)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
auto_pointer.pass.cpp 47 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);
auto_pointer01.fail.cpp 47 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/
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/chromium-trace/trace-viewer/hooks/
pre_push 13 import posix # No way to do this on Windows, just give up there. namespace
  /external/clang/test/SemaCXX/
dynamic-cast.cpp 50 void up() function
  /external/jmonkeyengine/engine/src/android/jme3test/android/
TestSkyLoadingLagoon.java 53 Texture up = assetManager.loadTexture("Textures/Sky/Lagoon/lagoon_up.jpg"); local
62 Texture up = assetManager.loadTexture("Textures/Sky/Primitives/primitives_positive_y.png");
66 Spatial sky = SkyFactory.createSky(assetManager, west, east, north, south, up, down);
TestSkyLoadingPrimitives.java 53 Texture up = assetManager.loadTexture("Textures/Sky/Lagoon/lagoon_up.jpg");
61 Texture up = assetManager.loadTexture("Textures/Sky/Primitives/primitives_positive_y.png"); local
64 Spatial sky = SkyFactory.createSky(assetManager, west, east, north, south, up, down);
  /external/jmonkeyengine/engine/src/test/jme3test/texture/
TestSkyLoading.java 52 Texture up = assetManager.loadTexture("Textures/Sky/Lagoon/lagoon_up.jpg"); local
55 Spatial sky = SkyFactory.createSky(assetManager, west, east, north, south, up, down);
  /external/toybox/toys/lsb/
su.c 45 struct passwd *up; local
65 up = xgetpwnam(name);
66 xsetuser(up);
69 *(argv++) = TT.s ? TT.s : up->pw_shell;
79 xchdir(up->pw_dir);
83 setenv("HOME", up->pw_dir, 1);
84 setenv("SHELL", up->pw_shell, 1);
85 setenv("USER", up->pw_name, 1);
86 setenv("LOGNAME", up->pw_name, 1);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Ring.java 41 * 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,
84 this.up = up;
109 * <code>getUp</code> returns the ring's up vector.
    [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...]

Completed in 1988 milliseconds

1 2 3 4 5 6 7 8 91011