HomeSort by relevance Sort by last modified time
    Searched refs:Up (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenTypes.cs 43 public const int Up = 3;
44 public const int Min = Up + 1;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs 61 public const int Up = 3;
62 public const int Min = Up + 1;
  /external/libcxx/test/std/utilities/utility/utility.inplace/
inplace.pass.cpp 40 template <class Tp, class Up>
41 constexpr bool check_tag(Up) {
43 && std::is_same<Tp, Up>::value;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/utility.inplace/
inplace.pass.cpp 40 template <class Tp, class Up>
41 constexpr bool check_tag(Up) {
43 && std::is_same<Tp, Up>::value;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
container_test_types.h 14 // [container.requirements.general]. The header is made up of 3 main components:
293 template <class Up, class ...Args>
294 void construct(Up* p, Args&&... args) {
295 static_assert((std::is_same<Up, AllowConstructT>::value),
296 "Only allowed to construct Up");
300 ::new ((void*)p) Up(std::forward<Args>(args)...);
304 template <class Up>
305 void destroy(Up* p) {
306 static_assert((std::is_same<Up, AllowConstructT>::value),
307 "Only allowed to destroy Up");
    [all...]
  /external/libcxx/test/libcxx/type_traits/
lazy_metafunctions.pass.cpp 51 template <class Up, class = typename Up::type>
  /external/libcxx/test/support/
container_test_types.h 14 // [container.requirements.general]. The header is made up of 3 main components:
308 template <class Up, class ...Args>
309 void construct(Up* p, Args&&... args) {
310 static_assert((std::is_same<Up, AllowConstructT>::value),
311 "Only allowed to construct Up");
315 ::new ((void*)p) Up(std::forward<Args>(args)...);
319 template <class Up>
320 void destroy(Up* p) {
321 static_assert((std::is_same<Up, AllowConstructT>::value),
322 "Only allowed to destroy Up");
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/type_traits/
lazy_metafunctions.pass.cpp 51 template <class Up, class = typename Up::type>
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ITreeNodeStreamFixture.cs 184 Assert.AreEqual(Token.Up, ((ITree)stream.LT(6)).Type);
186 Assert.AreEqual(Token.Up, ((ITree)stream.LT(8)).Type);
197 // Sequence of types: 101 DN 102 DN 103 106 DN 107 Up Up 104 105 Up EndOfFile
216 Assert.AreEqual(Token.Up, ((ITree)stream.LT(-1)).Type);
226 Assert.AreEqual(Token.Up, ((ITree)stream.LT(-1)).Type);
234 // Sequence of types: 101 DN 102 DN 103 106 DN 107 Up Up 104 105 Up EndOfFil
    [all...]
  /device/google/cuttlefish_common/host/frontend/vnc_server/
keysyms.h 28 PageDown = 0xff56, Left = 0xff51, Up = 0xff52,
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 46 * includes pointers to DOWN and UP and EOF nodes.
57 * This is the old CommonTreeNodeStream that buffered up entire node stream.
116 protected object up; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
120 * This buffer includes pointers to DOWN, UP, and EOF nodes.
139 /** <summary>Reuse same DOWN, UP navigation nodes unless this is true</summary> */
166 up = adaptor.Create(TokenTypes.Up, "UP");
248 * Don't do DOWN, UP nodes if its a list (t is isNil).
271 // add UP node if t has childre
    [all...]
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...]
TreeParser.cs 46 public const int UP = TokenTypes.Up;
107 * corresponding UP node.
116 // skip to corresponding UP. must count nesting level to get right UP
126 case UP:
140 * We have DOWN/UP nodes in the stream that have no line info; override.
169 if (e.Token == null) { // could be an UP/DOWN node
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 47 * includes pointers to DOWN and UP and EOF nodes.
58 * This is the old CommonTreeNodeStream that buffered up entire node stream.
125 protected object up; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
129 * This buffer includes pointers to DOWN, UP, and EOF nodes.
148 /** <summary>Reuse same DOWN, UP navigation nodes unless this is true</summary> */
178 up = adaptor.Create( TokenTypes.Up, "UP" );
283 * Don't do DOWN, UP nodes if its a list (t is isNil).
311 // add UP node if t has childre
    [all...]
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...]
TreeParser.cs 48 public const int UP = TokenTypes.Up;
117 * corresponding UP node.
127 // skip to corresponding UP. must count nesting level to get right UP
140 case UP:
154 * We have DOWN/UP nodes in the stream that have no line info; override.
188 { // could be an UP/DOWN node
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 29 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "CALL", "FUNC", "ID", "INT", "NEWLINE", "WS", "'-'", "'%'", "'('", "')'", "'*'", "'/'", "'+'", "'='"
309 Match(input, TokenTypes.Up, null);
345 else if ( (LA2_0==UP) )
391 Match(input, TokenTypes.Up, null);
536 Match(input, TokenTypes.Up, null);
565 Match(input, TokenTypes.Up, null);
594 Match(input, TokenTypes.Up, null);
623 Match(input, TokenTypes.Up, null);
652 Match(input, TokenTypes.Up, null);
767 Match(input, TokenTypes.Up, null);
    [all...]
ProfileTreeGrammar.cs 29 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "CALL", "FUNC", "ID", "INT", "NEWLINE", "WS", "'-'", "'%'", "'('", "')'", "'*'", "'/'", "'+'", "'='"
314 Match(input, TokenTypes.Up, null);
350 else if ( (LA2_0==UP) )
396 Match(input, TokenTypes.Up, null);
541 Match(input, TokenTypes.Up, null);
570 Match(input, TokenTypes.Up, null);
599 Match(input, TokenTypes.Up, null);
628 Match(input, TokenTypes.Up, null);
657 Match(input, TokenTypes.Up, null);
772 Match(input, TokenTypes.Up, null);
    [all...]
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 108 inline int umfpack_get_numeric(int Lp[], int Lj[], double Lx[], int Up[], int Ui[], double Ux[],
111 return umfpack_di_get_numeric(Lp,Lj,Lx,Up,Ui,Ux,P,Q,Dx,do_recip,Rs,Numeric);
114 inline int umfpack_get_numeric(int Lp[], int Lj[], std::complex<double> Lx[], int Up[], int Ui[], std::complex<double> Ux[],
120 return umfpack_zi_get_numeric(Lp,Lj,Lx?&lx0_real:0,0,Up,Ui,Ux?&ux0_real:0,0,P,Q,
  /external/vulkan-validation-layers/libs/glm/gtx/
rotate_vector.hpp 120 //! Build a rotation matrix from a normal and a up vector.
125 detail::tvec3<T, P> const & Up);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
hidpi.h 37 #define HidP_SetButtons(Rty, Up, Lco, ULi, ULe, Ppd, Rep, Rle) HidP_SetUsages (Rty, Up, Lco, ULi, ULe, Ppd, Rep, Rle)
38 #define HidP_UnsetButtons(Rty, Up, Lco, ULi, ULe, Ppd, Rep, Rle) HidP_UnsetUsages (Rty, Up, Lco, ULi, ULe, Ppd, Rep, Rle)
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtx/
rotate_vector.hpp 120 //! Build a rotation matrix from a normal and a up vector.
125 detail::tvec3<T, P> const & Up);
  /external/libvncserver/libvncclient/
zrle.c 42 #define HandleZRLE CONCAT3E(HandleZRLE,REALBPP,Up)
43 #define HandleZRLETile CONCAT3E(HandleZRLETile,REALBPP,Up)
69 #define CPIXEL CONCAT2E(REALBPP,Up)
  /external/autotest/server/cros/ap_configurators/
netgear4300_ap_configurator.py 106 mode_selection = 'Up to 54 Mbps'
109 mode_selection = 'Up to 300 Mbps'
111 mode_selection = 'Up to 450 Mbps'
157 'It should be \'Up to 54 Mbps\'.' % str(e))
netgear_single_band_configurator.py 143 'It should be \'Up to 54 Mbps\'.' % str(e))

Completed in 1326 milliseconds

1 2 3