/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/ |
D | CombinedLexer.m | 4 * - From the grammar source file : Combined.g 40 // $ANTLR 3.2 Aug 24, 2010 10:45:57 Combined.g 2010-08-24 13:53:42 61 [ANTLRBaseRecognizer setGrammarFileName:@"Combined.g"]; 100 …// Combined.g:14:5: ( ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '… 101 …// Combined.g:14:9: ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_'… 121 // Combined.g: // alt 166 // Combined.g:17:5: ( ( '0' .. '9' )+ ) // ruleBlockSingleAlt 167 // Combined.g:17:9: ( '0' .. '9' )+ // alt 169 // Combined.g:17:9: ( '0' .. '9' )+ // positiveClosureBlock 181 // Combined.g:17:10: '0' .. '9' // alt [all …]
|
D | Combined__.gl | 1 lexer grammar Combined; 7 // $ANTLR src "Combined.g" 14 11 // $ANTLR src "Combined.g" 17 15 // $ANTLR src "Combined.g" 20
|
D | CombinedParser.m | 4 * - From the grammar source file : Combined.g 40 // $ANTLR 3.2 Aug 24, 2010 10:45:57 Combined.g 2010-08-24 13:53:42 114 * Combined.g:7:1: stat : ( identifier )+ ; 121 // Combined.g:7:5: ( ( identifier )+ ) // ruleBlockSingleAlt 122 // Combined.g:7:7: ( identifier )+ // alt 124 // Combined.g:7:7: ( identifier )+ // positiveClosureBlock 136 // Combined.g:7:7: identifier // alt 173 * Combined.g:9:1: identifier : ID ; 180 // Combined.g:10:5: ( ID ) // ruleBlockSingleAlt 181 // Combined.g:10:7: ID // alt
|
D | Combined.g | 1 grammar Combined;
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoadCombine.cpp | 121 bool Combined = false; in combineLoads() local 130 Combined = true; in combineLoads() 132 return Combined; in combineLoads() 143 bool Combined = false; in aggregateLoads() local 163 Combined = true; in aggregateLoads() 178 Combined = true; in aggregateLoads() 179 return Combined; in aggregateLoads() 248 bool Combined = false; in runOnBasicBlock() local 253 Combined = true; in runOnBasicBlock() 271 Combined = true; in runOnBasicBlock() [all …]
|
/external/autotest/ |
D | MODULE_LICENSE_LGPL | 20 other than an Application or a Combined Work as defined below. 27 A "Combined Work" is a work produced by combining or linking an 29 with which the Combined Work was made is also called the "Linked 32 The "Minimal Corresponding Source" for a Combined Work means the 33 Corresponding Source for the Combined Work, excluding any source code 34 for portions of the Combined Work that, considered in isolation, are 37 The "Corresponding Application Code" for a Combined Work means the 39 and utility programs needed for reproducing the Combined Work from the 40 Application, but excluding the System Libraries of the Combined Work. 79 4. Combined Works. [all …]
|
D | LGPL_LICENSE | 20 other than an Application or a Combined Work as defined below. 27 A "Combined Work" is a work produced by combining or linking an 29 with which the Combined Work was made is also called the "Linked 32 The "Minimal Corresponding Source" for a Combined Work means the 33 Corresponding Source for the Combined Work, excluding any source code 34 for portions of the Combined Work that, considered in isolation, are 37 The "Corresponding Application Code" for a Combined Work means the 39 and utility programs needed for reproducing the Combined Work from the 40 Application, but excluding the System Libraries of the Combined Work. 79 4. Combined Works. [all …]
|
/external/elfutils/ |
D | COPYING-LGPLV3 | 20 other than an Application or a Combined Work as defined below. 27 A "Combined Work" is a work produced by combining or linking an 29 with which the Combined Work was made is also called the "Linked 32 The "Minimal Corresponding Source" for a Combined Work means the 33 Corresponding Source for the Combined Work, excluding any source code 34 for portions of the Combined Work that, considered in isolation, are 37 The "Corresponding Application Code" for a Combined Work means the 39 and utility programs needed for reproducing the Combined Work from the 40 Application, but excluding the System Libraries of the Combined Work. 79 4. Combined Works. [all …]
|
/external/ImageMagick/m4/ |
D | framework.m4 | 22 # other than an Application or a Combined Work as defined below. 29 # A "Combined Work" is a work produced by combining or linking an 31 # with which the Combined Work was made is also called the "Linked 34 # The "Minimal Corresponding Source" for a Combined Work means the 35 # Corresponding Source for the Combined Work, excluding any source code 36 # for portions of the Combined Work that, considered in isolation, are 39 # The "Corresponding Application Code" for a Combined Work means the 41 # and utility programs needed for reproducing the Combined Work from the 42 # Application, but excluding the System Libraries of the Combined Work. 81 # 4. Combined Works. [all …]
|
/external/llvm/lib/Target/XCore/Disassembler/ |
D | XCoreDisassembler.cpp | 242 unsigned Combined = fieldFromInstruction(Insn, 6, 5); in Decode2OpInstruction() local 243 if (Combined < 27) in Decode2OpInstruction() 246 if (Combined == 31) in Decode2OpInstruction() 248 Combined += 5; in Decode2OpInstruction() 250 Combined -= 27; in Decode2OpInstruction() 251 unsigned Op1High = Combined % 3; in Decode2OpInstruction() 252 unsigned Op2High = Combined / 3; in Decode2OpInstruction() 261 unsigned Combined = fieldFromInstruction(Insn, 6, 5); in Decode3OpInstruction() local 262 if (Combined >= 27) in Decode3OpInstruction() 265 unsigned Op1High = Combined % 3; in Decode3OpInstruction() [all …]
|
/external/llvm/lib/Analysis/ |
D | BlockFrequencyInfoImpl.cpp | 160 HashTable Combined(NextPowerOf2(2 * Weights.size())); in combineWeightsByHashing() local 162 combineWeight(Combined[W.TargetNode.Index], W); in combineWeightsByHashing() 165 if (Weights.size() == Combined.size()) in combineWeightsByHashing() 170 Weights.reserve(Combined.size()); in combineWeightsByHashing() 171 for (const auto &I : Combined) in combineWeightsByHashing()
|
/external/skia/include/private/ |
D | SkTFitsIn.h | 111 using Combined = typename SkTCombineOutOfRange<OutOfRange_Low, OutOfRange_High>::type; in OutOfRange() local 112 return Combined::apply(s); in OutOfRange()
|
/external/deqp/doc/testspecs/GLES2/ |
D | functional.color_clear.txt | 28 + Combined glScissor() and glColorMask() effect
|
/external/llvm/tools/gold/ |
D | gold-plugin.cpp | 1480 std::unique_ptr<Module> Combined(new Module("ld-temp.o", Context)); in allSymbolsReadHook() local 1481 IRMover L(*Combined); in allSymbolsReadHook() 1495 GlobalValue *GV = Combined->getNamedValue(Name.first()); in allSymbolsReadHook() 1509 saveBCFile(path, *Combined); in allSymbolsReadHook() 1514 CodeGen codeGen(std::move(Combined)); in allSymbolsReadHook()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonScheduleV60.td | 18 // Combined functional units. 23 // Combined functional unit data.
|
D | HexagonISelLowering.cpp | 2518 SDValue Combined = DAG.getNode(ISD::OR, dl, MVT::i64, Shifted, Offset); in LowerBUILD_VECTOR() local 2519 const SDValue Ops[] = {ConstVal, Operand, Combined}; in LowerBUILD_VECTOR() 2651 SDValue Combined = DAG.getNode(ISD::OR, dl, MVT::i64, Shifted, Offset); in LowerEXTRACT_VECTOR() local 2653 const SDValue Ops[] = {Vec, Combined}; in LowerEXTRACT_VECTOR() 2699 SDValue Combined = DAG.getNode(ISD::OR, dl, MVT::i64, Shifted, Offset); in LowerINSERT_VECTOR() local 2707 const SDValue Ops[] = {Vec, Val, Combined}; in LowerINSERT_VECTOR()
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 2130 Constant *Combined = CE->getOperand(CE->getNumOperands()-1); in ConstantFoldGetElementPtrImpl() local 2133 Type *IdxTy = Combined->getType(); in ConstantFoldGetElementPtrImpl() 2143 Constant *C2 = ConstantExpr::getSExtOrBitCast(Combined, CommonTy); in ConstantFoldGetElementPtrImpl() 2144 Combined = ConstantExpr::get(Instruction::Add, C1, C2); in ConstantFoldGetElementPtrImpl() 2146 Combined = in ConstantFoldGetElementPtrImpl() 2147 ConstantExpr::get(Instruction::Add, Idx0, Combined); in ConstantFoldGetElementPtrImpl() 2151 NewIndices.push_back(Combined); in ConstantFoldGetElementPtrImpl()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | ConstantFold.cpp | 2220 Constant *Combined = CE->getOperand(CE->getNumOperands()-1); in ConstantFoldGetElementPtrImpl() local 2223 Type *IdxTy = Combined->getType(); in ConstantFoldGetElementPtrImpl() 2227 Constant *C2 = ConstantExpr::getSExtOrBitCast(Combined, Int64Ty); in ConstantFoldGetElementPtrImpl() 2228 Combined = ConstantExpr::get(Instruction::Add, C1, C2); in ConstantFoldGetElementPtrImpl() 2230 Combined = in ConstantFoldGetElementPtrImpl() 2231 ConstantExpr::get(Instruction::Add, Idx0, Combined); in ConstantFoldGetElementPtrImpl() 2235 NewIndices.push_back(Combined); in ConstantFoldGetElementPtrImpl()
|
/external/clang/docs/ |
D | LibASTMatchers.rst | 6 nodes of the AST and execute code that uses the matched nodes. Combined with
|
/external/clang/lib/Sema/ |
D | SemaExprMember.cpp | 1804 Qualifiers Combined = BaseQuals + MemberQuals; in BuildFieldReferenceExpr() local 1805 if (Combined != MemberQuals) in BuildFieldReferenceExpr() 1806 MemberType = S.Context.getQualifiedType(MemberType, Combined); in BuildFieldReferenceExpr()
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | detect-dead-lanes.mir | 14 # Combined use/def transfer check, the basics.
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLR.xcodeproj/ |
D | project.pbxproj | 531 …1A63BC7A134F5EB1002EDFB4 /* Combined.g */ = {isa = PBXFileReference; lastKnownFileType = text; pat… 532 …1A63BC7B134F5EB1002EDFB4 /* Combined.tokens */ = {isa = PBXFileReference; lastKnownFileType = text… 539 …1A63BC83134F5EB1002EDFB4 /* Combined.tokens */ = {isa = PBXFileReference; lastKnownFileType = text… 1254 1A63BC7A134F5EB1002EDFB4 /* Combined.g */, 1255 1A63BC7B134F5EB1002EDFB4 /* Combined.tokens */, 1270 1A63BC83134F5EB1002EDFB4 /* Combined.tokens */,
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR.xcodeproj/ |
D | project.pbxproj | 714 …005D0757 /* Combined.g */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; … 784 …3C4 /* Combined.tokens */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; n… 1321 F738D35C0B07C105001813C4 /* Combined.tokens */, 1326 F700E85E0A5FA2DE005D0757 /* Combined.g */, 1843 buildArgumentsString = "-jar /Library/Java/Extensions/antlr-3.3.1.jar Combined.g";
|
/external/blktrace/btt/doc/ |
D | btt.tex | 694 \item Combined data -- all read and write IOs 713 \item[c] Combined -- both read and write IOs 726 # Combined
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 6131 bool Combined = false; in parseEntireSummary() local 6148 if (!Combined) in parseEntireSummary() 6299 Combined = true; in parseEntireSummary() 6324 Combined = true; in parseEntireSummary() 6344 Combined = true; in parseEntireSummary()
|