Home
last modified time | relevance | path

Searched refs:au (Results 1 – 25 of 650) sorted by relevance

12345678910>>...26

/external/python/cpython2/Misc/Vim/
Dvimrc10 " All setting are protected by 'au' ('autocmd') statements. Only files ending
20 au BufRead,BufNewFile *py,*pyw,*.c,*.h set tabstop=8
26 au BufRead,BufNewFile *.py,*pyw set shiftwidth=4
27 au BufRead,BufNewFile *.py,*.pyw set expandtab
37 au BufRead,BufNewFile *.c,*.h call Select_c_style()
38 au BufRead,BufNewFile Makefile* set noexpandtab
44 au BufRead,BufNewFile *.py,*.pyw match BadWhitespace /^\t\+/
46 au BufRead,BufNewFile *.py,*.pyw,*.c,*.h match BadWhitespace /\s\+$/
51 au BufRead,BufNewFile *.py,*.pyw,*.c,*.h set textwidth=79
60 au BufRead,BufNewFile *.c,*.h set formatoptions-=c formatoptions-=o formatoptions-=r
[all …]
/external/icu/icu4c/source/data/locales/
Dfr_CH.txt50 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/swiftshader/third_party/llvm-7.0/llvm/utils/vim/
Dvimrc24 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/llvm/utils/vim/
Dvimrc24 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/
Dvimrc24 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 …]
DREADME11 au! BufRead,BufNewFile *.ll set filetype=llvm
20 au! BufRead,BufNewFile *.td set filetype=tablegen
42 au! BufRead,BufNewFile *Makefile* set filetype=make
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DRegAllocPBQP.cpp134 void getAnalysisUsage(AnalysisUsage &au) const override;
532 void RegAllocPBQP::getAnalysisUsage(AnalysisUsage &au) const { in getAnalysisUsage()
533 au.setPreservesCFG(); in getAnalysisUsage()
534 au.addRequired<AAResultsWrapperPass>(); in getAnalysisUsage()
535 au.addPreserved<AAResultsWrapperPass>(); in getAnalysisUsage()
536 au.addRequired<SlotIndexes>(); in getAnalysisUsage()
537 au.addPreserved<SlotIndexes>(); in getAnalysisUsage()
538 au.addRequired<LiveIntervals>(); in getAnalysisUsage()
539 au.addPreserved<LiveIntervals>(); in getAnalysisUsage()
542 au.addRequiredID(*customPassID); in getAnalysisUsage()
[all …]
/external/llvm/lib/CodeGen/
DRegAllocPBQP.cpp107 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 …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DRegAllocPBQP.cpp106 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 …]
DCalcSpillWeights.cpp35 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()
DSplitter.cpp260 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 …]
DSlotIndexes.cpp28 void SlotIndexes::getAnalysisUsage(AnalysisUsage &au) const { in getAnalysisUsage()
29 au.setPreservesAll(); in getAnalysisUsage()
30 MachineFunctionPass::getAnalysisUsage(au); in getAnalysisUsage()
/external/u-boot/arch/nios2/lib/
Dlibgcc.c132 const DWunion au = {.ll = a}; in __cmpdi2() local
135 if (au.s.high < bu.s.high) in __cmpdi2()
137 else if (au.s.high > bu.s.high) in __cmpdi2()
139 if ((UWtype) au.s.low < (UWtype) bu.s.low) in __cmpdi2()
141 else if ((UWtype) au.s.low > (UWtype) bu.s.low) in __cmpdi2()
429 const DWunion au = {.ll = a}; in __ucmpdi2() local
432 if ((UWtype) au.s.high < (UWtype) bu.s.high) in __ucmpdi2()
434 else if ((UWtype) au.s.high > (UWtype) bu.s.high) in __ucmpdi2()
436 if ((UWtype) au.s.low < (UWtype) bu.s.low) in __ucmpdi2()
438 else if ((UWtype) au.s.low > (UWtype) bu.s.low) in __ucmpdi2()
/external/icu/icu4c/source/data/translit/
DLatin_InterIndic.txt90 $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;
Des_FONIPA_zh.txt49 [^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 → 乔 ;
Dro_ro_FONIPA.txt42 au} r → au ;
43 au → aw ;
Dsi_si_Latn.txt91 ඖ → au;
94 ෞ → au;
/external/python/cpython2/Lib/test/
Dtest_ossaudiodev.py28 au = sunau.open(fp)
29 rate = au.getframerate()
30 nchannels = au.getnchannels()
31 encoding = au._encoding
/external/deqp/modules/internal/
DditSRGB8ConversionTest.cpp38 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/python/cpython3/Lib/test/
Dtest_ossaudiodev.py28 au = sunau.open(fp)
29 rate = au.getframerate()
30 nchannels = au.getnchannels()
31 encoding = au._encoding
/external/icu/icu4c/source/data/unit/
Des_US.txt163 dnam{"au"}
164 one{"{0} au"}
165 other{"{0} au"}
/external/tcpdump/tests/
Ddnssec-vv.out2 …127.0.0.1.43144 > 127.0.0.1.53: [bad udp cksum 0xfe49 -> 0xb5ef!] 20972+ [1au] SSHFP? monadic.cyni…
6 …127.0.0.1.32972 > 127.0.0.1.53: [bad udp cksum 0xfe49 -> 0x28d8!] 48576+ [1au] A? monadic.cynic.ne…
10 …127.0.0.1.36069 > 127.0.0.1.53: [bad udp cksum 0xfe49 -> 0xf266!] 49432+ [1au] SSHFP? monadic.cyni…
/external/cldr/tools/java/org/unicode/cldr/util/data/
Daustralasia71 # http://www.australia.gov.au/about-australia/australian-story/austn-islands
114 # http://www.bom.gov.au/climate/averages/tables/dst_times.shtml
234 # http://www.parks.tas.gov.au/index.aspx?base=1828
235 # http://www.parks.tas.gov.au/index.aspx?base=1831
936 # http://www.jcu.edu.au/aff/history/reviews/davison.htm
940 # http://www.bom.gov.au/climate/averages/tables/dst_times.shtml
945 # http://www.lawlink.nsw.gov.au/lawlink/Corporate/ll_agdinfo.nsf/pages/community_relations_daylight…
981 # 10 "Eastern Daylight Time AEST" site:au [some are false hits]
982 # 10 "Eastern Summer Time AEST" site:au
983 # 10 "Summer Time AEDT" site:au
[all …]
/external/adhd/scripts/mic_testing/frontend/
Daudio.js335 var au = document.createElement('audio');
336 au.controls = true;
337 au.src = url;
348 td_au.appendChild(au);
/external/iproute2/tc/
Dm_pedit.h90 extern int print_pedit(struct action_util *au, FILE *f, struct rtattr *arg);
91 extern int pedit_print_xstats(struct action_util *au, FILE *f,

12345678910>>...26