HomeSort by relevance Sort by last modified time
    Searched defs:collapse (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/python/cpython2/Demo/tkinter/guido/
MimeViewer.py 82 self.collapse()
83 def collapse(self): member in class:MimeViewer
  /prebuilts/go/darwin-x86/src/go/ast/
import.go 79 // collapse indicates whether prev may be removed, leaving only next.
80 func collapse(prev, next Spec) bool { func
159 if i == len(specs)-1 || !collapse(s, specs[i+1]) {
  /prebuilts/go/linux-x86/src/go/ast/
import.go 79 // collapse indicates whether prev may be removed, leaving only next.
80 func collapse(prev, next Spec) bool { func
159 if i == len(specs)-1 || !collapse(s, specs[i+1]) {
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
HidTree.cpp 123 void HidReportNode::collapse(unsigned int newUsage) { function in class:HidUtil::HidReportNode
  /libcore/ojluni/src/main/native/
canonicalize_md.c 121 /* Collapse "." and ".." names in the given path wherever possible.
128 collapse(char *path) function
186 work, though once that's done we still must collapse any remaining "." and
205 collapse(resolved);
267 collapse(r);
273 collapse(resolved);
  /cts/hostsidetests/systemui/src/android/host/systemui/
TileServiceTest.java 64 // Collapse the shade and make sure the listening ends.
65 collapse(); method
77 // Collapse the shade and make sure the listening ends.
78 collapse(); method
BaseTileServiceTest.java 32 private static final String COLLAPSE = "cmd statusbar collapse";
68 collapse(); method
98 protected void collapse() throws Exception { method in class:BaseTileServiceTest
99 execute(COLLAPSE);
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
AlarmItemHolder.java 61 public void collapse() { method in class:AlarmItemHolder
  /frameworks/support/samples/SupportDesignDemos/src/main/java/com/example/android/support/design/widget/
BottomSheetDynamicContent.java 71 case R.id.collapse:
106 Button collapse = findViewById(R.id.collapse); local
107 if (collapse != null) {
108 collapse.setOnClickListener(mOnClickListener);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShadowCardStack.java 101 Animator collapse = ObjectAnimator.ofFloat(card, "translationY", 0); local
102 collapseAnimators.add(collapse);
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 197 void collapse(DomainValue *dv, unsigned domain);
234 /// collapse if needed.
241 // There are no more DV references. Collapse any contained instructions.
243 collapse(DV, DV->getFirstDomain());
283 // Kill register rx, recycle or collapse any DomainValue.
302 collapse(dv, domain);
304 // This is an incompatible open DomainValue. Collapse it to whatever and
306 collapse(dv, dv->getFirstDomain());
307 assert(LiveRegs[rx].Value && "Not live after collapse?");
316 /// Collapse open DomainValue into given domain. If there are multipl
318 void ExeDepsFix::collapse(DomainValue *dv, unsigned domain) { function in class:__anon27240::ExeDepsFix
    [all...]
  /external/python/cpython2/Lib/idlelib/
TreeWidget.py 7 # - left/right arrows to expand/collapse & move out/in
120 self.collapse()
134 def collapse(self, event=None): member in class:TreeNode
202 callback = child.collapse
  /external/python/cpython3/Lib/idlelib/
tree.py 7 # - left/right arrows to expand/collapse & move out/in
121 self.collapse()
135 def collapse(self, event=None): member in class:TreeNode
203 callback = child.collapse
  /external/toolchain-utils/cros_utils/
pstat.py 41 collapse (listoflists,keepcols,collapsecols,fcn1=None,fcn2=None,cfcn=None)
99 ## 12/07/98 ... fixed import problem (failed on collapse() fcn)
102 ## added features to collapse() function
233 def collapse(listoflists, function
245 cfcn is the collapse function to apply (defaults to mean, defined here in the
249 Usage: collapse
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelBar.java 162 pv.collapse(delayed, speedUpFactor);
  /packages/apps/Dialer/java/com/android/dialer/main/impl/toolbar/
MainToolbar.java 119 /** @see SearchBarView#collapse(boolean) */
120 public void collapse(boolean animate) { method in class:MainToolbar
121 searchBar.collapse(animate);
124 /** @see SearchBarView#collapse(boolean) */
SearchBarView.java 40 /** Search bar for {@link MainToolbar}. Mostly used to handle expand and collapse animation. */
97 collapse(true);
143 /** Collapse the search bar and clear it's text. */
144 /* package-private */ void collapse(boolean animate) { method in class:SearchBarView
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
TreeWidget.py 7 # - left/right arrows to expand/collapse & move out/in
120 self.collapse()
134 def collapse(self, event=None): member in class:TreeNode
201 callback = child.collapse
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
TreeWidget.py 7 # - left/right arrows to expand/collapse & move out/in
120 self.collapse()
134 def collapse(self, event=None): member in class:TreeNode
201 callback = child.collapse
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 7 # - left/right arrows to expand/collapse & move out/in
120 self.collapse()
134 def collapse(self, event=None): member in class:TreeNode
201 callback = child.collapse
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 7 # - left/right arrows to expand/collapse & move out/in
120 self.collapse()
134 def collapse(self, event=None): member in class:TreeNode
201 callback = child.collapse
  /packages/apps/Dialer/java/com/android/dialer/app/widget/
SearchEditTextLayout.java 245 public void collapse(boolean animate) { method in class:SearchEditTextLayout
  /prebuilts/go/darwin-x86/src/regexp/syntax/
parse.go 313 return p.push(p.collapse(subs, OpConcat))
339 return p.push(p.collapse(subs, OpAlternate))
365 // collapse returns the result of applying op to sub.
369 func (p *parser) collapse(subs []*Regexp, op Op) *Regexp { func
459 suffix := p.collapse(sub[start:i], OpAlternate) // recurse
516 suffix := p.collapse(sub[start:i], OpAlternate) // recurse
529 // Round 3: Collapse runs of single literals into character classes.
576 // Round 4: Collapse runs of empty matches into a single empty match.
    [all...]
  /prebuilts/go/linux-x86/src/regexp/syntax/
parse.go 313 return p.push(p.collapse(subs, OpConcat))
339 return p.push(p.collapse(subs, OpAlternate))
365 // collapse returns the result of applying op to sub.
369 func (p *parser) collapse(subs []*Regexp, op Op) *Regexp { func
459 suffix := p.collapse(sub[start:i], OpAlternate) // recurse
516 suffix := p.collapse(sub[start:i], OpAlternate) // recurse
529 // Round 3: Collapse runs of single literals into character classes.
576 // Round 4: Collapse runs of empty matches into a single empty match.
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
pydoc.py 2214 def collapse(self): member in class:gui.GUI
    [all...]

Completed in 535 milliseconds

1 2 3 4