Home
last modified time | relevance | path

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

12345678910>>...12

/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();
33 f2(^(Sub *o) { }); // expected-error {{incompatible block pointer types passing}} category
34 f3(^(Super *o) { }); // OK, block taking Super* may be called with a Sub*
37 r0(^Sub* () { return 0; }); // OK, variable of type Super* gets return value of type Sub* category
41 r1(^Sub* () { return 0; }); // OK category
Dnowarn-superclass-method-mismatch.m12 @interface Sub : Super interface
15 @implementation Sub implementation
/external/clang/test/SemaCXX/
Dpragma-pack.cpp11 struct Sub : public Base { struct
16 int check[sizeof(Sub) == 5 ? 1 : -1];
28 struct Sub : virtual Base { struct
33 int check[sizeof(Sub) == 13 ? 1 : -1];
/external/clang/test/Rewriter/
Dobjc-modern-class-init.mm10 @interface Sub : Super interface
13 @implementation Sub @end implementation
19 @interface Sub(Cat) @end interface in Cat
23 @implementation Sub(Cat) @end implementation in Cat
Dobjc-modern-class-init-hooks.mm10 @interface Sub : Super interface
13 @implementation Sub @end implementation
19 @interface Sub(Cat) @end interface in Cat
23 @implementation Sub(Cat) @end implementation in Cat
/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];
/external/llvm/lib/MC/MCDisassembler/
DMCExternalSymbolizer.cpp97 const MCExpr *Sub = nullptr; in tryAddingSymbolicOperand() local
102 Sub = MCSymbolRefExpr::Create(Sym, Ctx); in tryAddingSymbolicOperand()
104 Sub = MCConstantExpr::Create((int)SymbolicOp.SubtractSymbol.Value, Ctx); in tryAddingSymbolicOperand()
113 if (Sub) { in tryAddingSymbolicOperand()
116 LHS = MCBinaryExpr::CreateSub(Add, Sub, Ctx); in tryAddingSymbolicOperand()
118 LHS = MCUnaryExpr::CreateMinus(Sub, Ctx); in tryAddingSymbolicOperand()
/external/v8/test/mjsunit/
Dfast-prototype.js37 function Sub() { class
50 (new Sub()).__proto__ = proto;
52 Sub.prototype = proto;
54 new Sub();
/external/clang/test/Index/Inputs/
Dt2.m4 Sub *sub;
7 [Sub my_method:x];
10 @implementation Sub implementation
/external/llvm/lib/Target/AArch64/Disassembler/
DAArch64ExternalSymbolizer.cpp179 const MCExpr *Sub = nullptr; in tryAddingSymbolicOperand() local
184 Sub = MCSymbolRefExpr::Create(Sym, Ctx); in tryAddingSymbolicOperand()
186 Sub = MCConstantExpr::Create(SymbolicOp.SubtractSymbol.Value, Ctx); in tryAddingSymbolicOperand()
195 if (Sub) { in tryAddingSymbolicOperand()
198 LHS = MCBinaryExpr::CreateSub(Add, Sub, Ctx); in tryAddingSymbolicOperand()
200 LHS = MCUnaryExpr::CreateMinus(Sub, Ctx); in tryAddingSymbolicOperand()
/external/skia/src/gpu/gl/
DGrGLSL_impl.h55 inline Self GrGLSLExpr<Self>::Sub(T0 in0, T1 in1) { in Sub() function
108 return GrGLSLExpr1::Sub(in0, in1);
148 return GrGLSLExpr4::Sub(in0, in1);
160 return GrGLSLExpr4::Sub(in0, in1);
172 return GrGLSLExpr4::Sub(in0, in1);
/external/llvm/examples/Fibonacci/
Dfibonacci.cpp70 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); in CreateFibFunction() local
71 CallInst *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB); in CreateFibFunction()
75 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); in CreateFibFunction()
76 CallInst *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB); in CreateFibFunction()
/external/llvm/lib/Target/Hexagon/
DHexagonExpandCondsets.cpp119 Sub(Op.getSubReg()) {} in RegisterRef()
120 RegisterRef(unsigned R = 0, unsigned S = 0) : Reg(R), Sub(S) {} in RegisterRef()
122 return Reg == RR.Reg && Sub == RR.Sub; in operator ==()
125 unsigned Reg, Sub; member
131 unsigned getMaskForSub(unsigned Sub);
181 unsigned HexagonExpandCondsets::getMaskForSub(unsigned Sub) { in getMaskForSub() argument
182 switch (Sub) { in getMaskForSub()
211 unsigned Mask = getMaskForSub(RR.Sub) | Exec; in addRefToMap()
225 unsigned Mask = getMaskForSub(RR.Sub) | Exec; in isRefInMap()
465 ImpUse.setSubReg(Defs[i].Sub); in addInstrToLiveness()
[all …]
DHexagonFixupHwLoops.cpp137 int Sub = InstOffset - BlockToInstOffset[MII->getOperand(0).getMBB()]; in fixupLoopInstrs() local
138 unsigned Dist = Sub > 0 ? Sub : -Sub; in fixupLoopInstrs()
/external/guava/guava-testlib/test/com/google/common/testing/anotherpackage/
DForwardingWrapperTesterTest.java382 new ForwardingWrapperTester().testForwarding(Sub.class, new Function<Sub, Sub>() { in testCovariantReturn()
383 @Override public Sub apply(Sub sub) { in testCovariantReturn()
393 interface Sub extends Base { interface in ForwardingWrapperTesterTest
397 private static class ForwardingSub implements Sub {
398 private final Sub delegate;
400 ForwardingSub(Sub delegate) { in ForwardingSub()
/external/clang/test/Index/
Dcomplete-ivar-access.m31 @interface Sub : Super { interface
41 @implementation Sub implementation in Sub
42 - (void)method:(Sub *)sub with:(Other *)other { argument
47 void f(Sub *sub, Other *other) { category
Dcursor-ref-names.cpp7 struct Sub: public Base<int> { struct
17 Sub inst; in main()
Dcomplete-member-access.m25 @interface Sub : Int interface
33 int test_more_props(Sub *s) {
38 @property Sub *sub;
70 // CHECK-CC3-NEXT: Container USR: c:objc(cs)Sub
Dindex-module.m41 …le]: [[TMODHDR:.*/Modules/Inputs/Module.framework[/\\]Headers.]]Sub.h | name: "Module/Sub.h" | has…
42 …dedFile]: [[TMODHDR]]Sub2.h | name: "Module/Sub2.h" | hash loc: [[TMODHDR]]Sub.h:1:1 | isImport: 0…
50 …]: [[PCM:.*\.cache/Module\.pcm]] | loc: [[TMOD_MODULE_H]]:23:2 | name: "Module.Sub" | isImplicit: 1
57 // CHECK-TMOD-NEXT: [importedASTFile]: [[PCM]] | loc: [[TMODHDR]]Sub.h:1:2 | name: "Module.Sub2" | …
58 …OD-NEXT: [indexDeclaration]: kind: variable | name: Module_Sub | {{.*}} | loc: [[TMODHDR]]Sub.h:2:6
/external/llvm/unittests/Transforms/Utils/
DCloning.cpp65 BinaryOperator *Sub = BinaryOperator::Create(Instruction::Sub, V, V); in TEST_F() local
69 BinaryOperator *SubClone = this->clone(Sub); in TEST_F()
82 Sub->setHasNoUnsignedWrap(); in TEST_F()
86 SubClone = this->clone(Sub); in TEST_F()
99 Sub->setHasNoSignedWrap(); in TEST_F()
103 SubClone = this->clone(Sub); in TEST_F()
116 Sub->setHasNoUnsignedWrap(false); in TEST_F()
120 SubClone = this->clone(Sub); in TEST_F()
/external/clang/test/Modules/Inputs/HasSubModules.framework/Headers/
DHasSubModules.h1 #import <Sub/Sub.h>
/external/v8/src/arm64/
Dregexp-macro-assembler-arm64.cc302 __ Sub(capture_length, w11, capture_start_offset); // Length to check. in CheckNotBackReferenceIgnoreCase() local
341 __ Sub(w10, w10, 'a'); in CheckNotBackReferenceIgnoreCase() local
345 __ Sub(w10, w10, 224 - 'a'); in CheckNotBackReferenceIgnoreCase() local
360 __ Sub(current_input_offset().X(), current_position_address, input_end()); in CheckNotBackReferenceIgnoreCase() local
431 __ Sub(capture_length, w11, w10); // Length to check. in CheckNotBackReference() local
464 __ Sub(current_input_offset().X(), current_position_address, input_end()); in CheckNotBackReference() local
503 __ Sub(w10, current_character(), minus); in CheckNotCharacterAfterMinusAnd() local
513 __ Sub(w10, current_character(), from); in CheckCharacterInRange() local
523 __ Sub(w10, current_character(), from); in CheckCharacterNotInRange() local
559 __ Sub(w10, current_character(), '\t'); in CheckSpecialCharacterClass() local
[all …]
/external/clang/test/Modules/
Dmethod_pool.m44 @import MethodPoolB.Sub;
47 char *str = [object method3]; // okay: only found in MethodPoolB.Sub
54 @import MethodPoolA.Sub;
/external/llvm/lib/Target/X86/
DX86TargetObjectFile.cpp79 const SubOperator *Sub = dyn_cast<SubOperator>(CE); in getExecutableRelativeSymbol() local
80 if (!Sub) in getExecutableRelativeSymbol()
86 dyn_cast<PtrToIntOperator>(Sub->getOperand(0)); in getExecutableRelativeSymbol()
88 dyn_cast<PtrToIntOperator>(Sub->getOperand(1)); in getExecutableRelativeSymbol()

12345678910>>...12