HomeSort by relevance Sort by last modified time
    Searched refs:mutable (Results 1 - 25 of 1023) 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;
cxx1y-deduced-return-type.cpp 11 return [=] () mutable { return ++n; };
  /external/clang/test/CXX/class/class.local/
p1-0x.cpp 10 (void)[]() mutable {
  /frameworks/av/include/cpustats/
CentralTendencyStatistics.h 66 mutable double mVariance;
67 mutable unsigned mVarianceKnownForN;
70 mutable double mStddev;
71 mutable unsigned mStddevKnownForN;
  /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/webrtc/src/system_wrappers/source/
trace_posix.h 31 volatile mutable WebRtc_UWord32 _prevAPITickCount;
32 volatile mutable WebRtc_UWord32 _prevTickCount;
trace_win.h 31 volatile mutable WebRtc_UWord32 _prevAPITickCount;
32 volatile mutable WebRtc_UWord32 _prevTickCount;
  /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/clang/test/SemaCXX/
ms_mutable_reference_member.cpp 4 mutable int &a; // expected-warning {{'mutable' on a reference type is a Microsoft extension}}
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...]
  /frameworks/rs/
rsProgramBase.h 36 mutable bool mDirty;
  /hardware/intel/img/hwcomposer/merrifield/common/observers/
SoftVsyncObserver.h 43 mutable Mutex mLock;
45 mutable nsecs_t mNextFakeVSync;
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/observers/
SoftVsyncObserver.h 43 mutable Mutex mLock;
45 mutable nsecs_t mNextFakeVSync;
  /external/drm_hwcomposer/
drmdisplaycompositor.h 65 // mutable since we need to acquire in HaveQueuedComposites
66 mutable pthread_mutex_t lock_;
68 // State tracking progress since our last Dump(). These are mutable since
70 mutable uint64_t dump_frames_composited_;
71 mutable uint64_t dump_last_timestamp_ns_;
  /external/lldb/tools/debugserver/source/
PThreadEvent.h 47 mutable PThreadMutex m_mutex;
48 mutable PThreadCondition m_set_condition;
49 mutable PThreadCondition m_reset_condition;
  /external/skia/src/effects/gradients/
SkGradientBitmapCache.h 28 mutable Entry* fHead;
29 mutable Entry* fTail;
  /frameworks/base/libs/hwui/thread/
Barrier.h 51 mutable Mutex mLock;
52 mutable Condition mCondition;
Signal.h 51 mutable Mutex mLock;
52 mutable Condition mCondition;
  /frameworks/native/services/surfaceflinger/
Barrier.h 58 mutable Mutex lock;
59 mutable Condition cv;
  /external/clang/test/CXX/class/class.friend/
p6.cpp 12 friend mutable class F; // expected-error {{'mutable' is invalid in friend declarations}}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p6.cpp 20 const auto l = [](int x) mutable -> int { return + 1; };

Completed in 7035 milliseconds

1 2 3 4 5 6 7 8 91011>>