Home
last modified time | relevance | path

Searched refs:Up (Results 1 – 25 of 261) sorted by relevance

1234567891011

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dbugprone-reserved-identifier-invert.cpp54 template <class Up>
57 inline reference_wrapper<const Up>
58 cref(const Up &u) noexcept { in cref()
61 return reference_wrapper<const Up>(u); in cref()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
DITreeNodeStreamFixture.cs184 Assert.AreEqual(Token.Up, ((ITree)stream.LT(6)).Type); in testLT()
186 Assert.AreEqual(Token.Up, ((ITree)stream.LT(8)).Type); in testLT()
216 Assert.AreEqual(Token.Up, ((ITree)stream.LT(-1)).Type); in testMarkRewindEntire()
226 Assert.AreEqual(Token.Up, ((ITree)stream.LT(-1)).Type); in testMarkRewindEntire()
261 Assert.AreEqual(Token.Up, ((ITree)stream.LT(1)).Type); in testMarkRewindInMiddle()
263 Assert.AreEqual(Token.Up, ((ITree)stream.LT(1)).Type); in testMarkRewindInMiddle()
270 Assert.AreEqual(Token.Up, ((ITree)stream.LT(1)).Type); in testMarkRewindInMiddle()
273 Assert.AreEqual(Token.Up, ((ITree)stream.LT(-1)).Type); in testMarkRewindInMiddle()
411 Assert.AreEqual(Token.Up, ((ITree)stream.LT(1)).Type); in testPushPop()
466 Assert.AreEqual(Token.Up, ((ITree)stream.LT(1)).Type); in testNestedPushPop()
[all …]
/external/llvm-project/libcxx/test/std/utilities/utility/utility.inplace/
Dinplace.pass.cpp38 template <class Tp, class Up>
39 constexpr bool check_tag(Up) { in check_tag() argument
41 && std::is_same<Tp, Up>::value; in check_tag()
/external/libcxx/test/std/utilities/utility/utility.inplace/
Dinplace.pass.cpp40 template <class Tp, class Up>
41 constexpr bool check_tag(Up) { in check_tag() argument
43 && std::is_same<Tp, Up>::value; in check_tag()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DTokenTypes.cs43 public const int Up = 3; field in Antlr.Runtime.TokenTypes
44 public const int Min = Up + 1;
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-09-12.data3 - Up, up, and away!
7 "Up, up, and away!",
Dspec-09-12.canonical5 !!str "Up, up, and away!",
9 !!str "Up, up, and away!",
/external/llvm-project/llvm/test/YAMLParser/
Dspec-09-12.test5 - Up, up, and away!
9 "Up, up, and away!",
/external/llvm/test/YAMLParser/
Dspec-09-12.test5 - Up, up, and away!
9 "Up, up, and away!",
/external/llvm-project/compiler-rt/lib/scudo/standalone/
Dcommon.h62 const uptr Up = getMostSignificantSetBitIndex(Size); in roundUpToPowerOfTwo() local
63 DCHECK_LT(Size, (1UL << (Up + 1))); in roundUpToPowerOfTwo()
64 DCHECK_GT(Size, (1UL << Up)); in roundUpToPowerOfTwo()
65 return 1UL << (Up + 1); in roundUpToPowerOfTwo()
/external/scudo/standalone/
Dcommon.h62 const uptr Up = getMostSignificantSetBitIndex(Size); in roundUpToPowerOfTwo() local
63 DCHECK_LT(Size, (1UL << (Up + 1))); in roundUpToPowerOfTwo()
64 DCHECK_GT(Size, (1UL << Up)); in roundUpToPowerOfTwo()
65 return 1UL << (Up + 1); in roundUpToPowerOfTwo()
/external/llvm-project/libcxx/test/support/
Dcontainer_test_types.h307 template <class Up, class ...Args>
308 void construct(Up* p, Args&&... args) { in construct()
309 static_assert((std::is_same<Up, AllowConstructT>::value), in construct()
314 ::new ((void*)p) Up(std::forward<Args>(args)...); in construct()
318 template <class Up>
319 void destroy(Up* p) { in destroy()
320 static_assert((std::is_same<Up, AllowConstructT>::value), in destroy()
324 p->~Up(); in destroy()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DDebugTreeGrammar.cs309 Match(input, TokenTypes.Up, null); in stat()
391 Match(input, TokenTypes.Up, null); in stat()
536 Match(input, TokenTypes.Up, null); in expr()
565 Match(input, TokenTypes.Up, null); in expr()
594 Match(input, TokenTypes.Up, null); in expr()
623 Match(input, TokenTypes.Up, null); in expr()
652 Match(input, TokenTypes.Up, null); in expr()
767 Match(input, TokenTypes.Up, null); in call()
DProfileTreeGrammar.cs314 Match(input, TokenTypes.Up, null); in stat()
396 Match(input, TokenTypes.Up, null); in stat()
541 Match(input, TokenTypes.Up, null); in expr()
570 Match(input, TokenTypes.Up, null); in expr()
599 Match(input, TokenTypes.Up, null); in expr()
628 Match(input, TokenTypes.Up, null); in expr()
657 Match(input, TokenTypes.Up, null); in expr()
772 Match(input, TokenTypes.Up, null); in call()
/external/libcxx/test/support/
Dcontainer_test_types.h308 template <class Up, class ...Args>
309 void construct(Up* p, Args&&... args) { in construct()
310 static_assert((std::is_same<Up, AllowConstructT>::value), in construct()
315 ::new ((void*)p) Up(std::forward<Args>(args)...); in construct()
319 template <class Up>
320 void destroy(Up* p) { in destroy()
321 static_assert((std::is_same<Up, AllowConstructT>::value), in destroy()
325 p->~Up(); in destroy()
Dverbose_assert.h144 template <class Tp, class Up>
145 std::string PrintMismatch(Tp const& LHS, Up const& RHS, int Elem) {
153 template <class Tp, class Up>
154 bool operator()(Tp const& LHS, Up const& RHS) const {
/external/grpc-grpc/src/python/grpcio_tests/tests/testing/
D_application_common.py25 UNARY_UNARY_REQUEST = requests_pb2.Up(first_up_field=2)
26 ERRONEOUS_UNARY_UNARY_REQUEST = requests_pb2.Up(first_up_field=3)
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DTokenConstants.cs61 public const int Up = 3; field in Antlr.Runtime.TokenTypes
62 public const int Min = Up + 1;
/external/python/cpython2/Modules/_ctypes/libffi/doc/
Dlibffi.info20 File: libffi.info, Node: Top, Next: Introduction, Up: (dir)
44 File: libffi.info, Node: Introduction, Next: Using libffi, Prev: Top, Up: Top
77 File: libffi.info, Node: Using libffi, Next: Missing Features, Prev: Introduction, Up: Top
92 File: libffi.info, Node: The Basics, Next: Simple Example, Up: Using libffi
173 File: libffi.info, Node: Simple Example, Next: Types, Prev: The Basics, Up: Using libffi
214 File: libffi.info, Node: Types, Next: Multiple ABIs, Prev: Simple Example, Up: Using libffi
226 File: libffi.info, Node: Primitive Types, Next: Structures, Up: Types
307 File: libffi.info, Node: Structures, Next: Type Example, Prev: Primitive Types, Up: Types
333 File: libffi.info, Node: Type Example, Prev: Structures, Up: Types
381 File: libffi.info, Node: Multiple ABIs, Next: The Closure API, Prev: Types, Up: Using libffi
[all …]
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBufferedTreeNodeStream.cs166 up = adaptor.Create(TokenTypes.Up, "UP"); in BufferedTreeNodeStream()
273 AddNavigationNode(TokenTypes.Up); in FillBuffer()
307 navNode = adaptor.Create(TokenTypes.Up, "UP"); in AddNavigationNode()
520 if (adaptor.GetType(stop) == TokenTypes.Up) { in ToString()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBufferedTreeNodeStream.cs178 up = adaptor.Create( TokenTypes.Up, "UP" ); in BufferedTreeNodeStream()
314 AddNavigationNode( TokenTypes.Up ); in FillBuffer()
360 navNode = adaptor.Create( TokenTypes.Up, "UP" ); in AddNavigationNode()
618 if ( adaptor.GetType( stop ) == TokenTypes.Up ) in ToString()
/external/llvm-project/clang/test/SemaCXX/
Dbuiltin-operator-new-delete.cpp145 template <class Tp, class Up, class RetT>
146 void test_dependent_call(Tp new_arg, Up delete_arg, RetT) { in test_dependent_call()
/external/llvm-project/libcxx/test/libcxx/type_traits/
Dlazy_metafunctions.pass.cpp51 template <class Up, class = typename Up::type>
/external/oboe/samples/RhythmGame/third_party/glm/gtx/
Drotate_vector.inl177 tvec3<T, P> const & Up argument
180 if(all(equal(Normal, Up)))
183 tvec3<T, P> RotationAxis = cross(Up, Normal);
184 T Angle = acos(dot(Normal, Up));
/external/llvm-project/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
Dcommon_type.pass.cpp70 template <class Tp = NoArgTag, class Up = NoArgTag, class Vp = NoArgTag>
71 struct no_common_type : no_common_type_imp<std::common_type<Tp, Up, Vp> > {};
72 template <class Tp, class Up>
73 struct no_common_type<Tp, Up> : no_common_type_imp<std::common_type<Tp, Up> > {

1234567891011