/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
mount_node_test.cc | 79 EXPECT_EQ(0, file.RefCount()); 209 EXPECT_EQ(0, root.RefCount()); 224 EXPECT_EQ(0, root.RefCount()); 225 EXPECT_EQ(1, file->RefCount()); 228 EXPECT_EQ(2, file->RefCount()); 259 EXPECT_EQ(3, file->RefCount()); 262 EXPECT_EQ(3, file->RefCount()); 275 EXPECT_EQ(2, file->RefCount()); 278 EXPECT_EQ(1, file->RefCount());
|
mount_test.cc | 63 EXPECT_EQ(2, file->RefCount()); 105 EXPECT_EQ(2, file->RefCount()); 110 EXPECT_EQ(3, file->RefCount()); 136 EXPECT_EQ(2, file->RefCount()); 141 EXPECT_EQ(2, root->RefCount()); 142 EXPECT_EQ(2, file->RefCount()); 147 EXPECT_EQ(2, root->RefCount()); 148 EXPECT_EQ(1, file->RefCount());
|
/external/clang/include/clang/Rewrite/Core/ |
RewriteRope.h | 33 unsigned RefCount; 37 ++RefCount; 41 if (--RefCount == 0)
|
/external/clang/test/Analysis/inlining/ |
false-positive-suppression.cpp | 7 class RefCount { 30 RefCount<ParserInputState> inputState;
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
syncobj.c | 189 syncObj->RefCount++; 198 syncObj->RefCount--; 199 if (syncObj->RefCount == 0) { 279 syncObj->RefCount = 1;
|
transformfeedback.c | 64 ASSERT(oldObj->RefCount > 0); 65 oldObj->RefCount--; 67 if (oldObj->RefCount == 0) { 79 if (obj->RefCount == 0) { 84 obj->RefCount++; 118 assert(ctx->TransformFeedback.DefaultObject->RefCount == 1); 123 assert(ctx->TransformFeedback.DefaultObject->RefCount == 2); 216 obj->RefCount = 1;
|
framebuffer.c | 133 fb->RefCount = 1; 174 fb->RefCount = 1; 209 assert(fb->RefCount == 0); 243 ASSERT(oldFb->RefCount > 0); 244 oldFb->RefCount--; 245 deleteFlag = (oldFb->RefCount == 0); 257 fb->RefCount++;
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/ |
font_data.h | 26 #include "sfntly/port/refcount.h" 51 class FontData : virtual public RefCount {
|
byte_array.h | 20 #include "sfntly/port/refcount.h" 30 class ByteArray : virtual public RefCount {
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/ |
java_iterator.h | 20 #include "sfntly/port/refcount.h" 28 class Iterator : public virtual RefCount {
|
/external/mesa3d/src/mesa/main/ |
syncobj.c | 189 syncObj->RefCount++; 198 syncObj->RefCount--; 199 if (syncObj->RefCount == 0) { 279 syncObj->RefCount = 1;
|
transformfeedback.c | 64 ASSERT(oldObj->RefCount > 0); 65 oldObj->RefCount--; 67 if (oldObj->RefCount == 0) { 79 if (obj->RefCount == 0) { 84 obj->RefCount++; 118 assert(ctx->TransformFeedback.DefaultObject->RefCount == 1); 123 assert(ctx->TransformFeedback.DefaultObject->RefCount == 2); 216 obj->RefCount = 1;
|
/external/sfntly/cpp/src/sfntly/data/ |
font_data.h | 26 #include "sfntly/port/refcount.h" 51 class FontData : virtual public RefCount {
|
byte_array.h | 20 #include "sfntly/port/refcount.h" 30 class ByteArray : virtual public RefCount {
|
/external/sfntly/cpp/src/sfntly/port/ |
java_iterator.h | 20 #include "sfntly/port/refcount.h" 28 class Iterator : public virtual RefCount {
|
/external/llvm/include/llvm/Analysis/ |
AliasSetTracker.h | 115 // RefCount - Number of nodes pointing to this AliasSet plus the number of 117 unsigned RefCount : 28; 141 void addRef() { ++RefCount; } 143 assert(RefCount >= 1 && "Invalid reference count detected!"); 144 if (--RefCount == 0) 223 AliasSet() : PtrList(0), PtrListEnd(&PtrList), Forward(0), RefCount(0),
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
program.c | 126 ctx->ATIFragmentShader.Current->RefCount++; 152 ctx->ATIFragmentShader.Current->RefCount--; 153 if (ctx->ATIFragmentShader.Current->RefCount <= 0) { 190 ctx->ATIFragmentShader.Current->RefCount--; 191 if (ctx->ATIFragmentShader.Current->RefCount <= 0) { 197 ctx->ATIFragmentShader.Current->RefCount++; 274 prog->RefCount = 1; 380 ASSERT(prog->RefCount==0); 443 printf("Program %p ID=%u Target=%s Refcount-- to %d\n", 447 (*ptr)->RefCount - 1) [all...] |
/external/mesa3d/src/mesa/program/ |
program.c | 126 ctx->ATIFragmentShader.Current->RefCount++; 152 ctx->ATIFragmentShader.Current->RefCount--; 153 if (ctx->ATIFragmentShader.Current->RefCount <= 0) { 190 ctx->ATIFragmentShader.Current->RefCount--; 191 if (ctx->ATIFragmentShader.Current->RefCount <= 0) { 197 ctx->ATIFragmentShader.Current->RefCount++; 274 prog->RefCount = 1; 380 ASSERT(prog->RefCount==0); 443 printf("Program %p ID=%u Target=%s Refcount-- to %d\n", 447 (*ptr)->RefCount - 1) [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
CallEvent.h | 131 // This should come right before RefCount, so that the two fields can be 136 mutable unsigned RefCount; 139 void Retain() const { ++RefCount; } 146 : State(state), LCtx(lctx), Origin(E), RefCount(0) {} 149 : State(state), LCtx(lctx), Origin(D), RefCount(0) {} 154 Data(Original.Data), Location(Original.Location), RefCount(0) {} [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtctexturevideoframe_unittest.cc | 72 TEST(WebRtcTextureVideoFrameTest, RefCount) {
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
standalone_scaffolding.cpp | 62 shader->RefCount = 1;
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_texrender.c | 21 ASSERT(rb->RefCount == 0);
|
/external/llvm/include/llvm/Support/ |
ErrorOr.h | 32 uint16_t RefCount; 35 ErrorHolderBase() : RefCount(1) {} 38 ++RefCount; 42 if (--RefCount == 0)
|
/external/mesa3d/src/glsl/ |
standalone_scaffolding.cpp | 62 shader->RefCount = 1;
|
/external/mesa3d/src/mesa/swrast/ |
s_texrender.c | 21 ASSERT(rb->RefCount == 0);
|