HomeSort by relevance Sort by last modified time
    Searched full:retain (Results 201 - 225 of 31093) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTreeNodeStream.h 8 // 1. Redistributions of source code must retain the above copyright
60 @property (retain, getter=getRoot, setter=setRoot:) ANTLRCommonTree *root;
61 @property (retain, getter=getTokens,setter=setTokens:) id<ANTLRTokenStream> tokens;
62 @property (retain, getter=getTreeAdaptor, setter=setTreeAdaptor:) ANTLRCommonTreeAdaptor *adaptor;
ANTLRRecognizerSharedState.h 8 // 1. Redistributions of source code must retain the above copyright
51 @property (retain, getter=getFollowing, setter=setFollowing:) NSMutableArray *following;
58 @property (retain, getter=getRuleMemo, setter=setRuleMemo:) ANTLRRuleStack *ruleMemo;
65 @property (retain, getter=getText, setter=setText) NSString *text;
ANTLRRuleStack.m 13 // 1. Redistributions of source code must retain the above copyright
113 [aRule retain];
136 aHashRule = [[ANTLRHashRule newANTLRHashRuleWithLen:17] retain];
140 aRuleMemo = [[ANTLRRuleMemo newANTLRRuleMemo] retain];
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTreeNodeStream.h 8 // 1. Redistributions of source code must retain the above copyright
60 @property (retain, getter=getRoot, setter=setRoot:) ANTLRCommonTree *root;
61 @property (retain, getter=getTokens,setter=setTokens:) id<ANTLRTokenStream> tokens;
62 @property (retain, getter=getTreeAdaptor, setter=setTreeAdaptor:) ANTLRCommonTreeAdaptor *adaptor;
ANTLRRecognizerSharedState.h 8 // 1. Redistributions of source code must retain the above copyright
51 @property (retain, getter=getFollowing, setter=setFollowing:) NSMutableArray *following;
58 @property (retain, getter=getRuleMemo, setter=setRuleMemo:) ANTLRRuleStack *ruleMemo;
65 @property (retain, getter=getText, setter=setText) NSString *text;
ANTLRRuleStack.m 13 // 1. Redistributions of source code must retain the above copyright
113 [aRule retain];
136 aHashRule = [[ANTLRHashRule newANTLRHashRuleWithLen:17] retain];
140 aRuleMemo = [[ANTLRRuleMemo newANTLRRuleMemo] retain];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugParser.m 8 // 1. Redistributions of source code must retain the above copyright
50 debugger = [(id<ANTLRDebugEventListener,NSObject>)theDebugListener retain];
58 tokenStream = [theStream retain];
85 [(id<ANTLRDebugEventListener,NSObject>)aDebugListener retain];
ANTLRDebugTreeNodeStream.m 8 // 1. Redistributions of source code must retain the above copyright
59 [(id<ANTLRDebugEventListener,NSObject>)aDebugListener retain];
74 [(id<ANTLRTreeAdaptor,NSObject>)aTreeAdaptor retain];
90 [(id<ANTLRTreeNodeStream,NSObject>)aTreeNodeStream retain];
ANTLRDoubleKeyMap.h 26 @property (retain) AMutableDictionary *data;
ANTLRRecognizerSharedState.h 8 // 1. Redistributions of source code must retain the above copyright
52 @property (retain, getter=getFollowing, setter=setFollowing:) AMutableArray *following;
59 @property (retain, getter=getRuleMemo, setter=setRuleMemo:) ANTLRRuleStack *ruleMemo;
66 @property (retain, getter=text, setter=setText:) NSString *text;
ANTLRRuleStack.m 13 // 1. Redistributions of source code must retain the above copyright
118 [aRule retain];
141 aHashRule = [[ANTLRHashRule newANTLRHashRuleWithLen:17] retain];
145 aRuleMemo = [[ANTLRRuleMemo newANTLRRuleMemo] retain];
  /external/chromium/chrome/browser/
icon_loader_mac.mm 22 image_.reset(new gfx::Image([icon retain]));
  /external/chromium/chrome/browser/sync/util/
protobuf_unittest.cc 14 // This tests ensures that we retain unknown fields in protocol buffers by
  /external/chromium/chrome/browser/ui/cocoa/
background_tile_view.mm 12 tileImage_ = [tileImage retain];
  /external/chromium_org/base/mac/
objc_property_releaser.mm 20 // if the property is marked "retain" or "copy". If the instance variable name
22 // property by @synthesize) or if the property is not "retain" or "copy",
62 // > @property(retain) __attribute__((NSObject)) CFDictionaryRef
65 case '&': // retain
scoped_nsobject.h 22 // ownership claim to that object. scoped_nsobject<> does not call -retain,
40 : object_([that.object_ retain]) {
48 reset([that.get() retain]);
55 // method, or call it with the |RETAIN| policy which will have ensured that
  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
infobar_cocoa.h 25 controller_.reset([controller retain]);
  /external/chromium_org/chrome/browser/ui/cocoa/wrench_menu/
recent_tabs_menu_model_delegate.mm 13 menu_([menu retain]) {
  /external/chromium_org/sync/util/
protobuf_unittest.cc 14 // This tests ensures that we retain unknown fields in protocol buffers by
  /external/chromium_org/third_party/skia/src/utils/ios/
SkStream_NSData.mm 30 [fNSData retain];
  /external/clang/test/ARCMT/
checking.m 18 - (id)retain NS_AUTOMATED_REFCOUNT_UNAVAILABLE;
48 - (id)retain; // expected-note {{declaration has been explicitly marked unavailable here}}
66 - (id)retain { return self; } // expected-error {{ARC forbids implementation}}
77 [[a delegate] release]; // expected-error {{it is not safe to remove 'retain' message on the result of a 'delegate' message; the object that was passed to 'setDelegate:' may not be properly retained}} \
79 [a.delegate release]; // expected-error {{it is not safe to remove 'retain' message on the result of a 'delegate' message; the object that was passed to 'setDelegate:' may not be properly retained}} \
81 [unsafeS->unsafeObj retain]; // expected-error {{it is not safe to remove 'retain' message on an __unsafe_unretained type}} \
83 // expected-error {{'retain' is unavailable}}
84 id foo = [unsafeS->unsafeObj retain]; // no warning.
85 [global_foo retain]; // expected-error {{it is not safe to remove 'retain' message on a global variable}}
    [all...]
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.h 19 -(id)retain;
ObjCImproperDynamictallyDetectableCast.m 12 -(id)retain;
assume-super-init-does-not-return-nil.m 13 -(id)retain;
test_objc_inlining_option.m 16 -(id)retain;

Completed in 492 milliseconds

1 2 3 4 5 6 7 891011>>