Searched refs:isReadOnly (Results 1 - 25 of 79) sorted by relevance

1234

/external/jetty/src/java/org/eclipse/jetty/io/
H A DView.java56 _access=buffer.isReadOnly()?READONLY:READWRITE;
75 _access=buffer.isReadOnly()?READONLY:READWRITE;
147 * @return Whether the underlying buffer is {@link Buffer#isReadOnly read only}
150 public boolean isReadOnly() method in class:View
152 return _buffer.isReadOnly();
H A DBuffer.java173 boolean isReadOnly(); method in interface:Buffer
H A DAbstractBuffer.java115 if (isReadOnly()) return this;
124 if (b.isReadOnly())
145 if (isReadOnly()) throw new IllegalStateException(__READONLY);
331 public boolean isReadOnly() method in class:AbstractBuffer
370 _view = new View(this, -1, index, index + length, isReadOnly() ? READONLY : READWRITE);
388 if (isReadOnly())
435 if (isReadOnly())
H A DByteArrayBuffer.java124 if (isReadOnly())
286 if (isReadOnly())
303 if (isReadOnly())
338 if (isReadOnly())
/external/llvm/lib/Target/PowerPC/
H A DPPCTargetObjectFile.cpp42 if (Kind.isReadOnly()) {
/external/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h61 bool isReadOnly) override;
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetObjectFile.cpp27 if (Kind.isReadOnly() && AMDGPU::isReadOnlySegment(GV))
/external/llvm/lib/Target/XCore/
H A DXCoreTargetObjectFile.cpp105 if (IsCPRel && !Kind.isReadOnly())
129 if (Kind.isReadOnly()) return UseCPRel? ReadOnlySection
136 if (Kind.isReadOnly()) return UseCPRel? ReadOnlySectionLarge
153 assert((Kind.isReadOnly() || Kind.isReadOnlyWithRel()) &&
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITMemoryManagerTest.cpp90 const bool isReadOnly = i % 2 == 0; local
93 data[i] = MemMgr->allocateDataSection(32, 0, 2, "", isReadOnly);
128 bool isReadOnly = i % 3 == 0; local
133 isReadOnly);
H A DMCJITCAPITest.cpp46 LLVMBool isReadOnly) {
50 size, alignment, sectionID, sectionName, isReadOnly);
42 roundTripAllocateDataSection(void *object, uintptr_t size, unsigned alignment, unsigned sectionID, const char *sectionName, LLVMBool isReadOnly) argument
/external/jetty/src/java/org/eclipse/jetty/io/nio/
H A DDirectNIOBuffer.java146 if (isReadOnly()) throw new IllegalStateException(__READONLY);
156 if (isReadOnly()) throw new IllegalStateException(__READONLY);
201 if (isReadOnly()) throw new IllegalStateException(__READONLY);
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DSSLEngineTest.java102 assertTrue("Not read only byte buffer", roBb.isReadOnly());
140 assertTrue("Not read only byte buffer", roBb.isReadOnly());
234 assertTrue("Not read only byte buffer", roBb.isReadOnly());
273 assertTrue("Not read only byte buffer", bbA[2].isReadOnly());
/external/llvm/include/llvm/MC/
H A DSectionKind.h118 bool isReadOnly() const { function in class:llvm::SectionKind
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DProtectionDomainTest.java84 assertFalse(perms.isReadOnly());
86 assertTrue(perms.isReadOnly());
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.variables_3.2.400.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp228 if (Kind.isReadOnly())
356 if (Kind.isReadOnly())
578 if (Kind.isReadOnly())
610 if (Kind.isReadOnly())
809 else if (K.isReadOnly() || K.isReadOnlyWithRel())
901 if (Kind.isReadOnly() || Kind.isReadOnlyWithRel())
950 if (Kind.isReadOnly() || Kind.isReadOnlyWithRel())
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp329 bool isReadOnly) override;
365 StringRef SectionName, bool isReadOnly) {
368 isReadOnly);
363 allocateDataSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool isReadOnly) argument
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_Connection1.java99 public boolean isReadOnly() throws SQLException { method in class:TestHelper_Connection1
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java292 Assert.assertEquals(initPC.isReadOnly(), dserPC.isReadOnly());
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DLiteralByteStringTest.java213 assertTrue(byteBuffer.isReadOnly());
225 assertTrue(byteBuffer.isReadOnly());
/external/v8/test/mjsunit/
H A Dmirror-object.js92 assertFalse(property_mirror.isReadOnly());
198 assertTrue(math_mirror.property("E").isReadOnly());
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp190 if (PD->isReadOnly())
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCResultSetMetaData.java176 public boolean isReadOnly(int column) throws java.sql.SQLException { method in class:JDBCResultSetMetaData
/external/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp281 if (Kind.isReadOnly() && ReadOnlySection != nullptr)
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLEngineImpl.java401 } else if (dst.isReadOnly()) {
520 } else if (dst.isReadOnly()) {

Completed in 795 milliseconds

1234