/external/chromium_org/third_party/ocmock/OCMock/ |
D | NSInvocation+OCMAdditions.m | 28 [self getArgument:&value atIndex:argIndex]; 34 [self getArgument:&s atIndex:argIndex]; 41 [self getArgument:&value atIndex:argIndex]; 47 [self getArgument:&value atIndex:argIndex]; 53 [self getArgument:&value atIndex:argIndex]; 59 [self getArgument:&value atIndex:argIndex]; 65 [self getArgument:&value atIndex:argIndex]; 71 [self getArgument:&value atIndex:argIndex]; 77 [self getArgument:&value atIndex:argIndex]; 83 [self getArgument:&value atIndex:argIndex]; [all …]
|
D | OCMConstraint.m | 44 [constraint->invocation setArgument:&aValue atIndex:3]; 111 [invocation setArgument:&value atIndex:2]; // should test if constraint takes arg
|
/external/chromium_org/chrome/browser/ui/cocoa/tabs/ |
D | tab_strip_model_observer_bridge.mm | 29 @selector(insertTabWithContents:atIndex:inForeground:)]) { 31 atIndex:index 40 @selector(tabClosingWithContents:atIndex:)]) { 41 [controller_ tabClosingWithContents:contents atIndex:index]; 48 @selector(tabDetachedWithContents:atIndex:)]) { 49 [controller_ tabDetachedWithContents:contents atIndex:index]; 63 activateTabWithContents:previousContents:atIndex:reason:)]) { 66 atIndex:index 94 @selector(tabChangedWithContents:atIndex:changeType:)]) { 96 atIndex:index [all …]
|
D | tab_strip_model_observer_bridge.h | 71 atIndex:(NSInteger)index 74 atIndex:(NSInteger)index; 76 atIndex:(NSInteger)index; 80 atIndex:(NSInteger)index 86 atIndex:(NSInteger)index 90 atIndex:(NSInteger)index; 92 atIndex:(NSInteger)index;
|
/external/clang/test/ARCMT/ |
D | check-api.m | 9 - (void)getArgument:(void *)argumentLocation atIndex:(int)idx; 10 - (void)setArgument:(void *)argumentLocation atIndex:(int)idx; 33 …[invok getArgument:&strong_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not sa… 34 …[invok getArgument:&weak_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not safe… 35 [invok getArgument:&unsafe_id atIndex:0]; 36 [invok getArgument:&arg atIndex:0]; 38 …[invok setArgument:&strong_id atIndex:0]; // expected-error {{NSInvocation's setArgument is not sa… 39 …[invok setArgument:&weak_id atIndex:0]; // expected-error {{NSInvocation's setArgument is not safe… 40 [invok setArgument:&unsafe_id atIndex:0]; 41 [invok setArgument:&arg atIndex:0];
|
/external/llvm/utils/lit/lit/ |
D | ProgressBar.py | 180 self.atIndex = None 183 if self.atIndex is None: 185 self.atIndex = 0 188 if next == self.atIndex: 191 for i in range(self.atIndex, next): 202 self.atIndex = next 205 if self.atIndex is not None: 208 self.atIndex = None
|
/external/chromium_org/chrome/browser/ui/cocoa/applescript/ |
D | bookmark_folder_applescript.h | 30 - (void)insertInBookmarkFolders:(id)aBookmarkFolder atIndex:(int)index; 49 atIndex:(int)index;
|
D | browsercrapplication+applescript.h | 30 atIndex:(int)index; 54 - (void)insertInBookmarksFolders:(id)aBookmarkFolder atIndex:(int)index;
|
D | apple_event_util.mm | 72 atIndex:0]; 74 atIndex:0]; 90 atIndex:0];
|
D | window_applescript.mm | 121 int atIndex = [anActiveTabIndex intValue] - 1; 122 if (atIndex >= 0 && atIndex < browser_->tab_strip_model()->count()) 123 browser_->tab_strip_model()->ActivateTabAt(atIndex, true); 188 - (void)insertInTabs:(TabAppleScript*)aTab atIndex:(int)index {
|
/external/chromium_org/ui/base/cocoa/ |
D | menu_controller.mm | 20 atIndex:(int)index; 77 [self addSeparatorToMenu:menu atIndex:index]; 79 [self addItemToMenu:menu atIndex:index fromModel:model]; 94 atIndex:(int)index { 96 [menu insertItem:separator atIndex:index]; 102 atIndex:(NSInteger)index 151 [menu insertItem:item atIndex:index]; 223 [menu_ insertItem:blankItem atIndex:0];
|
/external/smack/src/org/jivesoftware/smack/util/ |
D | StringUtils.java | 285 int atIndex = XMPPAddress.lastIndexOf("@"); in parseName() local 286 if (atIndex <= 0) { in parseName() 290 return XMPPAddress.substring(0, atIndex); in parseName() 306 int atIndex = XMPPAddress.lastIndexOf("@"); in parseServer() local 308 if (atIndex + 1 > XMPPAddress.length()) { in parseServer() 312 if (slashIndex > 0 && slashIndex > atIndex) { in parseServer() 313 return XMPPAddress.substring(atIndex + 1, slashIndex); in parseServer() 316 return XMPPAddress.substring(atIndex + 1); in parseServer()
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
D | menu_button_unittest.mm | 74 [menu insertItemWithTitle:@"" action:nil keyEquivalent:@"" atIndex:0]; 75 [menu insertItemWithTitle:@"foo" action:nil keyEquivalent:@"" atIndex:1]; 76 [menu insertItemWithTitle:@"bar" action:nil keyEquivalent:@"" atIndex:2]; 77 [menu insertItemWithTitle:@"baz" action:nil keyEquivalent:@"" atIndex:3];
|
D | table_row_nsimage_cache.mm | 40 // -[NSPointerArray insertPointer:atIndex:] throws if index == count. 46 [icon_images_ insertPointer:NULL atIndex:start]; // Values slide up.
|
/external/chromium_org/chrome/browser/ui/cocoa/toolbar/ |
D | back_forward_menu_controller.mm | 59 atIndex:0]; 63 atIndex:(menuID + 1)]; 85 atIndex:(menuID + 1)];
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | EmailInputType.cpp | 208 size_t atIndex = invalidAddress.find('@'); in typeMismatchText() local 209 if (atIndex == kNotFound) in typeMismatchText() 214 String localPart = invalidAddress.left(atIndex); in typeMismatchText() 215 String domain = invalidAddress.substring(atIndex + 1); in typeMismatchText()
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRHashMap.h | 92 - (void) insertObject:(id)aRule atIndex:(NSInteger)idx; 94 - (void) setObject:(id)aRule atIndex:(NSInteger)idx;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRHashMap.h | 92 - (void) insertObject:(id)aRule atIndex:(NSInteger)idx; 94 - (void) setObject:(id)aRule atIndex:(NSInteger)idx;
|
D | ANTLRSymbolStack.h | 72 - (void) insertObject:(ANTLRSymbolsScope *)aScope atIndex:(NSInteger)idx;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRHashMap.h | 92 - (void) insertObject:(id)aRule atIndex:(NSInteger)idx; 94 - (void) setObject:(id)aRule atIndex:(NSInteger)idx;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRHashMap.h | 89 - (void) insertObject:(id)aRule atIndex:(NSInteger)idx; 91 - (void) setObject:(id)aRule atIndex:(NSInteger)idx;
|
D | ANTLRRuleStack.h | 60 - (void) insertObject:(ANTLRHashRule *)aHashRule atIndex:(NSInteger)idx;
|
/external/icu/icu4c/source/layout/ |
D | LEGlyphStorage.h | 332 LEGlyphID *insertGlyphs(le_int32 atIndex, le_int32 insertCount, LEErrorCode& success); 352 LEGlyphID *insertGlyphs(le_int32 atIndex, le_int32 insertCount);
|
D | LEGlyphStorage.cpp | 546 LEGlyphID *LEGlyphStorage::insertGlyphs(le_int32 atIndex, le_int32 insertCount) in insertGlyphs() argument 549 return insertGlyphs(atIndex, insertCount, ignored); in insertGlyphs() 553 LEGlyphID *LEGlyphStorage::insertGlyphs(le_int32 atIndex, le_int32 insertCount, LEErrorCode& succe… in insertGlyphs() argument 555 return fInsertionList->insert(atIndex, insertCount, success); in insertGlyphs()
|
/external/chromium_org/tools/gyp/test/mac/framework/TestFramework/ |
D | ObjCVector.h | 21 - (void)addObject:(id)obj atIndex:(NSUInteger)index;
|