/build/make/core/ |
droiddoc.mk | 125 $(hide) mkdir -p $(dir $(1)) 127 $(hide) for d in $(3) ; do find $$d -name '*.java' -and -not -name '.*' >> $(1) 2> /dev/null ; done ; true 187 --hide HiddenTypedefConstant --hide SuperfluousPrefix --hide AnnotationExtraction 217 $(hide) mkdir -p $(dir $@) 218 $(hide) rm -rf $(PRIVATE_STUB_OUT_DIR) 219 $(hide) rm -rf $(PRIVATE_METALAVA_DOCS_STUB_OUT_DIR) 223 $(hide) ( \ 255 $(hide) mkdir -p $(dir $@ [all...] |
test_config_common.mk | 48 $(hide) sed 's&</configuration>&$(_option_xml)</configuration>&' $< > $@
|
notice_files.mk | 81 $(hide) mkdir -p $(dir $@) 82 $(hide) cat $< > $@
|
/system/core/rootdir/ |
Android.mk | 105 # /odm will hide those symlinks. 140 $(hide) mkdir -p $(dir $@) && rm -rf $(dir $@)*.bcp.dep && touch $@ 145 $(hide) sed -e 's?%BOOTCLASSPATH%?$(PRODUCT_BOOTCLASSPATH)?g' $< >$@ 146 $(hide) sed -i -e 's?%SYSTEMSERVERCLASSPATH%?$(PRODUCT_SYSTEM_SERVER_CLASSPATH)?g' $@ 147 $(hide) sed -i -e 's?%EXPORT_GLOBAL_ASAN_OPTIONS%?$(EXPORT_GLOBAL_ASAN_OPTIONS)?g' $@ 148 $(hide) sed -i -e 's?%EXPORT_GLOBAL_GCOV_OPTIONS%?$(EXPORT_GLOBAL_GCOV_OPTIONS)?g' $@ 201 $$(hide) sed -e 's?%LLNDK_LIBRARIES%?$$(PRIVATE_LLNDK_LIBRARIES)?g' $$< >$$@ 202 $$(hide) sed -i -e 's?%PRIVATE_LLNDK_LIBRARIES%?$$(PRIVATE_PRIVATE_LLNDK_LIBRARIES)?g' $$@ 203 $$(hide) sed -i -e 's?%VNDK_SAMEPROCESS_LIBRARIES%?$$(PRIVATE_VNDK_SAMEPROCESS_LIBRARIES)?g' $$@ 204 $$(hide) sed -i -e 's?%VNDK_CORE_LIBRARIES%?$$(PRIVATE_VNDK_CORE_LIBRARIES)?g' $$ [all...] |
/developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/util/ |
SystemUiHiderBase.java | 25 * API levels to show and hide the status bar. 30 * from calls to {@link #hide()} and {@link #show()}. 59 public void hide() { method in class:SystemUiHiderBase
|
SystemUiHiderHoneycomb.java | 28 * show and hide the system UI. 95 public void hide() { method in class:SystemUiHiderHoneycomb 117 // Pre-Jelly Bean, we must manually hide the action bar 119 mActivity.getActionBar().hide();
|
/device/google/cuttlefish/ |
host_package.mk | 67 $(hide) rm -rf $@ && tar Scfz $@.tmp -C $(HOST_OUT) $(CVD_TAR_FORMAT) $(cvd_host_package_files) 68 $(hide) mv $@.tmp $@
|
/external/autotest/frontend/client/src/autotest/common/ui/ |
SimpleDialog.java | 27 hide();
|
/external/icu/icu4j/ |
adjust_icudt_path.mk | 24 $(hide) mkdir -p $(dir $@) 25 $(hide) sed "/\.dataPath =/s/$$/ $(private_icu4c_data)/" $< > $@
|
/external/syslinux/com32/chain/ |
options.h | 51 int hide; member in struct:options
|
/frameworks/base/data/keyboards/ |
Android.mk | 31 $(hide) $(PRIVATE_VALIDATEKEYMAPS) -q $^ 32 $(hide) mkdir -p $(dir $@) && touch $@
|
/frameworks/multidex/instrumentation/ |
Android.mk | 28 $(hide) mkdir -p $(dir $@) 29 $(hide) echo "git.version=$(ASMDI_GIT_VERSION_TAG)" > $@
|
/frameworks/multidex/library/ |
Android.mk | 26 $(hide) mkdir -p $(dir $@) 27 $(hide) echo "git.version=$(ASMD_GIT_VERSION_TAG)" > $@
|
/packages/apps/Dialer/java/com/android/incallui/baseui/ |
BaseFragment.java | 58 getFragmentManager().beginTransaction().hide(this).commit();
|
/packages/apps/Dialer/java/com/android/newbubble/stub/ |
NewBubbleStub.java | 36 public void hide() {} method in class:NewBubbleStub
|
/packages/apps/Settings/src/com/android/settings/widget/ |
SwitchBarController.java | 41 mSwitchBar.hide();
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
FragmentMenuFragment.java | 90 else ft.hide(mFragment1); 92 else ft.hide(mFragment2);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
filecmp.py | 79 dircmp(a,b,ignore=None,hide=None)
83 HIDE is a list of names to hide,
97 filtered by hide and ignore.
110 def __init__(self, a, b, ignore=None, hide=None): # Initialize
113 if hide is None:
114 self.hide = [os.curdir, os.pardir] # Names never to be shown
116 self.hide = hide
124 self.hide+self.ignore) [all...] |
/external/python/cpython2/Lib/ |
filecmp.py | 80 dircmp(a,b,ignore=None,hide=None) 84 HIDE is a list of names to hide, 98 filtered by hide and ignore. 111 def __init__(self, a, b, ignore=None, hide=None): # Initialize 114 if hide is None: 115 self.hide = [os.curdir, os.pardir] # Names never to be shown 117 self.hide = hide 125 self.hide+self.ignore [all...] |
/external/python/cpython3/Lib/ |
filecmp.py | 89 dircmp(a, b, ignore=None, hide=None) 93 HIDE is a list of names to hide, 107 filtered by hide and ignore. 120 def __init__(self, a, b, ignore=None, hide=None): # Initialize 123 if hide is None: 124 self.hide = [os.curdir, os.pardir] # Names never to be shown 126 self.hide = hide 134 self.hide+self.ignore [all...] |
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/ |
FragmentMenuFragmentSupport.java | 92 else ft.hide(mFragment1); 94 else ft.hide(mFragment2);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
filecmp.py | 80 dircmp(a,b,ignore=None,hide=None) 84 HIDE is a list of names to hide, 98 filtered by hide and ignore. 111 def __init__(self, a, b, ignore=None, hide=None): # Initialize 114 if hide is None: 115 self.hide = [os.curdir, os.pardir] # Names never to be shown 117 self.hide = hide 125 self.hide+self.ignore [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
filecmp.py | 80 dircmp(a,b,ignore=None,hide=None) 84 HIDE is a list of names to hide, 98 filtered by hide and ignore. 111 def __init__(self, a, b, ignore=None, hide=None): # Initialize 114 if hide is None: 115 self.hide = [os.curdir, os.pardir] # Names never to be shown 117 self.hide = hide 125 self.hide+self.ignore [all...] |
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug223.go | 8 // and that closure cannot be used to hide it.
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug223.go | 8 // and that closure cannot be used to hide it.
|