Home
last modified time | relevance | path

Searched refs:newContents (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Tools/Scripts/
Ddo-webcore-rename228 my $newContents = $contents;
233 $newContents =~ s/\b(JS|V8|to|)$from/$1$renames{$from}/g;
237 …$newContents =~ s/\b$from(?!["\w])/$renames{$from}/g; # this " unconfuses Xcode syntax highlighting
241 if ($newContents ne $contents) {
243 print FILE $newContents;
Ddo-file-rename106 my $newContents = $contents;
109 …$newContents =~ s/\b\Q$from\E(?!\w)/$renames{$from}/g; # this " unconfuses Xcode syntax highlighti…
112 if ($newContents ne $contents) {
114 print FILE $newContents;
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DAbstractCollectionTester.java41 @Override protected Collection<E> resetContainer(Collection<E> newContents) { in resetContainer() argument
42 collection = super.resetContainer(newContents); in resetContainer()
/external/chromium/chrome/browser/ui/cocoa/tabs/
Dtab_strip_model_observer_bridge.h67 - (void)selectTabWithContents:(TabContentsWrapper*)newContents
77 - (void)tabReplacedWithContents:(TabContentsWrapper*)newContents
Dtab_strip_controller.mm1157 // tab. Swaps in the toolbar and content area associated with |newContents|.
1158 - (void)selectTabWithContents:(TabContentsWrapper*)newContents
1165 if (oldContents && oldContents != newContents) {
1199 if (newContents) {
1200 newContents->tab_contents()->DidBecomeSelected();
1201 newContents->view()->RestoreFocus();
1203 if (newContents->find_tab_helper()->find_ui_active())
1208 - (void)tabReplacedWithContents:(TabContentsWrapper*)newContents
1216 // Simply create a new TabContentsController for |newContents| and place it
1221 initWithContents:newContents->tab_contents()
[all …]
/external/chromium/chrome/browser/ui/cocoa/tab_contents/
Dtab_contents_controller.h57 - (void)changeTabContents:(TabContents*)newContents;
Dtab_contents_controller.mm164 - (void)changeTabContents:(TabContents*)newContents {
165 contents_ = newContents;