HomeSort by relevance Sort by last modified time
    Searched full:readonly (Results 576 - 600 of 2256) sorted by null

<<21222324252627282930>>

  /frameworks/compile/mclinker/unittests/
UniqueGCFactoryBaseTest.cpp 79 MemoryArea* area1 = memFactory->produce(path1, FileHandle::ReadOnly);
80 MemoryArea* area2 = memFactory->produce(path2, FileHandle::ReadOnly);
83 MemoryArea* area3 = memFactory->produce(path1, FileHandle::ReadOnly);
  /external/chromium_org/base/prefs/
json_pref_store_unittest.cc 66 EXPECT_FALSE(pref_store->ReadOnly());
78 EXPECT_FALSE(pref_store->ReadOnly());
163 ASSERT_FALSE(pref_store->ReadOnly());
202 ASSERT_FALSE(pref_store->ReadOnly());
237 EXPECT_FALSE(pref_store->ReadOnly());
252 ASSERT_FALSE(pref_store->ReadOnly());
  /external/llvm/include/llvm/MC/
SectionKind.h 36 /// ReadOnly - Data that is never written to at program runtime by the
37 /// program or the dynamic linker. Things in the top-level readonly
39 ReadOnly,
127 /// ReadOnlyWithRelLocal - This is data that is readonly by the
141 return K == ReadOnly || isMergeableCString() ||
209 static SectionKind getReadOnly() { return get(ReadOnly); }
  /external/llvm/test/CodeGen/ARM/
call-tc.ll 45 define double @t4(double %a) nounwind readonly ssp {
51 %0 = tail call double @sin(double %a) nounwind readonly ; <double> [#uses=1]
55 define float @t5(float %a) nounwind readonly ssp {
61 %0 = tail call float @sinf(float %a) nounwind readonly ; <float> [#uses=1]
65 declare float @sinf(float) nounwind readonly
67 declare double @sin(double) nounwind readonly
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeVisitorAction.cs 65 private readonly Func<object, object> _preAction;
66 private readonly Func<object, object> _postAction;
  /external/chromium/chrome/browser/
transport_security_persister.cc 15 TransportSecurityPersister::TransportSecurityPersister(bool readonly)
17 readonly_(readonly) {
  /external/chromium/chrome/browser/ui/cocoa/
base_bubble_controller.h 36 @property(nonatomic, readonly) NSWindow* parentWindow;
38 @property(nonatomic, readonly) InfoBubbleView* bubble;
  /external/chromium/chrome/browser/ui/cocoa/content_settings/
collected_cookies_mac.h 97 @property(readonly, nonatomic) NSTreeController* allowedTreeController;
98 @property(readonly, nonatomic) NSTreeController* blockedTreeController;
  /external/chromium/chrome/browser/ui/cocoa/extensions/
browser_action_button.h 78 @property(readonly, nonatomic) BOOL isBeingDragged;
79 @property(readonly, nonatomic) const Extension* extension;
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bubble_controller.h 44 @property(readonly, nonatomic) const BookmarkNode* node;
72 @property(nonatomic, readonly) NSView* syncPromoPlaceholder;
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
browser_action_button.h 70 @property(readonly, nonatomic) BOOL isBeingDragged;
71 @property(readonly, nonatomic) const extensions::Extension* extension;
  /external/chromium_org/chrome/browser/ui/cocoa/
nsview_additions_unittest.mm 20 @property(readonly, nonatomic) int removeCount;
21 @property(readonly, nonatomic) int addCount;
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestImplements.idl 34 static readonly attribute long implementsStaticReadOnlyAttr;
36 readonly attribute DOMString implementsStr1;
TestPartialInterface.idl 34 static readonly attribute long supplementalStaticReadOnlyAttr;
36 readonly attribute DOMString supplementalStr1;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAttributeNames.in 42 aria-readonly
284 readonly
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSeg.idl 52 readonly attribute unsigned short pathSegType;
53 readonly attribute DOMString pathSegTypeAsLetter;
SVGTextContentElement.idl 32 readonly attribute SVGAnimatedLength textLength;
33 readonly attribute SVGAnimatedEnumeration lengthAdjust;
  /external/chromium_org/third_party/sqlite/src/test/
temptable.test 356 catch {file attributes test.db -readonly 1}
359 error "Unable to make the database file test.db readonly - rerun this test as an unprivileged user"
367 error "Unable to make the database file test.db readonly - rerun this test as an unprivileged user"
372 } {1 {attempt to write a readonly database}}
386 error "Unable to make the database file test.db readonly - rerun this test as an unprivileged user"
392 } {1 {attempt to write a readonly database}}
417 # -readonly flag is taken so seriously that a subsequent [file delete -force]
420 catch {file attributes test.db -readonly 0}
tkt4018.test 83 sqlite3 db2 test.db -readonly 1
86 } {1 {attempt to write a readonly database}}
  /external/chromium_org/v8/test/webkit/fast/js/kde/
prototype_length.js 35 // check !ReadOnly
38 // check ReadOnly
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 66 * Database in readonly mode.
68 private boolean readonly = false; field in class:JDBCConnection
108 private DatabaseX open(boolean readonly) throws SQLException {
112 dbx.open(dbfile, readonly ? SQLite.Constants.SQLITE_OPEN_READONLY :
158 db = open(readonly);
235 return readonly;
341 if (ro != readonly) {
348 readonly = ro;
  /external/llvm/test/Analysis/ScalarEvolution/
2008-06-12-BinomialInt64.ll 25 %tmp8 = tail call i32 @atoi( i8* null ) nounwind readonly ; <i32> [#uses=1]
43 declare i32 @atoi(i8*) nounwind readonly
  /external/llvm/test/Analysis/TypeBasedAliasAnalysis/
intrinsics.ll 22 declare <8 x i16> @llvm.arm.neon.vld1.v8i16(i8*, i32) nounwind readonly
25 ; CHECK: attributes #0 = { nounwind readonly }
  /external/llvm/test/CodeGen/X86/
2008-10-27-CoalescerBug.ll 30 %6 = tail call double @sin(double %5) nounwind readonly ; <double> [#uses=1]
52 declare double @sin(double) nounwind readonly
2009-03-12-CPAlignBug.ll 4 declare double @llvm.sqrt.f64(double) nounwind readonly
8 declare double @llvm.pow.f64(double, double) nounwind readonly

Completed in 1166 milliseconds

<<21222324252627282930>>