/external/clang/test/SemaObjC/ |
D | warn-superclass-method-mismatch.m | 7 @class Sub; 12 -(void) method2: (Sub*) x; // expected-note{{passing argument to parameter 'x' here}} argument 23 @interface Sub : Base interface 25 -(void) method1: (Sub*) x; // expected-warning {{method parameter type 'Sub *' does not match super… argument 27 + method3: (int)x1 : (Sub *)x2 : (float)x3; // expected-warning {{method parameter type 'Sub *' doe… 29 -(void) method_r: (char)ch : (float*)f1 : (Sub*) x; // expected-warning {{method parameter type 'Su… argument 34 void f(Base *base, Sub *sub) { 36 …[base method:&x]; // warn. if base is actually 'Sub' it will use -[Sub method] with wrong argumen… 39 [base method1:b]; // if base is actuall 'Sub' it will use [Sub method1] with wrong argument. 43 Sub *s; [all …]
|
D | block-type-safety.m | 5 @interface Sub : Super @end interface 12 void f3(void(^f)(Sub *)) { 13 Sub *o; 21 void r1(Sub* (^f)()) { // expected-note{{passing argument to parameter 'f' here}} 22 Sub *o = f(); 32 f2(^(Sub *o) { }); // expected-error {{incompatible block pointer types passing}} category 33 f3(^(Super *o) { }); // OK, block taking Super* may be called with a Sub* 36 r0(^Sub* () { return 0; }); // OK, variable of type Super* gets return value of type Sub* category 40 r1(^Sub* () { return 0; }); // OK category
|
D | ivar-sem-check-2.m | 11 @interface Sub : Super interface 17 @implementation Sub implementation
|
/external/llvm/unittests/Transforms/Utils/ |
D | Cloning.cpp | 55 BinaryOperator *Sub = BinaryOperator::Create(Instruction::Sub, V, V); in TEST_F() local 59 BinaryOperator *SubClone = this->clone(Sub); in TEST_F() 72 Sub->setHasNoUnsignedWrap(); in TEST_F() 76 SubClone = this->clone(Sub); in TEST_F() 89 Sub->setHasNoSignedWrap(); in TEST_F() 93 SubClone = this->clone(Sub); in TEST_F() 106 Sub->setHasNoUnsignedWrap(false); in TEST_F() 110 SubClone = this->clone(Sub); in TEST_F()
|
/external/clang/test/SemaCXX/ |
D | pragma-pack.cpp | 10 struct Sub : public Base { struct 15 int check[sizeof(Sub) == 5 ? 1 : -1]; 27 struct Sub : virtual Base { struct 32 int check[sizeof(Sub) == 13 ? 1 : -1];
|
/external/clang/test/CodeGenCXX/ |
D | pragma-pack.cpp | 9 struct Sub : virtual Base { struct 14 void f(Sub*) { } in f() argument 16 static int i[sizeof(Sub) == 13 ? 1 : -1];
|
D | apple-kext-indirect-call-2.C | 67 struct Sub : D1, D2 { struct 72 void FUNC3(Sub* p) { in FUNC3()
|
/external/clang/test/Index/Inputs/ |
D | t2.m | 4 Sub *sub; 7 [Sub my_method:x]; 10 @implementation Sub implementation
|
D | objc.h | 9 @interface Sub : Base
|
/external/llvm/lib/Transforms/Scalar/ |
D | Reassociate.cpp | 470 static bool ShouldBreakUpSubtract(Instruction *Sub) { in ShouldBreakUpSubtract() argument 472 if (BinaryOperator::isNeg(Sub)) in ShouldBreakUpSubtract() 477 if (isReassociableOp(Sub->getOperand(0), Instruction::Add) || in ShouldBreakUpSubtract() 478 isReassociableOp(Sub->getOperand(0), Instruction::Sub)) in ShouldBreakUpSubtract() 480 if (isReassociableOp(Sub->getOperand(1), Instruction::Add) || in ShouldBreakUpSubtract() 481 isReassociableOp(Sub->getOperand(1), Instruction::Sub)) in ShouldBreakUpSubtract() 483 if (Sub->hasOneUse() && in ShouldBreakUpSubtract() 484 (isReassociableOp(Sub->use_back(), Instruction::Add) || in ShouldBreakUpSubtract() 485 isReassociableOp(Sub->use_back(), Instruction::Sub))) in ShouldBreakUpSubtract() 494 static Instruction *BreakUpSubtract(Instruction *Sub, in BreakUpSubtract() argument [all …]
|
/external/llvm/examples/Fibonacci/ |
D | fibonacci.cpp | 71 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); in CreateFibFunction() local 72 CallInst *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB); in CreateFibFunction() 76 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); in CreateFibFunction() 77 CallInst *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB); in CreateFibFunction()
|
/external/llvm/test/TableGen/ |
D | SuperSubclassSameName.td | 14 class Sub<Arg F> : Super<F>; 15 def inst : Sub<TheArg>;
|
/external/llvm/examples/ParallelJIT/ |
D | ParallelJIT.cpp | 98 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); in CreateFibFunction() local 99 Value *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB); in CreateFibFunction() 102 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); in CreateFibFunction() 103 Value *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB); in CreateFibFunction()
|
/external/clang/test/CodeGenObjC/ |
D | objc2-weak-import-attribute.m | 42 @interface Sub : Super @end interface 44 @implementation Sub @end implementation
|
D | default-property-synthesis.m | 28 @interface Sub : Super <PROTO1> interface 36 @implementation Sub implementation
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 149 Value *Sub = 0; in visitMul() local 151 Sub = Builder->CreateSub(X, Y, "suba"); in visitMul() 153 Sub = Builder->CreateSub(Builder->CreateNeg(C1), Y, "subc"); in visitMul() 154 if (Sub) in visitMul() 156 BinaryOperator::CreateMul(Sub, in visitMul() 528 if (SubOperator *Sub = dyn_cast<SubOperator>(Op0)) in visitSDiv() local 529 if (match(Sub->getOperand(0), m_Zero()) && Sub->hasNoSignedWrap()) in visitSDiv() 530 return BinaryOperator::CreateSDiv(Sub->getOperand(1), in visitSDiv()
|
/external/clang/test/Index/ |
D | complete-member-access.m | 25 @interface Sub : Int interface 33 int test_more_props(Sub *s) {
|
/external/llvm/include/llvm/ |
D | Operator.h | 108 I->getOpcode() == Instruction::Sub || in classof() 114 CE->getOpcode() == Instruction::Sub || in classof() 193 : public ConcreteOperator<OverflowingBinaryOperator, Instruction::Sub> {
|
/external/llvm/utils/TableGen/ |
D | SetTheory.cpp | 41 RecSet Add, Sub; in apply() local 43 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub); in apply() 45 if (!Sub.count(*I)) in apply()
|
/external/zlib/old/ |
D | visual-basic.txt | 93 Public Sub subCompressFile(ByVal strargOriFilPth As String, Optional ByVal 126 End Sub 128 Public Sub subUncompressFile(ByVal strargFilPth As String) 157 End Sub
|
/external/webkit/Source/WebCore/rendering/mathml/ |
D | RenderMathMLSubSup.cpp | 55 m_kind = Sub; in RenderMathMLSubSup() 200 case Sub: in baselinePosition()
|
D | RenderMathMLSubSup.h | 50 enum SubSupType { Sub, Sup, SubSup }; enumerator
|
/external/clang/lib/Lex/ |
D | PPDirectives.cpp | 295 llvm::StringRef Sub = Directive.substr(2); in SkipExcludedConditionalBlock() local 296 if (Sub.empty() || // "if" in SkipExcludedConditionalBlock() 297 Sub == "def" || // "ifdef" in SkipExcludedConditionalBlock() 298 Sub == "ndef") { // "ifndef" in SkipExcludedConditionalBlock() 310 llvm::StringRef Sub = Directive.substr(1); in SkipExcludedConditionalBlock() local 311 if (Sub == "ndif") { // "endif" in SkipExcludedConditionalBlock() 322 } else if (Sub == "lse") { // "else". in SkipExcludedConditionalBlock() 346 } else if (Sub == "lif") { // "elif". in SkipExcludedConditionalBlock()
|
/external/llvm/test/FrontendC++/ |
D | 2008-10-29-WrongOffset.cpp | 38 template < class Domain, class Sub > struct TemporaryNewDomain1 40 typedef typename NewDomain1 < Sub >::SliceType_t SliceType_t; 107 template < class Thing, class Sub > struct View1
|
/external/mesa3d/docs/ |
D | RELNOTES-6.2 | 31 etc. The important functions like glRead/DrawPixels, glTex[Sub]Image,
|