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

1 2 3 4 5 6 7 8 9

  /build/kati/testcase/
multiline_recipe.mk 4 AT=@
9 $(AT) echo no\
11 $(AT) # echo no\
13 $(AT) echo one \
15 $(AT) echo one\
19 $(AT) for d in foo bar; do \
39 $(AT) echo foo \
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
implicit_deduction_guides.pass.cpp 34 // using AT = std::allocator_arg_t
38 // (3) tuple(AT, A const&, Types const&...) -> tuple<Types...>
39 // (4) explicit tuple(AT, A const&, Types const&...) -> tuple<Types...>
42 // (7) tuple(AT, A const&, tuple const& t) -> decltype(t)
43 // (8) tuple(AT, A const&, tuple&& t) -> decltype(t)
47 const auto AT = std::allocator_arg;
68 std::tuple t1(AT, A, 42);
71 std::tuple t2(AT, A, 42, 0.0, x);
78 std::tuple t1(AT, A, T{});
82 std::tuple t2(AT, A, T{}, 101l, v)
    [all...]
  /frameworks/minikin/include/minikin/
GraphemeBreak.h 6 * You may obtain a copy of the License at
27 enum MoveOpt { AFTER = 0, AT_OR_AFTER = 1, BEFORE = 2, AT_OR_BEFORE = 3, AT = 4 };
35 // Matches Android's Java API. Note, return (size_t)-1 for AT to
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
implicit_deduction_guides.pass.cpp 33 // using AT = std::allocator_arg_t
37 // (3) tuple(AT, A const&, Types const&...) -> tuple<Types...>
38 // (4) explicit tuple(AT, A const&, Types const&...) -> tuple<Types...>
41 // (7) tuple(AT, A const&, tuple const& t) -> decltype(t)
42 // (8) tuple(AT, A const&, tuple&& t) -> decltype(t)
46 const auto AT = std::allocator_arg;
67 std::tuple t1(AT, A, 42);
70 std::tuple t2(AT, A, 42, 0.0, x);
77 std::tuple t1(AT, A, T{});
81 std::tuple t2(AT, A, T{}, 101l, v)
    [all...]
  /external/clang/test/Layout/
ms-x86-vtordisp.cpp 151 struct AT {
152 virtual ~AT(){}
154 struct CT : virtual AT {
163 // CHECK-NEXT: 4 | struct AT (virtual base)
164 // CHECK-NEXT: 4 | (AT vftable pointer)
171 // CHECK-X64-NEXT: 8 | struct AT (virtual base)
172 // CHECK-X64-NEXT: 8 | (AT vftable pointer)
ms-x86-alias-avoidance-padding.cpp 9 struct AT {};
11 struct V : AT {
19 union { struct { int a; AT t; } y; int b; } x;
59 // CHECK-NEXT: 0 | union AT0::(anonymous at {{.*}} x
60 // CHECK-NEXT: 0 | struct AT0::(anonymous at {{.*}} y
62 // CHECK-NEXT: 4 | struct AT t (empty)
68 // CHECK-NEXT: 20 | struct AT (base) (empty)
84 // CHECK-X64-NEXT: 0 | union AT0::(anonymous at {{.*}} x
85 // CHECK-X64-NEXT: 0 | struct AT0::(anonymous at {{.*}} y
87 // CHECK-X64-NEXT: 4 | struct AT t (empty
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/parser/
JavaCrashParser.java 6 * You may obtain a copy of the License at
42 private static final Pattern AT = Pattern.compile("^\tat .+$");
96 Matcher atMatch = AT.matcher(line);
  /external/clang/lib/Analysis/
ScanfFormatString.cpp 499 const analyze_scanf::ArgType &AT = getArgType(Ctx);
500 if (AT.isValid() && AT.matchesType(Ctx, QT))
  /external/clang/lib/Lex/
MacroArgs.cpp 50 // Allocate memory for a MacroArgs object with the lexer tokens at the end.
160 const Token *AT = getUnexpArgument(Arg);
161 unsigned NumToks = getArgLength(AT)+1; // Include the EOF.
166 // token at the end of the unexp list.
167 PP.EnterTokenStream(AT, NumToks, false /*disable expand*/,
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 75 ArrayType *AT = ArrayType::get(EltTy, CurrentCtors.size());
76 Constant *NewInit = ConstantArray::get(AT, CurrentCtors);
  /external/nist-sip/java/gov/nist/core/
Separators.java 49 public static final String AT = "@";
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 176 ArrayType *AT = dyn_cast<ArrayType>(Ty);
177 return AT && (AT->getNumElements() == 0);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
token.h 62 #define AT 50
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
token.py 61 AT = 50
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
token.h 62 #define AT 50
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
token.py 59 AT = 50
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
token.py 63 AT = 50
  /external/libcxx/test/support/
test_allocator.h 27 typedef std::allocator_traits<Alloc> AT;
28 return AT::max_size(a);
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 41 AT = ArrayType::get(Type::getInt8PtrTy(Ctx), 3);
43 GV = new GlobalVariable(*M.get(), AT, false /*=isConstant*/,
59 GV->setInitializer(ConstantArray::get(AT, Init));
67 ArrayType *AT;
86 Value *GEP = Builder.CreateGEP(AT, GV, GEPIndices, "switch.gep");
113 ArrayType *AT = ArrayType::get(Type::getInt8PtrTy(Ctx), 3);
114 EXPECT_EQ(AT, Init->getType());
  /external/python/cpython2/Include/
token.h 62 #define AT 50
  /external/python/cpython2/Lib/lib2to3/pgen2/
token.py 59 AT = 50
  /external/python/cpython2/Lib/
token.py 61 AT = 50
  /external/python/cpython3/Include/
token.h 61 #define AT 49
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 374 // at the pointer and has infinite size.
432 ArrayType *AT = ArrayType::get(V->getType(), ArraySize);
433 return ConstantArray::get(AT, std::vector<Constant*>(ArraySize, C));
536 << " from store to: " << *Ev << " at: " << *TheStore << "\n");
625 << " from load ptr=" << *LoadEv << " at: " << *LI << "\n"
626 << " from store ptr=" << *StoreEv << " at: " << *SI << "\n");
  /external/tcpdump/
print-atalk.c 166 ND_PRINT((ndo, "%d > %d at-lap#%d %u",
186 ND_PRINT((ndo, "AT "));
215 #define AT(member) ataddr_string(ndo, (ap->member[1]<<8)|ap->member[2],ap->member[3])
234 ND_PRINT((ndo, "who-has %s tell %s", AT(pdaddr), AT(psaddr)));
238 ND_PRINT((ndo, "reply %s is-at %s", AT(psaddr), etheraddr_string(ndo, ap->hsaddr)));
242 ND_PRINT((ndo, "probe %s tell %s", AT(pdaddr), AT(psaddr)));
274 ND_PRINT((ndo, " at-%s %d", tok2str(type2str, NULL, t), length))
    [all...]

Completed in 2291 milliseconds

1 2 3 4 5 6 7 8 9