/external/clang/test/Modules/Inputs/HasSubModules.framework/Headers/ |
H A D | HasSubModules.h | 1 #import <Sub/Sub.h>
|
/external/clang/test/Modules/Inputs/HasSubModules.framework/Frameworks/Sub.framework/Headers/ |
H A D | Sub.h | 1 #include <Sub/Types.h>
|
/external/clang/test/Modules/Inputs/HasSubModules.framework/Frameworks/Sub.framework/PrivateHeaders/ |
H A D | SubPriv.h | 1 #include <Sub/Types.h> 3 // HasSubModules.framework/Frameworks/Sub.framework/Headers/Sub.h
|
/external/clang/test/Modules/Inputs/HasSubModules.framework/PrivateHeaders/ |
H A D | HasSubModulesPriv.h | 1 #import <Sub/SubPriv.h>
|
/external/clang/test/CodeGenCXX/ |
H A D | pragma-pack.cpp | 9 struct Sub : virtual Base { struct in inherits:Base 13 // CHECK: %struct.Sub = type <{ i32 (...)**, i8, %struct.Base }> 14 void f(Sub*) { } 16 static int i[sizeof(Sub) == 13 ? 1 : -1];
|
H A D | apple-kext-indirect-call-2.cpp | 67 struct Sub : D1, D2 { struct in inherits:D1,D2 72 void FUNC3(Sub* p) {
|
/external/clang/test/Index/ |
H A D | index-suppress-refs.cpp | 4 class Sub : B1, B2 { class in inherits:B1,B2 10 // CHECK: [indexDeclaration]: kind: c++-class | name: Sub
|
H A D | cursor-ref-names.cpp | 7 struct Sub: public Base<int> { struct in inherits:Base 17 Sub inst; 31 // CHECK: cursor-ref-names.cpp:17:5: TypeRef=struct Sub:7:8 Extent=[17:5 - 17:8] 32 // CHECK: cursor-ref-names.cpp:17:9: CallExpr=Sub:7:8 Extent=[17:9 - 17:13]
|
H A D | complete-member-access.m | 25 @interface Sub : Int 33 int test_more_props(Sub *s) { 38 @property Sub *sub; 70 // CHECK-CC3-NEXT: Container USR: c:objc(cs)Sub
|
/external/clang/test/Modules/Inputs/ |
H A D | MethodPoolASub.h | 1 @interface A (Sub)
|
H A D | MethodPoolBSub.h | 1 @interface B (Sub)
|
/external/clang/test/SemaCXX/ |
H A D | pragma-pack.cpp | 11 struct Sub : public Base { struct in namespace:rdar8745206 16 int check[sizeof(Sub) == 5 ? 1 : -1]; 28 struct Sub : virtual Base { struct in namespace:check2 33 int check[sizeof(Sub) == 13 ? 1 : -1];
|
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/ |
H A D | Sub.java | 14 public class Sub implements IExpression { class in inherits:IExpression 20 public Sub(final IExpression l, final IExpression r) { method in class:Sub
|
/external/clang/test/Index/Inputs/ |
H A D | objc.h | 9 @interface Sub : Base
|
/external/guice/core/test/com/google/inject/ |
H A D | SuperclassTest.java | 33 Provider<Sub> creator = injector.getProvider(Sub.class); 34 Sub sub = creator.get(); 52 static class Sub extends Super { class in class:SuperclassTest
|
/external/clang/test/ARCMT/Inputs/Module.framework/Headers/ |
H A D | Module.h | 23 #include <Module/Sub.h>
|
/external/v8/test/mjsunit/ |
H A D | fast-prototype.js | 37 function Sub() { function 51 receiver = new Sub(); 54 Sub.prototype = proto; 55 // Need to instantiate Sub to mark .prototype as prototype. Make sure the 57 receiver = new Sub(); 53 Sub.prototype = proto; class
|
/external/clang/test/Modules/Inputs/Module.framework/Headers/ |
H A D | Module.h | 23 #include <Module/Sub.h>
|
/external/llvm/lib/MC/MCDisassembler/ |
H A D | MCExternalSymbolizer.cpp | 101 const MCExpr *Sub = nullptr; local 106 Sub = MCSymbolRefExpr::create(Sym, Ctx); 108 Sub = MCConstantExpr::create((int)SymbolicOp.SubtractSymbol.Value, Ctx); 117 if (Sub) { 120 LHS = MCBinaryExpr::createSub(Add, Sub, Ctx); 122 LHS = MCUnaryExpr::createMinus(Sub, Ctx);
|
/external/llvm/examples/Fibonacci/ |
H A D | fibonacci.cpp | 71 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); local 72 CallInst *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB); 76 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); 77 CallInst *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
|
/external/testng/src/test/java/test/tmp/ |
H A D | Sub.java | 8 public class Sub extends Base { class in inherits:Base
|
/external/skia/src/gpu/glsl/ |
H A D | GrGLSL_impl.h | 55 inline Self GrGLSLExpr<Self>::Sub(T0 in0, T1 in1) { function in class:GrGLSLExpr 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/test/MC/Mips/ |
H A D | micromips-multiply-instructions.s | 6 # for Multiply Add/Sub instructions. 8 # Multiply Add/Sub Instructions
|
/external/vixl/examples/ |
H A D | factorial.cc | 46 __ Sub(x1, x1, 1);
|
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/ |
H A D | ExpressionParser.java | 26 import org.jacoco.examples.expressions.Sub; 55 e = new Sub(e, product());
|