Home
last modified time | relevance | path

Searched refs:AT (Results 1 – 25 of 386) sorted by relevance

12345678910>>...16

/external/clang/test/CodeCompletion/
Dobjc-expr.m7 …tterns -code-completion-at=%s:4:11 %s -fno-const-strings -o - | FileCheck -check-prefix=CHECK-AT %s
8 // CHECK-AT: COMPLETION: Pattern : [#NSString *#]"<#string#>"
9 // CHECK-AT: COMPLETION: Pattern : [#id#](<#expression#>)
10 // CHECK-AT: COMPLETION: Pattern : [#NSArray *#][<#objects, ...#>]
11 // CHECK-AT: COMPLETION: Pattern : [#char[]#]encode(<#type-name#>)
12 // CHECK-AT: COMPLETION: Pattern : [#Protocol *#]protocol(<#protocol-name#>)
13 // CHECK-AT: COMPLETION: Pattern : [#SEL#]selector(<#selector#>)
14 // CHECK-AT: COMPLETION: Pattern : [#NSDictionary *#]{<#key#>: <#object, ...#>}
/external/markdown/MarkdownTest/Tests_2007/
DAmps and angle encoding.text1 AT&T has an ampersand in their name.
3 AT&amp;T is another way to write it.
13 Here's a link with an amersand in the link text: [AT&T] [2].
21 [2]: http://att.com/ "AT&T"
/external/markdown/tests/markdown-test/
Damps-and-angle-encoding.txt1 AT&T has an ampersand in their name.
3 AT&amp;T is another way to write it.
13 Here's a link with an amersand in the link text: [AT&T] [2].
21 [2]: http://att.com/ "AT&T"
/external/markdown/MarkdownTest/Tests_2004/
DAmps and angle encoding.text1 AT&T has an ampersand in their name.
3 AT&amp;T is another way to write it.
13 Here's a link with an amersand in the link text: [AT&T] [2].
21 [2]: http://att.com/ "AT&T"
/external/clang/test/Layout/
Dms-x86-alias-avoidance-padding.cpp9 struct AT {}; struct
11 struct V : AT {
19 union { struct { int a; AT t; } y; int b; } x;
140 struct T0 : AT {
154 struct T2 : AT {
Dms-x86-vtordisp.cpp151 struct AT { struct
152 virtual ~AT(){} in ~AT() argument
154 struct CT : virtual AT {
/external/llvm/unittests/Linker/
DLinkModulesTest.cpp38 AT = ArrayType::get(Type::getInt8PtrTy(Ctx), 3); in SetUp()
40 GV = new GlobalVariable(*M.get(), AT, false /*=isConstant*/, in SetUp()
56 GV->setInitializer(ConstantArray::get(AT, Init)); in SetUp()
64 ArrayType *AT; member in __anon07c71d090111::LinkModuleTest
79 Value *GEP = Builder.CreateGEP(AT, GV, GEPIndices, "switch.gep"); in TEST_F()
108 ArrayType *AT = ArrayType::get(Type::getInt8PtrTy(Ctx), 3); in TEST_F() local
109 EXPECT_EQ(AT, Init->getType()); in TEST_F()
/external/llvm/lib/Transforms/Scalar/
DScalarReplAggregates.cpp64 SROA(int T, bool hasDT, char &ID, int ST, int AT, int SLT) in SROA()
74 if (AT == -1) in SROA()
77 ArrayElementThreshold = AT; in SROA()
193 SROA_DT(int T = -1, int ST = -1, int AT = -1, int SLT = -1) : in SROA_DT()
194 SROA(T, true, ID, ST, AT, SLT) { in SROA_DT()
211 SROA_SSAUp(int T = -1, int ST = -1, int AT = -1, int SLT = -1) : in SROA_SSAUp()
212 SROA(T, false, ID, ST, AT, SLT) { in SROA_SSAUp()
825 if (ArrayType *AT = dyn_cast<ArrayType>(ToType)) { in ConvertScalar_ExtractValue() local
828 uint64_t EltSize = DL.getTypeAllocSizeInBits(AT->getElementType()); in ConvertScalar_ExtractValue()
829 Value *Res = UndefValue::get(AT); in ConvertScalar_ExtractValue()
[all …]
/external/tcpdump/
Dprint-atalk.c196 #define AT(member) ataddr_string((ap->member[1]<<8)|ap->member[2],ap->member[3]) in aarp_print() macro
207 AT(pdaddr), AT(psaddr)); in aarp_print()
212 AT(psaddr), etheraddr_string(ap->hsaddr)); in aarp_print()
217 AT(pdaddr), AT(psaddr)); in aarp_print()
/external/llvm/lib/Target/Mips/
DMipsLongBranch.cpp317 BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_LUi), Mips::AT) in expandToLongBranch()
321 .append(BuildMI(*MF, DL, TII->get(Mips::LONG_BRANCH_ADDiu), Mips::AT) in expandToLongBranch()
322 .addReg(Mips::AT) in expandToLongBranch()
328 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDu), Mips::AT) in expandToLongBranch()
329 .addReg(Mips::RA).addReg(Mips::AT); in expandToLongBranch()
335 .append(BuildMI(*MF, DL, TII->get(Mips::JR)).addReg(Mips::AT)) in expandToLongBranch()
344 .append(BuildMI(*MF, DL, TII->get(Mips::JR)).addReg(Mips::AT)) in expandToLongBranch()
/external/llvm/lib/Transforms/Utils/
DModuleUtils.cpp64 ArrayType *AT = ArrayType::get(EltTy, CurrentCtors.size()); in appendToGlobalArray() local
65 Constant *NewInit = ConstantArray::get(AT, CurrentCtors); in appendToGlobalArray()
/external/clang/lib/StaticAnalyzer/Checkers/
DMallocSizeofChecker.cpp166 while (const ArrayType *AT = T->getAsArrayTypeUnsafe()) { in compatibleWithArrayType() local
167 QualType ElemType = AT->getElementType(); in compatibleWithArrayType()
168 if (typesCompatible(C, PT, AT->getElementType())) in compatibleWithArrayType()
/external/clang/lib/Lex/
DMacroArgs.cpp161 const Token *AT = getUnexpArgument(Arg); in getPreExpArgument() local
162 unsigned NumToks = getArgLength(AT)+1; // Include the EOF. in getPreExpArgument()
168 PP.EnterTokenStream(AT, NumToks, false /*disable expand*/, in getPreExpArgument()
/external/llvm/lib/Target/XCore/
DXCoreLowerThreadLocal.cpp176 ArrayType *AT = dyn_cast<ArrayType>(Ty); in isZeroLengthArray() local
177 return AT && (AT->getNumElements() == 0); in isZeroLengthArray()
/external/markdown/tests/misc/
Dampersand.txt3 AT&T
/external/clang/lib/Sema/
DJumpDiagnostics.cpp413 if (ObjCAtTryStmt *AT = dyn_cast<ObjCAtTryStmt>(SubStmt)) { in BuildScopeInformation() local
419 AT->getAtTryLoc())); in BuildScopeInformation()
420 if (Stmt *TryPart = AT->getTryBody()) in BuildScopeInformation()
424 for (unsigned I = 0, N = AT->getNumCatchStmts(); I != N; ++I) { in BuildScopeInformation()
425 ObjCAtCatchStmt *AC = AT->getCatchStmt(I); in BuildScopeInformation()
436 if (ObjCAtFinallyStmt *AF = AT->getFinallyStmt()) { in BuildScopeInformation()
/external/nist-sip/java/gov/nist/javax/sip/parser/
DTokenTypes.java176 public static final int AT = LexerCore.AT; field
/external/clang/lib/AST/
DASTContext.cpp2150 if (auto *AT = dyn_cast<AttributedType>(Orig)) in getFunctionTypeWithExceptionSpec() local
2152 AT->getAttrKind(), in getFunctionTypeWithExceptionSpec()
2153 getFunctionTypeWithExceptionSpec(Context, AT->getModifiedType(), ESI), in getFunctionTypeWithExceptionSpec()
2154 getFunctionTypeWithExceptionSpec(Context, AT->getEquivalentType(), in getFunctionTypeWithExceptionSpec()
2253 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getAdjustedType() local
2254 if (AT) in getAdjustedType()
2255 return QualType(AT, 0); in getAdjustedType()
2260 AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getAdjustedType()
2261 assert(!AT && "Shouldn't be in the map!"); in getAdjustedType()
2263 AT = new (*this, TypeAlignment) in getAdjustedType()
[all …]
/external/llvm/lib/CodeGen/
DStackProtector.cpp113 if (ArrayType *AT = dyn_cast<ArrayType>(Ty)) { in ContainsProtectableArray() local
114 if (!AT->getElementType()->isIntegerTy(8)) { in ContainsProtectableArray()
125 if (SSPBufferSize <= TLI->getDataLayout()->getTypeAllocSize(AT)) { in ContainsProtectableArray()
/external/fdlibm/
Dconfigure.in2 AC_INIT(fdlibm,5.3,[FDLIBM COMMENTS <fdlibm-comments AT sun.com>])
/external/nist-sip/java/gov/nist/core/
DSeparators.java49 public static final String AT = "@"; field
/external/icu/icu4c/source/data/region/
Dps.txt15 AT{"اتریش"}
/external/icu/icu4c/source/data/zone/
Des_US.txt45 sg{"AT"}
Den_CA.txt45 sg{"AT"}
Dchr.txt56 sg{"AT"}

12345678910>>...16