HomeSort by relevance Sort by last modified time
    Searched full:canexecute (Results 1 - 25 of 36) sorted by null

1 2

  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/io/
UnixFileTest.java 125 * @tests java.io.File#canExecute()
129 assertFalse(testFile.canExecute());
131 assertTrue(testFile.canExecute());
133 assertTrue(testFile.canExecute());
136 assertFalse(testFile.canExecute());
138 assertFalse(testFile.canExecute());
141 assertTrue(testFile.canExecute());
144 assertTrue(testDir.canExecute());
147 assertTrue(testDir.canExecute());
149 assertFalse(testDir.canExecute());
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_manager_commands.js 34 Command.prototype.canExecute = function(event, fileManager) {};
100 event.canExecute = fileManager.isOnDrive();
113 event.canExecute = enabled;
122 event.canExecute = true;
189 node.addEventListener('canExecute', function(event) {
191 event.canExecute = document.queryCommandEnabled(event.command.id);
203 canExecute: function(event, fileManager) {
204 event.canExecute = fileManager.document.queryCommandEnabled(
219 canExecute: function(event, fileManager) {
220 event.canExecute = index > 0 &
    [all...]
  /external/chromium_org/ui/webui/resources/js/cr/ui/
command.js 9 * When the focus changes in the document for each command a canExecute event
11 * enable and disable the command by setting the event.canExecute property.
200 * Dispatches a canExecute event on the target.
207 command.disabled = !e.canExecute;
290 * The event type used for canExecute events.
297 var e = new Event('canExecute', {bubbles: true});
318 get canExecute() {
321 set canExecute(canExecute) {
322 this.canExecute_ = !!canExecute;
    [all...]
  /external/chromium_org/chrome/browser/resources/bookmark_manager/js/
main.js 392 * Helper function that updates the canExecute and labels for the open-like
414 e.canExecute = false;
421 e.canExecute = !disabled;
450 e.canExecute = canEdit;
454 e.canExecute = true;
457 e.canExecute = !list.isSearch() &&
464 e.canExecute = true;
473 * Helper function for handling canExecute for the list and the tree.
491 e.canExecute = !isSearch && canEdit && !unmodifiable;
514 e.canExecute = !!lastDeletedNodes
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
AbiTest.java 51 } else if (f.getName().endsWith(".so") || f.canExecute()) {
  /cts/tests/tests/permission/src/android/permission/cts/
FileSystemPermissionTest.java 158 assertFalse(f.canExecute());
166 assertFalse(f.canExecute());
174 assertFalse(f.canExecute());
182 assertFalse(f.canExecute());
193 assertFalse(f.canExecute());
204 assertFalse(f.canExecute());
215 assertFalse(f.canExecute());
226 assertFalse(f.canExecute());
237 assertFalse(f.canExecute());
248 assertFalse(f.canExecute());
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
VpnServiceTest.java 116 assertFalse(file.canExecute());
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
SdkToolsLocator.java 85 if (!f.canExecute()) {
  /cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/
CommonExternalStorageTest.java 173 assertTrue("execute", path.canExecute());
191 assertTrue("execute", path.canExecute());
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
java.io.File.html 87 <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/java/io/File.html#canExecute()" target="_top"><code>canExecute</code></A>()</nobr>
  /external/chromium_org/chrome/browser/resources/bookmark_manager/
main.html 103 <!-- open * are handled in canExecute handler -->
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
wallpaper_manager.js 337 doc.addEventListener('canExecute', this.onCommandCanExecute_.bind(this));
381 event.canExecute = true;
385 event.canExecute = false;
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
FileTest.java 89 assertFalse(f.canExecute());
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkDebuggerTab.java 226 if (!f.exists() || !f.canExecute()) {
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
navigation_list.js 257 // Let's make sure 'canExecute' state of the command is properly set for
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
BuildFileCreator.java 326 dest.setExecutable(src.canExecute());
  /external/chromium_org/chrome/browser/resources/history/
history.js     [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebFrame.h 315 // canExecute().
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
org.eclipse.debug.core_3.6.0.v20100519.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-core-commands-3.6.0.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.commands_3.4.0.I20080509-2000.jar 
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-core-commands/3.6.0/
org-eclipse-core-commands-3.6.0.jar 
  /libcore/luni/src/main/java/java/io/
File.java 258 public boolean canExecute() {
    [all...]

Completed in 1004 milliseconds

1 2