HomeSort by relevance Sort by last modified time
    Searched refs:folder (Results 126 - 150 of 1625) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
JavaAnalyzer.java 147 File folder = new File(".").getAbsoluteFile(); local
148 while (folder != null && folder.exists()) {
149 File f = new File(folder, "local.properties");
163 folder = folder.getParentFile();
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MultiFoldersSelectionDialog.java 32 import com.android.mail.providers.Folder;
47 * Displays a folder selection dialog for the conversation provided. It allows
111 final List<Folder> rawFolders = conversation.getRawFolders();
114 checked.addAll(Arrays.asList(Folder.getUriArray(rawFolders)));
117 // belong to the folder we are currently looking at.
131 // will have divided folder sections.
202 final Folder folder = ((FolderRow)item).getFolder(); local
203 mOperations.put(folder.folderUri.fullUri,
204 new FolderOperation(folder, false))
210 final Folder folder = row.getFolder(); local
    [all...]
HierarchicalFolderSelectorAdapter.java 32 import com.android.mail.providers.Folder;
49 int layout, Folder excludedFolder) {
58 final Folder folder = row.getFolder(); local
61 final CharSequence displayText = TextUtils.isEmpty(row.mPathName) ? folder.name
64 checkBox.setText(TextUtils.isEmpty(row.mPathName) ? folder.name
74 * 1) If there is just a folder name, return that.
75 * 2) If there is a single parent and a folder name, return parent/folder.
76 * 3) If there is > 1 but < 3 ancestors, return ancestor/ancestor2/folder
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java 48 import com.android.emailcommon.mail.Folder;
49 import com.android.emailcommon.mail.Folder.FolderType;
50 import com.android.emailcommon.mail.Folder.OpenMode;
82 /** Default folder name. In order to test for encoding, we use a non-ascii name. */
84 /** Folder name encoded in UTF-7. */
87 * Flag bits to specify whether or not a folder can be selected. This corresponds to
105 private Folder mCopyToFolder;
186 // TODO: inject specific facts in the initial folder SELECT and check them here
507 // Now open the folder. Although the server indicates ID in the capabilities,
513 * Test small Folder functions that don't really do anything in Ima
1450 final Folder folder = mStore.getFolder("test"); local
1512 Folder folder = mStore.getFolder("\\u65E5\\u672C\\u8A9E"); local
1539 Folder folder = mStore.getFolder("\\u65E5\\u672C\\u8A9E"); local
2080 Folder folder = mStore.getFolder("INBOX"); local
2308 ImapFolder folder = new ImapFolder(null, serverId); local
2345 testMap.put(folder.getName(), folder); local
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/
Pop3Store.java 30 import com.android.emailcommon.mail.Folder;
31 import com.android.emailcommon.mail.Folder.OpenMode;
61 private final HashMap<String, Folder> mFolders = new HashMap<String, Folder>();
95 public Folder getFolder(String name) {
96 Folder folder = mFolders.get(name); local
97 if (folder == null) {
98 folder = new Pop3Folder(name);
99 mFolders.put(folder.getName(), folder) local
127 Pop3Folder folder = new Pop3Folder(POP3_MAILBOX_NAME); local
    [all...]
  /external/caliper/caliper/src/test/java/com/google/caliper/config/
CaliperConfigTest.java 46 @Rule public TemporaryFolder folder = new TemporaryFolder(); field in class:CaliperConfigTest
64 File tempBaseDir = folder.newFolder();
74 File tempBaseDir = folder.newFolder();
85 File jdkHome = folder.newFolder();
102 File jdkHome = folder.newFolder();
LoggingConfigLoaderTest.java 55 @Rule public TemporaryFolder folder = new TemporaryFolder(); field in class:LoggingConfigLoaderTest
67 this.caliperDirectory = folder.newFolder();
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
FolderPreferences.java 26 import com.android.mail.providers.Folder;
37 * Preferences relevant to one specific folder. In Email, this would only be used for an account's
42 private static final String PREFS_NAME_PREFIX = "Folder";
53 * once for the folder (<code>false</code>)
67 private final Folder mFolder;
74 * @param folder The folder
76 public FolderPreferences(final Context context, final String accountEmail, final Folder folder,
78 this(context, accountEmail, folder, folder.persistentId
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/
Mocks.java 152 IAbstractFolder folder = createNiceMock(IAbstractFolder.class); local
153 expect(folder.getName()).andReturn(name).anyTimes();
155 expect(folder.listMembers()).andReturn(members).anyTimes();
156 replay(folder);
158 return folder;
  /external/eigen/unsupported/Eigen/src/SparseExtra/
MatrixMarketIterator.h 22 * @brief Iterator to browse matrices from a specified folder
24 * This is used to load all the matrices from a folder.
50 MatrixMarketIterator(const std::string &folder)
51 : m_sym(0), m_isvalid(false), m_matIsLoaded(false), m_hasRhs(false), m_hasrefX(false), m_folder(folder)
53 m_folder_id = opendir(folder.c_str());
190 // Here, we return with the next valid matrix in the folder
195 // Discard if it is a folder
  /packages/apps/Email/provider_src/com/android/email/provider/
FolderPickerDialog.java 33 import com.android.mail.providers.Folder;
46 private final HashMap<Folder, Boolean> mCheckedState;
53 // Mapping of a folder's uri to its checked state
54 mCheckedState = new HashMap<Folder, Boolean>();
129 Folder folder = null; local
130 for (Entry<Folder, Boolean> entry : mCheckedState.entrySet()) {
132 folder = entry.getKey();
136 mCallback.select(folder);
  /packages/apps/Email/src/com/android/email2/ui/
MailActivityEmail.java 37 import com.android.mail.providers.Folder;
126 LogUtils.e(LOG_TAG, "Null folder cursor for account %d, mailbox %d",
131 Folder folder = null; local
134 folder = new Folder(folderCursor);
136 LogUtils.e(LOG_TAG, "Empty folder cursor for account %d, mailbox %d",
144 return Utils.createViewFolderIntent(this, folder.folderUri.fullUri, account);
  /cts/tools/vm-tests-tf/src/util/build/
JarBuildStep.java 48 File tempFile = new File(inputFile.folder, outputJarEntryName);
68 // Find the input. We'll need to look into the input folder, but check with the
69 // (relative) destination filename (this is effectively removing the inputFile folder
71 Path absoluteInputPath = Paths.get(inputFile.folder.getAbsolutePath())
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/
__init__.py 85 getbaseclasses(folder)
116 'cfol' : folder,
  /frameworks/av/services/audiopolicy/engineconfigurable/
Android.mk 60 # Recursive call sub-folder Android.mk
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapBmessage.java 113 public BluetoothMapBmessage setFolder(String folder) {
114 mBmsgFolder = folder;
161 json.put("folder", mBmsgFolder);
  /frameworks/support/lifecycle/compiler/src/tests/kotlin/android/arch/lifecycle/utils/
TestUtils.kt 29 fun load(fullClassName: String, folder: String): JavaFileObject {
30 val folderPath = "src/tests/test-data/${if (folder.isEmpty()) "" else folder + "/"}"
  /hardware/interfaces/media/omx/1.0/vts/functional/
README.md 12 This folder includes test fixtures that tests aspects common to all omx compatible components. For instance, port enabling/disabling, enumerating port formats, state transitions, flush, ..., stay common to all components irrespective of the service they offer. Test fixtures here are directed towards testing these (omx core). Every standard OMX compatible component is expected to pass these tests.
17 This folder includes test fixtures associated with testing audio encoder and decoder components such as simple encoding of a raw clip or decoding of an elementary stream, end of stream test, timestamp deviations test, flush test and so on. These tests are aimed towards testing the plugin that connects the component to the omx core.
26 This folder includes test fixtures associated with testing video encoder and decoder components such as simple encoding of a raw clip or decoding of an elementary stream, end of stream test, timestamp deviations test, flush test and so on. These tests are aimed towards testing the plugin that connects the component to the omx core.
34 While tesing audio/video encoder, decoder components, test fixtures require input files. These input are files are present in the folder 'res'. Before running the tests all the files in 'res' have to be placed in '/media/sdcard/' or a (…)
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
Bmessage.java 105 public Bmessage setFolder(String folder) {
106 mBmsgFolder = folder;
153 json.put("folder", mBmsgFolder);
  /packages/apps/Launcher3/src/com/android/launcher3/
Partner.java 94 int folder = getResources().getIdentifier(Partner.RES_FOLDER, local
96 return folder != 0;
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
__init__.py 85 getbaseclasses(folder)
116 'cfol' : folder,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
__init__.py 85 getbaseclasses(folder)
116 'cfol' : folder,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
Locale.java 74 * Constructs a new {@linkplain Locale} for the given folder configuration
76 * @param folder the folder configuration
79 public static Locale create(FolderConfiguration folder) {
80 LocaleQualifier locale = folder.getLocaleQualifier();
  /sdk/eclipse/scripts/
build_adt.sh 37 # 2. Copy dependent jars into the libs folder of each plugin
46 echo Copying ADT plugins and bundle into destination folder
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
LauncherAccessibilityDelegate.java 37 import com.android.launcher3.folder.Folder;
59 FOLDER,
189 Folder folder = Folder.getOpen(mLauncher); local
190 folder.close(true);
192 folder.getInfo().remove(info, false);
359 mDragInfo.dragType = DragType.FOLDER;
370 Folder folder = Folder.getOpen(mLauncher) local
    [all...]

Completed in 2958 milliseconds

1 2 3 4 56 7 8 91011>>