Searched refs:Sub (Results 1 - 25 of 145) sorted by relevance

123456

/external/clang/test/Modules/Inputs/HasSubModules.framework/Headers/
H A DHasSubModules.h1 #import <Sub/Sub.h>
/external/clang/test/Modules/Inputs/HasSubModules.framework/Frameworks/Sub.framework/Headers/
H A DSub.h1 #include <Sub/Types.h>
/external/clang/test/Modules/Inputs/HasSubModules.framework/Frameworks/Sub.framework/PrivateHeaders/
H A DSubPriv.h1 #include <Sub/Types.h>
3 // HasSubModules.framework/Frameworks/Sub.framework/Headers/Sub.h
/external/clang/test/Modules/Inputs/HasSubModules.framework/PrivateHeaders/
H A DHasSubModulesPriv.h1 #import <Sub/SubPriv.h>
/external/clang/test/CodeGenCXX/
H A Dpragma-pack.cpp9 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 Dapple-kext-indirect-call-2.C67 struct Sub : D1, D2 { struct in inherits:D1,D2
72 void FUNC3(Sub* p) {
/external/clang/test/Index/
H A Dindex-suppress-refs.cpp4 class Sub : B1, B2 { class in inherits:B1,B2
10 // CHECK: [indexDeclaration]: kind: c++-class | name: Sub
H A Dcursor-ref-names.cpp7 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 Dcomplete-member-access.m25 @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 DMethodPoolASub.h1 @interface A (Sub)
H A DMethodPoolBSub.h1 @interface B (Sub)
/external/clang/test/SemaCXX/
H A Dpragma-pack.cpp11 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/clang/test/Index/Inputs/
H A Dobjc.h9 @interface Sub : Base
/external/clang/test/Modules/Inputs/Module.framework/Headers/
H A DModule.h23 #include <Module/Sub.h>
/external/chromium-trace/trace-viewer/src/
H A Dui_test.js46 var Sub = ui.define('Sub', Base);
47 assertEquals('div::sub', Sub.toString());
49 var SubSub = ui.define('Marine', Sub);
63 var Sub = ui.define('Sub', Base);
64 Sub.prototype = {
71 var subInstance = new Sub();
72 assertTrue(subInstance instanceof Sub);
/external/chromium_org/v8/test/mjsunit/
H A Dfast-prototype.js40 function Sub() { function
53 (new Sub()).__proto__ = proto;
55 Sub.prototype = proto;
54 Sub.prototype = proto; class
/external/llvm/lib/MC/
H A DMCExternalSymbolizer.cpp81 const MCExpr *Sub = NULL; local
86 Sub = MCSymbolRefExpr::Create(Sym, Ctx);
88 Sub = MCConstantExpr::Create((int)SymbolicOp.SubtractSymbol.Value, Ctx);
97 if (Sub) {
100 LHS = MCBinaryExpr::CreateSub(Add, Sub, Ctx);
102 LHS = MCUnaryExpr::CreateMinus(Sub, Ctx);
/external/llvm/examples/Fibonacci/
H A Dfibonacci.cpp71 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/llvm/unittests/Transforms/Utils/
H A DCloning.cpp60 BinaryOperator *Sub = BinaryOperator::Create(Instruction::Sub, V, V); local
64 BinaryOperator *SubClone = this->clone(Sub);
77 Sub->setHasNoUnsignedWrap();
81 SubClone = this->clone(Sub);
94 Sub->setHasNoSignedWrap();
98 SubClone = this->clone(Sub);
111 Sub->setHasNoUnsignedWrap(false);
115 SubClone = this->clone(Sub);
H A DIntegerDivision.cpp49 EXPECT_TRUE(Quotient && Quotient->getOpcode() == Instruction::Sub);
109 EXPECT_TRUE(Remainder && Remainder->getOpcode() == Instruction::Sub);
139 EXPECT_TRUE(Remainder && Remainder->getOpcode() == Instruction::Sub);
/external/llvm/lib/Target/Hexagon/
H A DHexagonFixupHwLoops.cpp135 int Sub = InstOffset - BlockToInstOffset[MII->getOperand(0).getMBB()]; local
136 unsigned Dist = Sub > 0 ? Sub : -Sub;
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp98 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); local
99 Value *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB);
102 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
103 Value *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp903 static bool ShouldBreakUpSubtract(Instruction *Sub) { argument
905 if (BinaryOperator::isNeg(Sub))
910 if (isReassociableOp(Sub->getOperand(0), Instruction::Add) ||
911 isReassociableOp(Sub->getOperand(0), Instruction::Sub))
913 if (isReassociableOp(Sub->getOperand(1), Instruction::Add) ||
914 isReassociableOp(Sub->getOperand(1), Instruction::Sub))
916 if (Sub->hasOneUse() &&
917 (isReassociableOp(Sub
927 BreakUpSubtract(Instruction *Sub) argument
[all...]
/external/clang/lib/Basic/
H A DModule.cpp167 for (submodule_iterator Sub = Current->submodule_begin(),
169 Sub != SubEnd; ++Sub) {
170 if ((*Sub)->IsAvailable)
171 Stack.push_back(*Sub);
/external/llvm/include/llvm/IR/
H A DOperator.h76 /// which may exhibit overflow - Add, Sub, and Mul. It does not include SDiv,
113 I->getOpcode() == Instruction::Sub ||
119 CE->getOpcode() == Instruction::Sub ||
332 : public ConcreteOperator<OverflowingBinaryOperator, Instruction::Sub> {

Completed in 2622 milliseconds

123456