/external/icu/icu4c/source/data/locales/ |
D | fr_CH.txt | 50 M{"E, d MMM 'au' E, d MMM"} 51 d{"E, d 'au' E, d MMM"} 54 M{"d MMM 'au' d MMM"} 60 fallback{"du {0} au {1}"} 74 M{"E, d MMM 'au' E, d MMM y G"} 75 d{"E, d 'au' E, d MMM y G"} 76 y{"E, d MMM y 'au' E, d MMM y G"} 79 M{"d MMM 'au' d MMM y G"} 80 y{"d MMM y 'au' d MMM y G"}
|
/external/llvm/utils/vim/ |
D | vimrc | 24 au BufWinEnter * let w:m0=matchadd('LongLine', '\%>80v.\+', -1) 28 au BufWinEnter * let w:m1=matchadd('WhitespaceEOL', '\s\+$', -1) 29 au InsertEnter * call matchdelete(w:m1) 30 au InsertEnter * let w:m2=matchadd('WhitespaceEOL', '\s\+\%#\@<!$', -1) 31 au InsertLeave * call matchdelete(w:m2) 32 au InsertLeave * let w:m1=matchadd('WhitespaceEOL', '\s\+$', -1) 34 au BufRead,BufNewFile * syntax match LongLine /\%>80v.\+/ 35 au InsertEnter * syntax match WhitespaceEOL /\s\+\%#\@<!$/ 36 au InsertLeave * syntax match WhitespaceEOL /\s\+$/ 45 au! [all …]
|
/external/swiftshader/third_party/LLVM/utils/vim/ |
D | vimrc | 24 au BufWinEnter * let w:m0=matchadd('LongLine', '\%>80v.\+', -1) 28 au BufWinEnter * let w:m1=matchadd('WhitespaceEOL', '\s\+$', -1) 29 au InsertEnter * call matchdelete(w:m1) 30 au InsertEnter * let w:m2=matchadd('WhitespaceEOL', '\s\+\%#\@<!$', -1) 31 au InsertLeave * call matchdelete(w:m2) 32 au InsertLeave * let w:m1=matchadd('WhitespaceEOL', '\s\+$', -1) 34 au BufRead,BufNewFile * syntax match LongLine /\%>80v.\+/ 35 au InsertEnter * syntax match WhitespaceEOL /\s\+\%#\@<!$/ 36 au InsertLeave * syntax match WhitespaceEOL /\s\+$/ 45 au! [all …]
|
D | README | 11 au! BufRead,BufNewFile *.ll set filetype=llvm 20 au! BufRead,BufNewFile *.td set filetype=tablegen 42 au! BufRead,BufNewFile *Makefile* set filetype=make
|
/external/llvm/lib/CodeGen/ |
D | RegAllocPBQP.cpp | 107 void getAnalysisUsage(AnalysisUsage &au) const override; 506 void RegAllocPBQP::getAnalysisUsage(AnalysisUsage &au) const { in getAnalysisUsage() 507 au.setPreservesCFG(); in getAnalysisUsage() 508 au.addRequired<AAResultsWrapperPass>(); in getAnalysisUsage() 509 au.addPreserved<AAResultsWrapperPass>(); in getAnalysisUsage() 510 au.addRequired<SlotIndexes>(); in getAnalysisUsage() 511 au.addPreserved<SlotIndexes>(); in getAnalysisUsage() 512 au.addRequired<LiveIntervals>(); in getAnalysisUsage() 513 au.addPreserved<LiveIntervals>(); in getAnalysisUsage() 516 au.addRequiredID(*customPassID); in getAnalysisUsage() [all …]
|
D | SlotIndexes.cpp | 28 void SlotIndexes::getAnalysisUsage(AnalysisUsage &au) const { in getAnalysisUsage() 29 au.setPreservesAll(); in getAnalysisUsage() 30 MachineFunctionPass::getAnalysisUsage(au); in getAnalysisUsage()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | RegAllocPBQP.cpp | 106 virtual void getAnalysisUsage(AnalysisUsage &au) const; 448 void RegAllocPBQP::getAnalysisUsage(AnalysisUsage &au) const { in getAnalysisUsage() 449 au.addRequired<SlotIndexes>(); in getAnalysisUsage() 450 au.addPreserved<SlotIndexes>(); in getAnalysisUsage() 451 au.addRequired<LiveIntervals>(); in getAnalysisUsage() 453 au.addRequiredID(RegisterCoalescerPassID); in getAnalysisUsage() 455 au.addRequiredID(*customPassID); in getAnalysisUsage() 456 au.addRequired<CalculateSpillWeights>(); in getAnalysisUsage() 457 au.addRequired<LiveStacks>(); in getAnalysisUsage() 458 au.addPreserved<LiveStacks>(); in getAnalysisUsage() [all …]
|
D | CalcSpillWeights.cpp | 35 void CalculateSpillWeights::getAnalysisUsage(AnalysisUsage &au) const { in INITIALIZE_PASS_DEPENDENCY() 36 au.addRequired<LiveIntervals>(); in INITIALIZE_PASS_DEPENDENCY() 37 au.addRequired<MachineLoopInfo>(); in INITIALIZE_PASS_DEPENDENCY() 38 au.setPreservesAll(); in INITIALIZE_PASS_DEPENDENCY() 39 MachineFunctionPass::getAnalysisUsage(au); in INITIALIZE_PASS_DEPENDENCY()
|
D | Splitter.cpp | 260 void LoopSplitter::getAnalysisUsage(AnalysisUsage &au) const { in getAnalysisUsage() 261 au.addRequired<MachineDominatorTree>(); in getAnalysisUsage() 262 au.addPreserved<MachineDominatorTree>(); in getAnalysisUsage() 263 au.addRequired<MachineLoopInfo>(); in getAnalysisUsage() 264 au.addPreserved<MachineLoopInfo>(); in getAnalysisUsage() 265 au.addPreservedID(RegisterCoalescerPassID); in getAnalysisUsage() 266 au.addPreserved<CalculateSpillWeights>(); in getAnalysisUsage() 267 au.addPreserved<LiveStacks>(); in getAnalysisUsage() 268 au.addRequired<SlotIndexes>(); in getAnalysisUsage() 269 au.addPreserved<SlotIndexes>(); in getAnalysisUsage() [all …]
|
D | SlotIndexes.cpp | 28 void SlotIndexes::getAnalysisUsage(AnalysisUsage &au) const { in getAnalysisUsage() 29 au.setPreservesAll(); in getAnalysisUsage() 30 MachineFunctionPass::getAnalysisUsage(au); in getAnalysisUsage()
|
/external/icu/icu4c/source/data/translit/ |
D | Latin_InterIndic.txt | 90 $au=\uE04C; 152 $x=[$virama$aa$ai$au$ii$i$uu$u$rrh$rh$lh$e$o$se$ce$so$co]; 164 \u0314au→$au; 185 $consonants{ au→$au; 206 au→$wau; 301 $virama au→$au; 327 $virama''au→$wau; 351 ''au→$wau;
|
D | es_FONIPA_zh.txt | 49 [^jw] { ao } [^n] → au\u032F ; 50 [^jw] { ao } n $vowel → au\u032F ; 57 au\u032F → 奥 ; 85 βau\u032F → 沃 ; 192 ʝau\u032F → 尧 ; 259 ʎau\u032F → 廖 ; 324 ɲau\u032F → 尼奥 ; 449 ʧau\u032F → 乔 ;
|
D | ro_ro_FONIPA.txt | 42 au} r → au ; 43 au → aw ;
|
D | si_si_Latn.txt | 91 ඖ → au; 94 ෞ → au;
|
D | InterIndic_Latin.txt | 89 $au=\uE04C; 133 $x=[$aa$ai$au$ii$i$uu$u$rrh$rh$lh$llh$e$o$se$ce$so$co]; 350 $forceIndependentMatra{$au → \u0314au; 370 $au → au; 389 $wau} $x → au\u0314; 410 $vowels{$wau → ''au; 430 $wau → au;
|
D | ia_ia_FONIPA.txt | 16 au → au\u032F;
|
/external/deqp/modules/internal/ |
D | ditSRGB8ConversionTest.cpp | 38 const deUint32 au = tcu::Float32(a).bits(); in calculateDiscreteFloatDistance() local 41 const bool asign = (au & (0x1u << 31u)) != 0u; in calculateDiscreteFloatDistance() 44 const deUint32 avalue = (au & ((0x1u << 31u) - 1u)); in calculateDiscreteFloatDistance()
|
/external/icu/icu4c/source/data/unit/ |
D | es_US.txt | 114 dnam{"au"} 115 one{"{0} au"} 116 other{"{0} au"}
|
D | fr_CA.txt | 52 dnam{"milles au gallon"} 53 one{"{0} mille au gallon"} 54 other{"{0} milles au gallon"}
|
D | to.txt | 917 dnam{"ʻau"} 918 other{"{0} ʻau"} 921 dnam{"ʻau-k"} 922 other{"{0} ʻau-k"} 1063 dnam{"ʻau-tf"} 1064 other{"{0} ʻau-tf"} 1468 dnam{"ʻau"} 1469 other{"ʻau ʻe {0}"} 1472 dnam{"ʻau-k"} 1473 other{"ʻau-k ʻe {0}"} [all …]
|
/external/iproute2/tc/ |
D | m_pedit.h | 59 extern int print_pedit(struct action_util *au,FILE * f, struct rtattr *arg); 60 extern int pedit_print_xstats(struct action_util *au, FILE *f, struct rtattr *xstats);
|
D | tc_util.h | 47 int (*print_aopt)(struct action_util *au, FILE *f, struct rtattr *opt); 48 int (*print_xstats)(struct action_util *au, FILE *f, struct rtattr *xstats);
|
/external/openssh/contrib/aix/ |
D | README | 38 may be found at http://www.zip.com.au/~dtucker/openssh/. 47 - Darren Tucker (dtucker at zip dot com dot au)
|
/external/llvm/utils/vim/ftdetect/ |
D | llvm.vim | 1 au BufRead,BufNewFile *.ll set filetype=llvm
|
D | tablegen.vim | 1 au BufRead,BufNewFile *.td set filetype=tablegen
|