HomeSort by relevance Sort by last modified time
    Searched refs:updater (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedGetPropertyTask.java 59 RSSFeedUpdateEntryTask updater = new RSSFeedUpdateEntryTask(); local
60 updater.setFile(file.toString());
61 updater.setXpath(xpath);
62 updater.setDebug(debug);
63 updater.execute();
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDouble.java 44 * <p>It is possible to write a more scalable updater, at the cost of
62 private static final AtomicLongFieldUpdater<AtomicDouble> updater = field in class:AtomicDouble
109 // updater.lazySet(this, next);
120 return longBitsToDouble(updater.getAndSet(this, next));
134 return updater.compareAndSet(this,
155 return updater.weakCompareAndSet(this,
172 if (updater.compareAndSet(this, current, next)) {
190 if (updater.compareAndSet(this, current, next)) {
  /external/chromium_org/chrome/browser/ui/views/passwords/
manage_passwords_icon_view.h 21 explicit ManagePasswordsIconView(CommandUpdater* updater);
manage_passwords_icon_view.cc 18 ManagePasswordsIconView::ManagePasswordsIconView(CommandUpdater* updater)
19 : BubbleIconView(updater, IDC_MANAGE_PASSWORDS_FOR_PAGE),
manage_passwords_view_test.cc 51 CommandUpdater* updater = browser()->command_controller()->command_updater(); local
52 EXPECT_TRUE(updater->IsCommandEnabled(IDC_MANAGE_PASSWORDS_FOR_PAGE));
53 EXPECT_TRUE(updater->ExecuteCommand(IDC_MANAGE_PASSWORDS_FOR_PAGE));
  /external/chromium_org/chrome/browser/ui/views/toolbar/
toolbar_view_browsertest.cc 38 CommandUpdater* updater = browser->command_controller()->command_updater(); local
41 updater->ExecuteCommand(IDC_FOCUS_TOOLBAR);
106 CommandUpdater* updater = browser()->command_controller()->command_updater(); local
107 updater->ExecuteCommand(IDC_SHOW_BOOKMARK_BAR);
  /bootable/recovery/updater/
Android.mk 8 updater.c
41 # gets #included by updater.c. It calls all those registration
45 # These libs are also linked in with updater, but we don't try to call
72 $(call intermediates-dir-for,EXECUTABLES,updater)/updater.o : $(inc)
78 LOCAL_MODULE := updater
  /external/chromium_org/chrome/browser/chromeos/policy/
device_network_configuration_updater.cc 27 scoped_ptr<DeviceNetworkConfigurationUpdater> updater(
32 updater->Init();
33 return updater.Pass();
user_network_configuration_updater.cc 40 scoped_ptr<UserNetworkConfigurationUpdater> updater(
46 updater->Init();
47 return updater.Pass();
73 // The updater is created with |certificate_importer_| unset and is
network_configuration_updater_unittest.cc 205 UserNetworkConfigurationUpdater* updater = local
214 updater->SetCertificateImporterForTest(
217 network_configuration_updater_.reset(updater);
218 return updater;
341 UserNetworkConfigurationUpdater* updater = local
350 updater->AddTrustedCertsObserver(&observer);
355 updater->GetWebTrustedCertificates(&trust_anchors);
359 updater->RemoveTrustedCertsObserver(&observer);
379 UserNetworkConfigurationUpdater* updater = local
389 updater->GetWebTrustedCertificates(&trust_anchors)
404 UserNetworkConfigurationUpdater* updater = local
473 UserNetworkConfigurationUpdater* updater = local
    [all...]
  /external/chromium_org/chrome/browser/extensions/updater/
extension_updater_unittest.cc 33 #include "chrome/browser/extensions/updater/extension_downloader.h"
34 #include "chrome/browser/extensions/updater/extension_downloader_delegate.h"
35 #include "chrome/browser/extensions/updater/extension_updater.h"
36 #include "chrome/browser/extensions/updater/manifest_fetch_data.h"
37 #include "chrome/browser/extensions/updater/request_queue_impl.h"
553 void SimulateTimerFired(ExtensionUpdater* updater) {
554 EXPECT_TRUE(updater->timer_.IsRunning());
555 updater->timer_.Stop();
556 updater->TimerFired();
571 void ResetDownloader(ExtensionUpdater* updater,
    [all...]
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_persistence.cc 51 // Updater may have side-effects, therefore we do not replace
52 // entry while updater exists.
53 DictionaryPrefUpdate updater(local_state, prefs::kUsersLRUInputMethod);
54 base::DictionaryValue* const users_lru_input_methods = updater.Get();
66 DictionaryPrefUpdate updater(local_state, prefs::kUsersLRUInputMethod);
67 base::DictionaryValue* const users_lru_input_methods = updater.Get();
  /external/chromium_org/chrome/browser/prefs/
chrome_pref_service_unittest.cc 74 ListPrefUpdate updater(prefs, key);
75 updater->Clear();
79 DictionaryPrefUpdate updater(prefs, key);
80 updater->Clear();
  /external/chromium_org/cc/layers/
content_layer_unittest.cc 45 scoped_refptr<BitmapContentLayerUpdater> updater = local
52 updater->PrepareToUpdate(content_rect,
  /external/chromium_org/cc/resources/
video_resource_updater_unittest.cc 65 VideoResourceUpdater updater(output_surface3d_->context_provider().get(),
70 updater.CreateExternalResourcesFromVideoFrame(video_frame);
video_resource_updater.cc 332 base::WeakPtr<VideoResourceUpdater> updater,
336 if (!updater.get()) {
341 ContextProvider* context_provider = updater->context_provider_;
348 updater->DeleteResource(data.resource_id);
353 while (!updater->recycled_resources_.empty() &&
354 updater->recycled_resources_.back().resource_format !=
356 updater->DeleteResource(updater->recycled_resources_.back().resource_id);
357 updater->recycled_resources_.pop_back();
364 updater->recycled_resources_.push_back(recycled_resource)
    [all...]
bitmap_skpicture_content_layer_updater.h 20 Resource(BitmapSkPictureContentLayerUpdater* updater,
image_layer_updater.h 20 Resource(ImageLayerUpdater* updater,
bitmap_skpicture_content_layer_updater.cc 17 BitmapSkPictureContentLayerUpdater* updater,
19 : ContentLayerUpdater::Resource(texture.Pass()), updater_(updater) {}
image_layer_updater.cc 11 ImageLayerUpdater::Resource::Resource(ImageLayerUpdater* updater,
13 : LayerUpdater::Resource(texture.Pass()), updater_(updater) {}
bitmap_content_layer_updater.cc 18 BitmapContentLayerUpdater* updater,
20 : LayerUpdater::Resource(texture.Pass()), updater_(updater) {}
  /frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
SampleRSActivity.java 119 TextureViewUpdater updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_LINEAR(mRS)); local
121 displayView.setSurfaceTextureListener(updater);
125 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_LINEAR(mRS));
127 displayView.setSurfaceTextureListener(updater);
131 updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_NEAREST(mRS));
133 displayView.setSurfaceTextureListener(updater);
137 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_NEAREST(mRS));
139 displayView.setSurfaceTextureListener(updater);
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
Editors.java 72 Runnable updater = editor.bindEditor(editorView, item, new Runnable() {
83 // store the updater as the view tag
84 editorView.setTag(updater);
86 sUpdatePreset = updater;
  /external/chromium_org/chrome/browser/
browser_commands_unittest.cc 39 CommandUpdater* updater = browser()->command_controller()->command_updater(); local
42 updater->ExecuteCommand(IDC_SELECT_TAB_0);
46 updater->ExecuteCommand(IDC_SELECT_NEXT_TAB);
50 updater->ExecuteCommand(IDC_SELECT_PREVIOUS_TAB);
54 updater->ExecuteCommand(IDC_SELECT_LAST_TAB);
  /external/chromium_org/chrome/browser/extensions/api/commands/
command_service_browsertest.cc 100 DictionaryPrefUpdate updater(browser()->profile()->GetPrefs(),
102 base::DictionaryValue* bindings = updater.Get();

Completed in 1966 milliseconds

1 2 3 4 5