Home
last modified time | relevance | path

Searched refs:Sub (Results 1 – 25 of 120) sorted by relevance

12345

/external/clang/test/SemaObjC/
Dwarn-superclass-method-mismatch.m7 @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 …]
Dblock-type-safety.m5 @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
Divar-sem-check-2.m11 @interface Sub : Super interface
17 @implementation Sub implementation
/external/llvm/unittests/Transforms/Utils/
DCloning.cpp55 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/
Dpragma-pack.cpp10 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/
Dpragma-pack.cpp9 struct Sub : virtual Base { struct
14 void f(Sub*) { } in f() argument
16 static int i[sizeof(Sub) == 13 ? 1 : -1];
Dapple-kext-indirect-call-2.C67 struct Sub : D1, D2 { struct
72 void FUNC3(Sub* p) { in FUNC3()
/external/clang/test/Index/Inputs/
Dt2.m4 Sub *sub;
7 [Sub my_method:x];
10 @implementation Sub implementation
Dobjc.h9 @interface Sub : Base
/external/llvm/lib/Transforms/Scalar/
DReassociate.cpp470 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/
Dfibonacci.cpp71 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/
DSuperSubclassSameName.td14 class Sub<Arg F> : Super<F>;
15 def inst : Sub<TheArg>;
/external/llvm/examples/ParallelJIT/
DParallelJIT.cpp98 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/
Dobjc2-weak-import-attribute.m42 @interface Sub : Super @end interface
44 @implementation Sub @end implementation
Ddefault-property-synthesis.m28 @interface Sub : Super <PROTO1> interface
36 @implementation Sub implementation
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp149 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/
Dcomplete-member-access.m25 @interface Sub : Int interface
33 int test_more_props(Sub *s) {
/external/llvm/include/llvm/
DOperator.h108 I->getOpcode() == Instruction::Sub || in classof()
114 CE->getOpcode() == Instruction::Sub || in classof()
193 : public ConcreteOperator<OverflowingBinaryOperator, Instruction::Sub> {
/external/llvm/utils/TableGen/
DSetTheory.cpp41 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/
Dvisual-basic.txt93 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/
DRenderMathMLSubSup.cpp55 m_kind = Sub; in RenderMathMLSubSup()
200 case Sub: in baselinePosition()
DRenderMathMLSubSup.h50 enum SubSupType { Sub, Sup, SubSup }; enumerator
/external/clang/lib/Lex/
DPPDirectives.cpp295 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++/
D2008-10-29-WrongOffset.cpp38 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/
DRELNOTES-6.231 etc. The important functions like glRead/DrawPixels, glTex[Sub]Image,

12345