/external/clang/test/CodeCompletion/ |
D | objc-expr.m | 7 …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/ |
D | Amps and angle encoding.text | 1 AT&T has an ampersand in their name. 3 AT&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/ |
D | amps-and-angle-encoding.txt | 1 AT&T has an ampersand in their name. 3 AT&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/ |
D | Amps and angle encoding.text | 1 AT&T has an ampersand in their name. 3 AT&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/ |
D | ms-x86-alias-avoidance-padding.cpp | 9 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 {
|
D | ms-x86-vtordisp.cpp | 151 struct AT { struct 152 virtual ~AT(){} in ~AT() argument 154 struct CT : virtual AT {
|
/external/llvm/unittests/Linker/ |
D | LinkModulesTest.cpp | 38 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/ |
D | ScalarReplAggregates.cpp | 64 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/ |
D | print-atalk.c | 196 #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/ |
D | MipsLongBranch.cpp | 317 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/ |
D | ModuleUtils.cpp | 64 ArrayType *AT = ArrayType::get(EltTy, CurrentCtors.size()); in appendToGlobalArray() local 65 Constant *NewInit = ConstantArray::get(AT, CurrentCtors); in appendToGlobalArray()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | MallocSizeofChecker.cpp | 166 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/ |
D | MacroArgs.cpp | 161 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/ |
D | XCoreLowerThreadLocal.cpp | 176 ArrayType *AT = dyn_cast<ArrayType>(Ty); in isZeroLengthArray() local 177 return AT && (AT->getNumElements() == 0); in isZeroLengthArray()
|
/external/markdown/tests/misc/ |
D | ampersand.txt | 3 AT&T
|
/external/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 413 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/ |
D | TokenTypes.java | 176 public static final int AT = LexerCore.AT; field
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 2150 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/ |
D | StackProtector.cpp | 113 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/ |
D | configure.in | 2 AC_INIT(fdlibm,5.3,[FDLIBM COMMENTS <fdlibm-comments AT sun.com>])
|
/external/nist-sip/java/gov/nist/core/ |
D | Separators.java | 49 public static final String AT = "@"; field
|
/external/icu/icu4c/source/data/region/ |
D | ps.txt | 15 AT{"اتریش"}
|
/external/icu/icu4c/source/data/zone/ |
D | es_US.txt | 45 sg{"AT"}
|
D | en_CA.txt | 45 sg{"AT"}
|
D | chr.txt | 56 sg{"AT"}
|