Searched refs:wins (Results 1 – 25 of 85) sorted by relevance
1234
/external/llvm-project/lldb/utils/lui/ |
D | sandbox.py | 36 self.wins = [] 41 self.wins.append(list_win) 42 self.wins.append(cui.TitledWin(0, 0, w2, h2, "Test Window 1")) 43 self.wins.append(cui.TitledWin(w2, 0, w2, h2, "Test Window 2")) 44 self.wins.append(cui.TitledWin(0, h2, w2, h2, "Test Window 3"))
|
D | cui.py | 207 self.wins[self.focus].setFocus(False) 211 if self.focus >= len(self.wins): 213 if self.wins[self.focus].canFocus(): 215 self.wins[self.focus].setFocus(True) 225 self.wins[self.focus].setFocus(True) 230 for i, win in enumerate(self.wins): 234 if self.wins: 235 self.wins[self.focus].draw() 240 for win in self.wins:
|
D | lui.py | 104 self.wins = [self.status_win, 111 self.focus = len(self.wins) - 1 # index of command window;
|
/external/clang/test/Modules/Inputs/System/usr/include/ |
D | module.map | 12 // In both directories (compiler support version wins, does not forward) 17 // In both directories (compiler support version wins, forwards)
|
/external/llvm-project/clang/test/Modules/Inputs/System/usr/include/ |
D | module.map | 12 // In both directories (compiler support version wins, does not forward) 17 // In both directories (compiler support version wins, forwards)
|
/external/llvm/test/Transforms/CodeExtractor/ |
D | 2004-03-14-DominanceProblem.ll | 20 %tmp.563 = call i32 @wins( i32 0, i32 %tmp.53, i32 3 ) ; <i32> [#uses=0] 30 declare i32 @wins(i32, i32, i32)
|
/external/llvm-project/llvm/test/Transforms/CodeExtractor/ |
D | 2004-03-14-DominanceProblem.ll | 20 %tmp.563 = call i32 @wins( i32 0, i32 %tmp.53, i32 3 ) ; <i32> [#uses=0] 30 declare i32 @wins(i32, i32, i32)
|
/external/llvm-project/llvm/test/tools/llvm-objcopy/ELF/ |
D | no-strip-all.test | 14 ## --no-strip-all wins if last. 18 ## --strip-all wins if last.
|
D | set-section-alignment.test | 17 ## If a section is specified multiple times, the last wins.
|
/external/llvm-project/llvm/test/tools/gold/X86/ |
D | comdat.ll | 32 ; gold's resolutions should tell us that our $c1 wins, and the other input's $c2 33 ; wins. f1 is also local due to having protected visibility in the other object.
|
/external/llvm-project/clang/test/Modules/ |
D | cstd.m | 24 // Supplied by the compiler; that version wins.
|
/external/clang/test/Modules/ |
D | cstd.m | 24 // Supplied by the compiler; that version wins.
|
/external/llvm-project/lld/test/ELF/ |
D | version-script-reassign-glob.s | 12 ## If both a non-* glob and a * match, non-* wins.
|
D | warn-unresolved-symbols.s | 16 ## Test that the last option wins
|
D | dead-reloc-in-nonalloc.s | 32 ## If a section matches multiple option. The last option wins.
|
/external/rust/crates/grpcio-sys/grpc/tools/profiling/microbenchmarks/bm_diff/ |
D | README.md | 7 baseline data to see if you have made any performance wins. 25 between the two branches. This should show the nice performance wins your 107 regressions and demonstrate performance wins.
|
/external/grpc-grpc/tools/profiling/microbenchmarks/bm_diff/ |
D | README.md | 7 baseline data to see if you have made any performance wins. 25 between the two branches. This should show the nice performance wins your 107 regressions and demonstrate performance wins.
|
/external/llvm-project/llvm/test/tools/llvm-ranlib/ |
D | help-message.test | 11 ## Also check combined options (first -h/-v flag wins)
|
/external/rust/crates/once_cell/ |
D | CHANGELOG.md | 22 - Stabilize `once_cell::race` module for "first one wins" no_std-compatible initialization flavor. 39 - add new `once_cell::race` module for "first one wins" no_std-compatible initialization flavor.
|
/external/llvm-project/llvm/test/tools/llvm-symbolizer/ |
D | demangle.s | 10 # --no-demangle wins.
|
D | relativenames.s | 16 ## Ensure last option wins.
|
/external/llvm-project/llvm/test/tools/llvm-nm/X86/ |
D | demangle.ll | 15 ; Show that the last of --no-demangle/--demangle wins:
|
/external/tensorflow/tensorflow/ |
D | workspace0.bzl | 73 # If a target is bound twice, the later one wins, so we have to do tf bindings
|
/external/llvm-project/llvm/test/Transforms/InstCombine/ |
D | bitreverse-known-bits.ll | 42 ; but the metadata says [0, 16). So make sure the range metadata wins.
|
/external/ppp/pppd/ |
D | ipcp.c | 382 u_int32_t wins; local 385 wins = inet_addr(*argv); 386 if (wins == (u_int32_t) -1) { 392 wins = *(u_int32_t *)hp->h_addr; 399 ipcp_allowoptions[0].winsaddr[0] = wins; 404 ipcp_allowoptions[0].winsaddr[1] = wins;
|
1234