HomeSort by relevance Sort by last modified time
    Searched defs:files (Results 76 - 100 of 446) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/android_webview/native/
aw_web_contents_delegate.cc 211 std::vector<ui::SelectedFileInfo> files; local
212 files.reserve(file_path_str.size());
218 files.push_back(ui::SelectedFileInfo(path, base::FilePath()));
230 rvh->FilesSelectedInChooser(files, mode);
  /external/chromium_org/content/renderer/pepper/
pepper_file_chooser_host.cc 7 #include "base/files/file_path.h"
36 std::vector<PepperFileChooserHost::ChosenFileInfo> files; local
38 files.push_back(PepperFileChooserHost::ChosenFileInfo(
41 host_->StoreChosenFiles(files);
50 std::vector<PepperFileChooserHost::ChosenFileInfo> files; local
52 files.push_back(PepperFileChooserHost::ChosenFileInfo(
56 host_->StoreChosenFiles(files);
100 const std::vector<ChosenFileInfo>& files) {
104 for (size_t i = 0; i < files.size(); i++) {
106 base::FilePath file_path(UTF8ToWide(files[i].path))
    [all...]
  /external/chromium_org/remoting/host/policy_hack/
policy_watcher_linux.cc 20 #include "base/files/file_enumerator.h"
21 #include "base/files/file_path.h"
22 #include "base/files/file_path_watcher.h"
41 // Amount of time we wait for the files on disk to settle before trying to load
42 // them. This alleviates the problem of reading partially written files and
83 // Stop watching for changes to files in the policies directory.
111 // Enumerate the files and find the most recent modification timestamp.
114 base::FileEnumerator::FILES);
131 // Enumerate the files and sort them lexicographically.
132 std::set<base::FilePath> files; local
    [all...]
  /external/doclava/src/com/google/doclava/
Doclava2.java 27 ArrayList<String> files = new ArrayList<String>(); local
28 files.add("frameworks/base/core/java/android/preference/VolumePreference.java");
29 files.add("frameworks/base/core/java/android/preference/SeekBarDialogPreference.java");
30 files.add("frameworks/base/core/java/android/view/ViewGroup.java");
31 files.add("frameworks/base/core/java/android/widget/FrameLayout.java");
32 files.add("frameworks/base/core/java/android/widget/DatePicker.java");
33 files.add("frameworks/base/core/java/android/widget/GridLayout.java");
35 for (String filename : files) {
55 ArrayList<String> files = new ArrayList<String>(); local
60 files.add(name)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/
TestChooser.java 200 * where to search for class files
210 // Get the list of the files contained in the package
211 File[] files = directory.listFiles(getFileFilter()); local
212 if (files != null) {
213 for (int i = 0; i < files.length; i++) {
214 // we are only interested in .class files
215 if (files[i].isDirectory()) {
217 addAllFilesInDirectory(files[i], allClasses,
218 packageName + files[i].getName() + ".", true);
221 Class result = load(packageName + files[i].getName())
    [all...]
  /external/junit/src/org/junit/rules/
TemporaryFolder.java 9 * The TemporaryFolder Rule allows creation of files and folders that are
98 * Delete all files and folders under the temporary folder.
107 File[] files= file.listFiles(); local
108 if (files != null)
109 for (File each : files)
  /external/libmtp/examples/
detect.c 118 LIBMTP_file_t *files; local
203 files = LIBMTP_Get_Filelisting_With_Callback(device, NULL, NULL);
204 if (files != NULL) {
206 file = files;
  /external/libnfc-nci/
Android.mk 1 # function to find all *.cpp files under a directory
2 define all-cpp-files-under
40 $(call all-c-files-under, $(NFA)/ce $(NFA)/dm $(NFA)/ee) \
41 $(call all-c-files-under, $(NFA)/hci $(NFA)/int $(NFA)/p2p $(NFA)/rw $(NFA)/sys) \
42 $(call all-c-files-under, $(NFC)/int $(NFC)/llcp $(NFC)/nci $(NFC)/ndef $(NFC)/nfc $(NFC)/tags) \
43 $(call all-c-files-under, src/adaptation) \
44 $(call all-cpp-files-under, src/adaptation) \
45 $(call all-c-files-under, src/gki) \
57 LOCAL_SRC_FILES := $(call all-c-files-under, $(HALIMPL)) \
58 $(call all-cpp-files-under, $(HALIMPL))
    [all...]
  /external/libvpx/libvpx/test/
vp9_thread_test.cc 139 } files[] = { local
146 for (int i = 0; i < static_cast<int>(sizeof(files) / sizeof(files[0])); ++i) {
148 EXPECT_STREQ(files[i].expected_md5, DecodeFile(files[i].name, t).c_str())
  /external/oprofile/daemon/
opd_sfile.h 3 * Management of sample files
31 * Each set of sample files (where a set is over the physical counter
35 * cg files are stored in the hash.
63 /** opened sample files */
64 odb_t files[OP_MAX_COUNTERS]; member in struct:sfile
65 /** extended sample files */
67 /** hash table of opened cg sample files */
87 /** sync sample files */
90 /** close sample files */
  /external/tremolo/Tremolo/
misc.c 46 static char **files=NULL; variable
98 if(!strcmp(file,files[i]))break;
102 if(!files){
103 files=malloc(filecount*sizeof(*files));
106 files=realloc(files,filecount*sizeof(*files));
109 files[i]=strdup(file);
163 if(!strcmp(file,files[i]))break
    [all...]
  /frameworks/base/core/java/android/app/backup/
FileBackupHelper.java 28 * files. Whenever backup is performed, all files changed since the last backup
36 * used only with small configuration files, not large binary files.
47 * Construct a helper to manage backup/restore of entire files within the
51 * @param files A list of the files to be backed up or restored.
53 public FileBackupHelper(Context context, String... files) {
58 mFiles = files;
62 * Based on <code>oldState</code>, determine which of the files from th
76 String[] files = mFiles; local
    [all...]
SharedPreferencesBackupHelper.java 106 String[] files = new String[N]; local
108 files[i] = context.getSharedPrefsFile(prefGroups[i]).getAbsolutePath();
112 performBackup_checked(oldState, data, newState, files, prefGroups);
  /ndk/toolchains/arm-linux-androideabi-clang3.2/
setup.mk 17 # toolchain any number of source files
20 # various sources into target object files, libraries or executables.
116 TARGET-process-src-files-tags = \
117 $(eval __arm_sources := $(call get-src-files-with-tag,arm)) \
118 $(eval __thumb_sources := $(call get-src-files-without-tag,arm)) \
119 $(eval __debug_sources := $(call get-src-files-with-tag,debug)) \
120 $(eval __release_sources := $(call get-src-files-without-tag,debug)) \
121 $(call set-src-files-target-cflags, \
124 $(call set-src-files-target-cflags,\
127 $(call set-src-files-target-cflags,
    [all...]
  /ndk/toolchains/arm-linux-androideabi-clang3.3/
setup.mk 17 # toolchain any number of source files
20 # various sources into target object files, libraries or executables.
116 TARGET-process-src-files-tags = \
117 $(eval __arm_sources := $(call get-src-files-with-tag,arm)) \
118 $(eval __thumb_sources := $(call get-src-files-without-tag,arm)) \
119 $(eval __debug_sources := $(call get-src-files-with-tag,debug)) \
120 $(eval __release_sources := $(call get-src-files-without-tag,debug)) \
121 $(call set-src-files-target-cflags, \
124 $(call set-src-files-target-cflags,\
127 $(call set-src-files-target-cflags,
    [all...]
  /ndk/toolchains/mipsel-linux-android-clang3.2/
setup.mk 17 # toolchain any number of source files
20 # various sources into target object files, libraries or executables.
82 TARGET-process-src-files-tags = \
83 $(eval __debug_sources := $(call get-src-files-with-tag,debug)) \
84 $(eval __release_sources := $(call get-src-files-without-tag,debug)) \
85 $(call set-src-files-target-cflags, \
88 $(call set-src-files-target-cflags,\
91 $(call set-src-files-text,$(__debug_sources),mips$(space)) \
92 $(call set-src-files-text,$(__release_sources),mips$(space)) \
  /ndk/toolchains/mipsel-linux-android-clang3.3/
setup.mk 17 # toolchain any number of source files
20 # various sources into target object files, libraries or executables.
82 TARGET-process-src-files-tags = \
83 $(eval __debug_sources := $(call get-src-files-with-tag,debug)) \
84 $(eval __release_sources := $(call get-src-files-without-tag,debug)) \
85 $(call set-src-files-target-cflags, \
88 $(call set-src-files-target-cflags,\
91 $(call set-src-files-text,$(__debug_sources),mips$(space)) \
92 $(call set-src-files-text,$(__release_sources),mips$(space)) \
  /ndk/toolchains/x86-clang3.2/
setup.mk 17 # toolchain any number of source files
20 # various sources into target object files, libraries or executables.
81 TARGET-process-src-files-tags = \
82 $(eval __debug_sources := $(call get-src-files-with-tag,debug)) \
83 $(eval __release_sources := $(call get-src-files-without-tag,debug)) \
84 $(call set-src-files-target-cflags, $(__debug_sources), $(TARGET_x86_debug_CFLAGS)) \
85 $(call set-src-files-target-cflags, $(__release_sources),$(TARGET_x86_release_CFLAGS)) \
86 $(call set-src-files-text,$(LOCAL_SRC_FILES),x86$(space)$(space)) \
  /ndk/toolchains/x86-clang3.3/
setup.mk 17 # toolchain any number of source files
20 # various sources into target object files, libraries or executables.
81 TARGET-process-src-files-tags = \
82 $(eval __debug_sources := $(call get-src-files-with-tag,debug)) \
83 $(eval __release_sources := $(call get-src-files-without-tag,debug)) \
84 $(call set-src-files-target-cflags, $(__debug_sources), $(TARGET_x86_debug_CFLAGS)) \
85 $(call set-src-files-target-cflags, $(__release_sources),$(TARGET_x86_release_CFLAGS)) \
86 $(call set-src-files-text,$(LOCAL_SRC_FILES),x86$(space)$(space)) \
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaUpgradeReceiver.java 61 String[] files = dbDir.list(); local
62 if (files == null) return;
63 for (int i=0; i<files.length; i++) {
64 String file = files[i];
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pep277.py 56 # Destroy directory dirname and all files under it, to one level.
68 files = set(filenames) variable in class:UnicodeFileTests
76 files = set()
77 for name in self.files:
82 files.add(name)
83 self.files = files
108 for name in self.files:
119 for name in self.files:
131 files = set(f for f in self.files if isinstance(f, unicode)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep277.py 56 # Destroy directory dirname and all files under it, to one level.
68 files = set(filenames) variable in class:UnicodeFileTests
76 files = set()
77 for name in self.files:
82 files.add(name)
83 self.files = files
108 for name in self.files:
119 for name in self.files:
131 files = set(f for f in self.files if isinstance(f, unicode)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
FinalPage.java 80 Collection<File> files = fileStatusMap.values(); local
81 if (files != null) {
82 sb.append("\n\n").append("Error on files:").append('\n');
83 for (File file : files) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
SimpleFile.java 61 else if (arg.getName().equals("files")) { //$NON-NLS-1$
62 ProcessArgument[][] files = arg.getComplexArrayValue(); local
63 for (ProcessArgument[] file : files) {
84 // Find bundle to find source files
93 // don't overwrite files if they exist already
  /build/core/
product.mk 18 # Functions for including AndroidProducts.mk files
27 # Returns the list of all AndroidProducts.mk files.
30 define _find-android-products-files
38 # variables set in the given AndroidProducts.mk files.
39 # $(1): the list of AndroidProducts.mk files.
56 # variables set in all AndroidProducts.mk files.
60 $(call get-product-makefiles,$(_find-android-products-files))
285 define add-to-product-copy-files-if-exists

Completed in 617 milliseconds

1 2 34 5 6 7 8 91011>>