/toolchain/binutils/binutils-2.25/gas/testsuite/lib/ |
doobjcmp | 6 BOTH="$1 $2" 10 if (cmp $BOTH > /dev/null) 16 if (doboth $BOTH size) 21 size $BOTH 25 if (doboth $BOTH objdump +header) 33 if (doboth $BOTH objdump +text > /dev/null) 38 # doboth $BOTH objdump +text 42 if (doboth $BOTH objdump +data > /dev/null) 47 # doboth $BOTH objdump +data 51 if (doboth $BOTH objdump +symbols > /dev/null [all...] |
/toolchain/binutils/binutils-2.25/ld/ |
ldlex.l | 39 yylex and yyparse (indirectly) both check this. */ 81 BOTH either EXPRESSION or SCRIPT 115 %s BOTH 139 <BOTH,SCRIPT,EXPRESSION,VERS_START,VERS_NODE,VERS_SCRIPT,INPUTLIST>"/*" { comment (); } 178 <SCRIPT,DEFSYMEXP,MRI,BOTH,EXPRESSION>((("$"|0[xX])([0-9A-Fa-f])+)|(([0-9])+))(M|K|m|k)? { 207 <BOTH,SCRIPT,EXPRESSION,MRI>"]" { RTOKEN(']');} 208 <BOTH,SCRIPT,EXPRESSION,MRI>"[" { RTOKEN('[');} 209 <BOTH,SCRIPT,EXPRESSION,MRI>"<<=" { RTOKEN(LSHIFTEQ);} 210 <BOTH,SCRIPT,EXPRESSION,MRI>">>=" { RTOKEN(RSHIFTEQ);} 211 <BOTH,SCRIPT,EXPRESSION,MRI>"||" { RTOKEN(OROR); [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/z8k/ |
eidi.s | 5 ei both 6 di both 20 EI BOTH 21 DI BOTH
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
FilterMirrorRepresentation.java | 41 NONE('N'), VERTICAL('V'), HORIZONTAL('H'), BOTH('B'); 61 return BOTH; 117 if (mMirror == Mirror.BOTH 125 if (mMirror == Mirror.BOTH 138 mMirror = Mirror.BOTH; 140 case BOTH:
|
/external/python/cpython2/Lib/lib-tk/ |
ScrolledText.py | 17 from Tkconstants import RIGHT, LEFT, Y, BOTH 27 self.pack(side=LEFT, fill=BOTH, expand=True) 50 stext.pack(fill=BOTH, side=LEFT, expand=True)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ |
ScrolledText.py | 17 from Tkconstants import RIGHT, LEFT, Y, BOTH 27 self.pack(side=LEFT, fill=BOTH, expand=True) 50 stext.pack(fill=BOTH, side=LEFT, expand=True)
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/ |
ScrolledText.py | 17 from Tkconstants import RIGHT, LEFT, Y, BOTH 27 self.pack(side=LEFT, fill=BOTH, expand=True) 50 stext.pack(fill=BOTH, side=LEFT, expand=True)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
ScrolledText.py | 17 from Tkconstants import RIGHT, LEFT, Y, BOTH 27 self.pack(side=LEFT, fill=BOTH, expand=True) 50 stext.pack(fill=BOTH, side=LEFT, expand=True)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
ScrolledText.py | 17 from Tkconstants import RIGHT, LEFT, Y, BOTH 27 self.pack(side=LEFT, fill=BOTH, expand=True) 50 stext.pack(fill=BOTH, side=LEFT, expand=True)
|
/external/python/cpython2/Demo/tix/samples/ |
PanedWin.py | 73 list.pack(expand=1, fill=Tix.BOTH, padx=4, pady=6) 74 text.pack(expand=1, fill=Tix.BOTH, padx=4, pady=6) 76 group.pack(side=Tix.TOP, padx=3, pady=3, fill=Tix.BOTH) 77 pane.pack(side=Tix.TOP, padx=3, pady=3, fill=Tix.BOTH, expand=1)
|
BtnBox.py | 39 top.pack(side=Tix.TOP, fill=Tix.BOTH, expand=1)
|
/external/python/cpython2/Demo/tkinter/guido/ |
dialog.py | 21 top.pack(side=TOP, fill=BOTH) 23 bot.pack(side=BOTTOM, fill=BOTH) 29 msg.pack(side=RIGHT, expand=1, fill=BOTH, padx='3m', pady='3m') 105 endit.pack(fill=BOTH)
|
listtree.py | 10 list.pack(expand=1, fill=BOTH) 32 f.pack(expand=1, fill=BOTH)
|
/external/python/cpython2/Demo/tkinter/matt/ |
00-HELLO-WORLD.py | 14 self.QUIT.pack(side=LEFT, fill=BOTH)
|
animation-simple.py | 12 self.QUIT.pack(side=LEFT, fill=BOTH)
|
canvas-demo-simple.py | 12 self.QUIT.pack(side=BOTTOM, fill=BOTH)
|
canvas-reading-tag-info.py | 11 self.QUIT.pack(side=BOTTOM, fill=BOTH)
|
canvas-w-widget-draw-el.py | 12 self.QUIT.pack(side=BOTTOM, fill=BOTH)
|
dialog-box.py | 49 self.QUIT.pack(side=LEFT, fill=BOTH)
|
packer-and-placer-together.py | 23 f.pack(fill=BOTH, expand=1)
|
packer-simple.py | 12 self.QUIT.pack(side=LEFT, fill=BOTH)
|
slider-demo-1.py | 28 self.QUIT.pack(side=LEFT, fill=BOTH)
|
/frameworks/base/core/java/android/database/ |
CursorJoiner.java | 38 * case BOTH: 39 * // handle case where a row with the same key is in both cursors 63 /** The rows pointed to by both cursors are the same */ 64 BOTH 123 case BOTH: 153 * if the row pointed to by the right cursor is unique, BOTH if the rows in both 174 mCompareResult = Result.BOTH; 225 case BOTH:
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/ |
PhotoViewPager.java | 35 public static enum InterceptType { NONE, LEFT, RIGHT, BOTH } 119 (intercept == InterceptType.BOTH || intercept == InterceptType.LEFT); 121 (intercept == InterceptType.BOTH || intercept == InterceptType.RIGHT); 123 // Only check ability to page if we can't scroll in one / both directions
|
/external/python/cpython2/Demo/tix/ |
grid.py | 20 g.pack(fill=tk.BOTH)
|