Searched refs:exclusive (Results 1 - 25 of 45) sorted by relevance

12

/external/webkit/Source/WebCore/fileapi/
H A DWebKitFlags.h43 static PassRefPtr<WebKitFlags> create(bool create = false, bool exclusive = false)
45 return adoptRef(new WebKitFlags(create, exclusive));
51 void setExclusive(bool exclusive) { m_exclusive = exclusive; } argument
54 WebKitFlags(bool create, bool exclusive) argument
56 , m_exclusive(exclusive)
H A DWebKitFlags.idl38 attribute boolean exclusive;
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java448 private int insert0(int pos, byte[] code, boolean exclusive) argument
456 pos = insertGapAt(pos, len, exclusive).position;
505 * Inserts an exclusive gap
524 * Inserts an exclusive gap in front of the instruction at the given
561 * Inserts an inclusive or exclusive gap in front of the instruction
569 * then it is included within that block. If the gap is exclusive,
588 * @param exclusive true if exclusive, otherwise false.
592 public Gap insertGapAt(int pos, int length, boolean exclusive) argument
596 * cursorPos indicates the next bytecode whichever exclusive i
796 insertGapCore0(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca) argument
817 insertGapCore1(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca) argument
853 insertGap2(byte[] code, int where, int gapLength, int endPos, byte[] newcode, boolean exclusive) argument
973 newOffset(int i, int offset, int where, int gapLength, boolean exclusive) argument
1014 shiftPc(int where, int gapLength, boolean exclusive) argument
1086 insertGapCore0w(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca, Gap newWhere) argument
1110 insertGap2w(byte[] code, int where, int gapLength, boolean exclusive, ArrayList jumps, Pointers ptrs) argument
1270 shift(int where, int gapLength, boolean exclusive) argument
1275 shiftOffset(int i, int offset, int where, int gapLength, boolean exclusive) argument
1347 shift(int where, int gapLength, boolean exclusive) argument
1435 shift(int where, int gapLength, boolean exclusive) argument
1458 shift(int where, int gapLength, boolean exclusive) argument
[all...]
H A DExceptionTable.java251 void shiftPc(int where, int gapLength, boolean exclusive) { argument
255 e.startPc = shiftPc(e.startPc, where, gapLength, exclusive);
256 e.endPc = shiftPc(e.endPc, where, gapLength, exclusive);
257 e.handlerPc = shiftPc(e.handlerPc, where, gapLength, exclusive);
262 boolean exclusive) {
263 if (pc > where || (exclusive && pc == where))
261 shiftPc(int pc, int where, int gapLength, boolean exclusive) argument
H A DStackMap.java375 void shiftPc(int where, int gapSize, boolean exclusive) argument
378 new Shifter(this, where, gapSize, exclusive).visit();
383 private boolean exclusive; field in class:StackMap.Shifter
385 public Shifter(StackMap smt, int where, int gap, boolean exclusive) { argument
389 this.exclusive = exclusive;
393 if (exclusive ? where <= offset : where < offset)
H A DLineNumberAttribute.java172 void shiftPc(int where, int gapLength, boolean exclusive) { argument
177 if (pc > where || (exclusive && pc == where))
H A DStackMapTable.java788 void shiftPc(int where, int gapSize, boolean exclusive) argument
791 new Shifter(this, where, gapSize, exclusive).doit();
799 private boolean exclusive; field in class:StackMapTable.Shifter
801 public Shifter(StackMapTable smt, int where, int gap, boolean exclusive) { argument
808 this.exclusive = exclusive;
829 if (exclusive)
876 if (exclusive)
H A DLocalVariableAttribute.java180 void shiftPc(int where, int gapLength, boolean exclusive) { argument
189 if (pc > where || (exclusive && pc == where && pc != 0))
191 else if (pc + len > where || (exclusive && pc + len == where))
/external/webkit/Source/WebKit/chromium/public/
H A DWebFileSystem.h82 // If |exclusive| is true, it fails if the |path| already exists.
83 // If |exclusive| is false, it succeeds if the |path| already exists or
88 virtual void createFile(const WebString& path, bool exclusive, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); } argument
92 // If |exclusive| is true, it fails if the |path| already exists.
93 // If |exclusive| is false, it succeeds if the |path| already exists or it has successfully created a new directory at |path|.
98 virtual void createDirectory(const WebString& path, bool exclusive, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); } argument
/external/webkit/Source/WebKit/chromium/src/
H A DAsyncFileSystemChromium.h61 virtual void createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
62 virtual void createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
H A DAsyncFileSystemChromium.cpp89 void AsyncFileSystemChromium::createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
91 m_webFileSystem->createFile(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks));
94 void AsyncFileSystemChromium::createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
96 m_webFileSystem->createDirectory(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks));
H A DWorkerAsyncFileSystemChromium.h70 virtual void createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
71 virtual void createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
H A DWorkerFileSystemCallbacksBridge.cpp189 void WorkerFileSystemCallbacksBridge::postCreateFileToMainThread(WebFileSystem* fileSystem, const String& path, bool exclusive, const String& mode) argument
191 dispatchTaskToMainThread(createCallbackTask(&createFileOnMainThread, fileSystem, path, exclusive, this, mode));
194 void WorkerFileSystemCallbacksBridge::postCreateDirectoryToMainThread(WebFileSystem* fileSystem, const String& path, bool exclusive, const String& mode) argument
197 dispatchTaskToMainThread(createCallbackTask(&createDirectoryOnMainThread, fileSystem, path, exclusive, this, mode));
252 void WorkerFileSystemCallbacksBridge::createFileOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
254 fileSystem->createFile(path, exclusive, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode));
257 void WorkerFileSystemCallbacksBridge::createDirectoryOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
259 fileSystem->createDirectory(path, exclusive, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode));
H A DWorkerAsyncFileSystemChromium.cpp115 void WorkerAsyncFileSystemChromium::createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
117 createWorkerFileSystemCallbacksBridge(callbacks)->postCreateFileToMainThread(m_webFileSystem, path, exclusive, m_modeForCurrentOperation);
120 void WorkerAsyncFileSystemChromium::createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
122 createWorkerFileSystemCallbacksBridge(callbacks)->postCreateDirectoryToMainThread(m_webFileSystem, path, exclusive, m_modeForCurrentOperation);
H A DWorkerFileSystemCallbacksBridge.h93 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);
/external/webkit/Source/WebCore/platform/
H A DAsyncFileSystem.h100 // 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/oprofile/events/mips/r12000/
H A Devents34 event:0x1e counters:0,1,2,3 um:zero minimum:500 name:STORE_PREFETCH_EXCLUSIVE_TO_CLEAN_SC_BLOCK : Store/prefetch exclusive to clean block in secondary cache
35 event:0x1f counters:0,1,2,3 um:zero minimum:500 name:STORE_PREFETCH_EXCLUSIVE_SHARED_SC_BLOCK : Store/prefetch exclusive to shared block in secondary
/external/oprofile/events/i386/atom/
H A Dunit_masks48 name:macro_insts type:exclusive default:0x03
51 name:simd_uops_exec type:exclusive default:0x80
118 0x04 exclusive Counts exclusive state
/external/zlib/src/
H A Dgzlib.c103 int exclusive = 0; local
151 exclusive = 1;
228 (exclusive ? O_EXCL : 0) |
/external/chromium/base/
H A Dfile_util_proxy.h108 // if |exclusive| is true and dir already exists.
112 bool exclusive,
H A Dfile_util_proxy.cc387 bool exclusive,
392 exclusive_(exclusive),
799 bool exclusive,
803 file_path, exclusive, recursive, callback));
385 RelayCreateDirectory( const FilePath& file_path, bool exclusive, bool recursive, base::FileUtilProxy::StatusCallback* callback) argument
796 CreateDirectory( scoped_refptr<MessageLoopProxy> message_loop_proxy, const FilePath& file_path, bool exclusive, bool recursive, StatusCallback* callback) argument
/external/oprofile/events/mips/sb1/
H A Devents44 event:0xa counters:1,2,3 um:zero minimum:500 name:DCACHE_FILLED_SHD_NONC_EXC :Dcache is filled (shared, nonc, exclusive)
49 event:0x7 counters:1,2,3 um:zero minimum:500 name:UPGRADE_SHARED_TO_EXCLUSIVE :A line is upgraded from shared to exclusive
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestMenu.java114 public void setGroupCheckable(int group, boolean checkable, boolean exclusive) { argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
H A DMenuLoaderTest.java128 boolean exclusive) {
127 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
/external/webkit/Source/WebCore/bindings/scripts/
H A DCodeGenerator.pm437 $ret =~ s/^exclusive/isExclusive/ if $ret =~ /^exclusive$/;

Completed in 450 milliseconds

12