HomeSort by relevance Sort by last modified time
    Searched refs:mutable (Results 1 - 25 of 946) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/util/
MutabilityControl.java 26 /** whether this instance is mutable */
27 private boolean mutable; field in class:MutabilityControl
30 * Constructs an instance. It is initially mutable.
33 mutable = true;
39 * @param mutable {@code true} iff this instance is mutable
41 public MutabilityControl(boolean mutable) {
42 this.mutable = mutable;
49 mutable = false
    [all...]
  /dalvik/dx/src/com/android/dx/util/
MutabilityControl.java 26 /** whether this instance is mutable */
27 private boolean mutable; field in class:MutabilityControl
30 * Constructs an instance. It is initially mutable.
33 mutable = true;
39 * @param mutable {@code true} iff this instance is mutable
41 public MutabilityControl(boolean mutable) {
42 this.mutable = mutable;
49 mutable = false
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
MutabilityControl.java 26 /** whether this instance is mutable */
27 private boolean mutable; field in class:MutabilityControl
30 * Constructs an instance. It is initially mutable.
33 mutable = true;
39 * @param mutable {@code true} iff this instance is mutable
41 public MutabilityControl(boolean mutable) {
42 this.mutable = mutable;
49 mutable = false
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p10.cpp 7 mutable const int f0; // expected-error{{'mutable' and 'const' cannot be mixed}}
8 mutable T0 f1; // expected-error{{'mutable' and 'const' cannot be mixed}}
9 mutable int &f2; // expected-error{{'mutable' cannot be applied to references}}
10 mutable T1 f3; // expected-error{{'mutable' cannot be applied to references}}
11 mutable struct s1 {}; // expected-error{{'mutable' can only be applied to member variables}
    [all...]
  /external/clang/test/CodeGenCXX/
static-mutable.cpp 4 mutable int n;
  /external/chromium_org/base/threading/
thread_checker_impl.h 35 mutable base::Lock lock_;
36 // This is mutable so that CalledOnValidThread can set it.
38 mutable PlatformThreadRef valid_thread_id_;
  /external/chromium_org/third_party/webrtc/base/
thread_checker_impl.h 43 mutable CriticalSection lock_;
44 // This is mutable so that CalledOnValidThread can set it.
46 mutable const Thread* valid_thread_;
  /external/chromium_org/base/
sequence_checker_impl.h 39 mutable Lock lock_;
43 mutable bool sequence_token_assigned_;
45 mutable SequencedWorkerPool::SequenceToken sequence_token_;
  /external/chromium_org/content/browser/android/java/
java_method.h 37 mutable base::android::ScopedJavaGlobalRef<jobject> java_method_;
38 mutable bool have_calculated_num_parameters_;
39 mutable size_t num_parameters_;
40 mutable std::vector<JavaType> parameter_types_;
41 mutable JavaType return_type_;
42 mutable bool is_static_;
43 mutable jmethodID id_;
  /external/chromium_org/ui/gfx/
font_list_impl.h 102 mutable std::vector<Font> fonts_;
110 mutable std::string font_description_string_;
113 mutable int common_height_;
114 mutable int common_baseline_;
117 mutable int font_style_;
118 mutable int font_size_;
  /external/clang/test/CXX/class/class.local/
p1-0x.cpp 10 (void)[]() mutable {
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
native_theme_gtk2.h 66 mutable GtkWidget* fake_window_;
67 mutable GtkWidget* fake_tooltip_;
68 mutable OwnedWidgetGtk fake_entry_;
69 mutable OwnedWidgetGtk fake_label_;
70 mutable OwnedWidgetGtk fake_button_;
71 mutable OwnedWidgetGtk fake_tree_;
73 mutable OwnedWidgetGtk fake_menu_;
74 mutable GtkWidget* fake_menu_item_;
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
trace_posix.h 33 volatile mutable uint32_t prev_api_tick_count_;
34 volatile mutable uint32_t prev_tick_count_;
trace_win.h 31 volatile mutable uint32_t prev_api_tick_count_;
32 volatile mutable uint32_t prev_tick_count_;
  /external/clang/test/Parser/
cxx0x-lambda-expressions.cpp 21 [&] (int) mutable -> void {};
30 [] mutable -> int { return 0; }; // expected-error{{lambda requires '()' before 'mutable'}}
63 [n(0)] () mutable -> int { return ++n; }; // expected-warning{{extension}}
65 [n = 0] { return ++n; }; // expected-error {{captured by copy in a non-mutable}} expected-warning{{extension}}
80 mutable {}; // expected-error {{expected body of lambda expression}}
84 []() mutable [[]] -> void {};
85 []() mutable noexcept [[]] -> void {};
88 // before the mutable specifier instead of after (unlike C++11).
89 []() __attribute__((noreturn)) mutable { while(1); }
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_io_data.h 586 mutable bool initialized_;
590 mutable scoped_ptr<ProfileParams> profile_params_;
593 mutable scoped_ptr<SigninNamesOnIOThread> signin_names_;
596 mutable base::Callback<scoped_ptr<net::ClientCertStore>()>
599 mutable StringPrefMember google_services_user_account_id_;
600 mutable StringPrefMember google_services_username_;
601 mutable StringPrefMember google_services_username_pattern_;
602 mutable BooleanPrefMember reverse_autologin_enabled_;
608 mutable StringListPrefMember one_click_signin_rejected_email_list_;
610 mutable scoped_refptr<MediaDeviceIDSalt> media_device_id_salt_
    [all...]
off_the_record_profile_io_data.h 91 mutable scoped_refptr<ChromeURLRequestContextGetter>
93 mutable scoped_refptr<ChromeURLRequestContextGetter>
95 mutable ChromeURLRequestContextGetterMap
101 mutable bool initialized_;
146 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_;
147 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_;
149 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_;
150 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_;
152 mutable scoped_ptr<net::SdchManager> sdch_manager_;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
Interpolation.h 32 mutable double m_cachedFraction;
33 mutable int m_cachedIteration;
34 mutable OwnPtrWillBeMember<InterpolableValue> m_cachedValue;
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
NavigatorStorageQuota.h 65 mutable PersistentWillBeMember<StorageQuota> m_storageQuota;
66 mutable PersistentWillBeMember<DeprecatedStorageQuota> m_temporaryStorage;
67 mutable PersistentWillBeMember<DeprecatedStorageQuota> m_persistentStorage;
WorkerNavigatorStorageQuota.h 58 mutable PersistentWillBeMember<DeprecatedStorageQuota> m_temporaryStorage;
59 mutable PersistentWillBeMember<DeprecatedStorageQuota> m_persistentStorage;
  /external/ceres-solver/internal/ceres/
implicit_schur_complement.h 87 // they depend on mutable arrays used for the temporaries needed to
158 mutable Vector tmp_rows_;
159 mutable Vector tmp_e_cols_;
160 mutable Vector tmp_e_cols_2_;
161 mutable Vector tmp_f_cols_;
  /external/chromium_org/chrome/browser/net/
chrome_http_user_agent_settings.h 37 mutable std::string last_pref_accept_language_;
38 mutable std::string last_http_accept_language_;
  /external/clang/test/SemaCXX/
class.cpp 69 mutable int mi;
70 mutable int &mir; // expected-error {{'mutable' cannot be applied to references}}
71 mutable void mfn(); // expected-error {{'mutable' cannot be applied to functions}}
72 mutable const int mci; // expected-error {{'mutable' and 'const' cannot be mixed}}
92 mutable int j;
102 // Play with mutable a bit more, to make sure it doesn't crash anything.
103 mutable int gi; // expected-error {{'mutable' can only be applied to member variables}
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_action_manager.h 75 mutable ExtIdToActionMap page_actions_;
76 mutable ExtIdToActionMap browser_actions_;
77 mutable ExtIdToActionMap system_indicators_;
  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
mock_confirm_infobar_delegate.h 50 mutable bool icon_accessed_;
51 mutable bool message_text_accessed_;
52 mutable bool link_text_accessed_;

Completed in 1436 milliseconds

1 2 3 4 5 6 7 8 91011>>