/external/chromium/chrome/common/extensions/docs/static/ |
experimental.debugger.html | 19 Chrome Developer Tools with it are mutually exclusive. If extension is attached
|
/external/chromium/chrome/common/extensions/ |
extension_icon_set.h | 30 // size. MatchType is exclusive (do not OR them together).
|
/external/chromium/net/base/ |
net_errors.h | 35 // (inclusive) to net::ERR_CERT_END (exclusive) in *decreasing* order.
|
/external/jsr305/ri/src/main/java/javax/annotation/meta/ |
Exhaustive.java | 12 * Applications of the type qualifier with different values are exclusive, and
|
/external/oprofile/events/x86-64/family12h/ |
unit_masks | 27 0x04 Exclusive-state line from L2
|
/external/oprofile/events/x86-64/family14h/ |
unit_masks | 27 0x04 Exclusive-state line from L2
|
/external/webkit/Source/WebCore/fileapi/ |
WebKitFlags.idl | 38 attribute boolean exclusive;
|
/external/webkit/Source/WebCore/platform/ |
AsyncFileSystem.h | 100 // Creates a file at a given path. If exclusive flag is true, it fails if the path already exists. 103 virtual void createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>) = 0; 105 // Creates a directory at a given path. If exclusive flag is true, it fails if the path already exists. 108 virtual void createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
|
/external/webkit/Source/WebKit/chromium/src/ |
AsyncFileSystemChromium.cpp | 89 void AsyncFileSystemChromium::createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) 91 m_webFileSystem->createFile(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks)); 94 void AsyncFileSystemChromium::createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) 96 m_webFileSystem->createDirectory(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks));
|
WorkerAsyncFileSystemChromium.cpp | 115 void WorkerAsyncFileSystemChromium::createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) 117 createWorkerFileSystemCallbacksBridge(callbacks)->postCreateFileToMainThread(m_webFileSystem, path, exclusive, m_modeForCurrentOperation); 120 void WorkerAsyncFileSystemChromium::createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) 122 createWorkerFileSystemCallbacksBridge(callbacks)->postCreateDirectoryToMainThread(m_webFileSystem, path, exclusive, m_modeForCurrentOperation);
|
WorkerAsyncFileSystemChromium.h | 70 virtual void createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>); 71 virtual void createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
|
WorkerFileSystemCallbacksBridge.h | 93 void postCreateFileToMainThread(WebFileSystem*, const String& path, bool exclusive, const String& mode); 94 void postCreateDirectoryToMainThread(WebFileSystem*, const String& path, bool exclusive, const String& mode); 116 static void createFileOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem*, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge*, const String& mode); 117 static void createDirectoryOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem*, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge*, const String& mode);
|
/frameworks/base/docs/html/design/building-blocks/ |
switches.jd | 17 <p>Radio buttons allow the user to select one option from a set. Use radio buttons for exclusive
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/ |
nlm_prot.h | 29 bool_t exclusive; member in struct:nlm_holder 75 bool_t exclusive; member in struct:nlm_lockargs 85 bool_t exclusive; member in struct:nlm_cancargs 92 bool_t exclusive; member in struct:nlm_testargs
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
MenuItemImpl.java | 75 private static final int EXCLUSIVE = 0x00000004; 423 public void setExclusiveCheckable(boolean exclusive) { 424 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0); 428 return (mFlags & EXCLUSIVE) != 0; 436 if ((mFlags & EXCLUSIVE) != 0) { 438 // exclusive checkable group 545 // Mutually exclusive options selected! 547 + " and SHOW_AS_ACTION_NEVER are mutually exclusive.") [all...] |
/dalvik/dexgen/src/com/android/dexgen/util/ |
Bits.java | 31 * Constructs a bit set to contain bits up to the given index (exclusive). 33 * @param max {@code >= 0;} the maximum bit index (exclusive) 42 * Gets the maximum index (exclusive) for the given bit set. 45 * @return {@code >= 0;} the maximum index (exclusive) that may be set 148 * @param end {@code >= 0;} index of the last bit in the range (exclusive)
|
/dalvik/dx/src/com/android/dx/util/ |
Bits.java | 31 * Constructs a bit set to contain bits up to the given index (exclusive). 33 * @param max {@code >= 0;} the maximum bit index (exclusive) 42 * Gets the maximum index (exclusive) for the given bit set. 45 * @return {@code >= 0;} the maximum index (exclusive) that may be set 148 * @param end {@code >= 0;} index of the last bit in the range (exclusive)
|
/libcore/luni/src/main/java/java/util/ |
TreeMap.java | 698 Bound fromBound = fromInclusive ? INCLUSIVE : EXCLUSIVE; 699 Bound toBound = toInclusive ? INCLUSIVE : EXCLUSIVE; 704 return new BoundedMap(true, fromInclusive, INCLUSIVE, toExclusive, EXCLUSIVE); 708 Bound toBound = inclusive ? INCLUSIVE : EXCLUSIVE; 713 return new BoundedMap(true, null, NO_BOUND, toExclusive, EXCLUSIVE); 717 Bound fromBound = inclusive ? INCLUSIVE : EXCLUSIVE; [all...] |
/external/neven/FaceRecEm/common/src/b_FDSDK/ |
SDK.h | 64 /** pointer to preallocated exclusive (=persistent) memory (alternative to fpMalloc) */ 110 /** returns amount of allocated exclusive memory in bytes */
|
/external/ipsec-tools/src/include-glibc/net/ |
pfkeyv2.h | 40 /* three of followings are exclusive flags each them */
|
/external/oprofile/events/i386/atom/ |
unit_masks | 48 name:macro_insts type:exclusive default:0x03 51 name:simd_uops_exec type:exclusive default:0x80 118 0x04 exclusive Counts exclusive state
|
/external/webkit/LayoutTests/storage/ |
multiple-transactions-on-different-handles.js | 38 // Execute a write statement to make sure SQLite tries to acquire an exclusive lock on the DB file
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
file.h | 42 #define LOCK_EX 2 /* Exclusive lock. */
|
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
AbstractQueuedLongSynchronizer.java | 131 /** Marker to indicate a node is waiting in exclusive mode */ 132 static final Node EXCLUSIVE = null; 219 * when holding in exclusive mode, we just need a simple 222 * re-acquire. And because conditions can only be exclusive, 350 * @param mode Node.EXCLUSIVE for exclusive, Node.SHARED for shared 415 * propagation. (Note: For exclusive mode, release just amounts 587 * Various flavors of acquire, varying in exclusive/shared and 596 * Acquires in exclusive uninterruptible mode for thread already in 626 * Acquires in exclusive interruptible mode [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
isdn.h | 89 #define ISDN_USAGE_EXCLUSIVE 64 /* This bit is set, if channel is exclusive */ 124 int exclusive; /* Channel, if bound exclusive */ member in struct:__anon21060
|