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

1 2 3 4 5 6

  /external/chromium/chrome/browser/download/
mock_download_manager.h 16 explicit MockDownloadManager(DownloadStatusUpdater* updater)
17 : DownloadManager(updater) {
download_status_updater_unittest.cc 15 explicit MockDelegate(DownloadStatusUpdater* updater)
16 : updater_(updater->AsWeakPtr()),
21 EXPECT_TRUE(updater);
  /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/chromium/chrome/browser/ui/cocoa/toolbar/
toolbar_controller_unittest.mm 52 CommandUpdater* updater = browser->command_updater();
55 updater->UpdateCommandEnabled(IDC_BACK, false);
56 updater->UpdateCommandEnabled(IDC_FORWARD, false);
70 // command in the updater. The views are in the declaration order of outlets.
71 void CompareState(CommandUpdater* updater, NSArray* views) {
72 EXPECT_EQ(updater->IsCommandEnabled(IDC_BACK),
74 EXPECT_EQ(updater->IsCommandEnabled(IDC_FORWARD),
76 EXPECT_EQ(updater->IsCommandEnabled(IDC_RELOAD),
78 EXPECT_EQ(updater->IsCommandEnabled(IDC_HOME),
91 CommandUpdater* updater = helper_.browser()->command_updater()
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_updater_unittest.cc 341 static void SimulateTimerFired(ExtensionUpdater* updater) {
342 EXPECT_TRUE(updater->timer_.IsRunning());
343 updater->timer_.Stop();
344 updater->TimerFired();
347 static void SimulateCheckSoon(const ExtensionUpdater& updater,
349 EXPECT_TRUE(updater.will_check_soon_);
388 // Set up and start the updater.
391 ExtensionUpdater updater(
394 updater.Start();
397 updater.set_blacklist_checks_enabled(false)
    [all...]
  /bootable/recovery/updater/
Android.mk 7 updater.c
45 # gets #included by updater.c. It calls all those registration
49 # These libs are also linked in with updater, but we don't try to call
76 $(call intermediates-dir-for,EXECUTABLES,updater)/updater.o : $(inc)
82 LOCAL_MODULE := updater
updater.c 22 #include "updater.h"
32 // (Note it's "updateR-script", not the older "update-script".)
33 #define SCRIPT_NAME "META-INF/com/google/android/updater-script"
53 fprintf(stderr, "wrong updater binary API; expected 1, 2, or 3; "
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicIntegerFieldUpdater.java 25 * {@code compareAndSet} and {@code set} on the same updater.
33 * Creates and returns an updater for objects with the given field.
39 * @return the updater
56 * Atomically sets the field of the given object managed by this updater
72 * Atomically sets the field of the given object managed by this updater
92 * Sets the field of the given object managed by this updater to the
103 * updater to the given updated value.
114 * by this updater.
122 * Atomically sets the field of the given object managed by this updater
139 * given object managed by this updater
    [all...]
AtomicLongFieldUpdater.java 25 * {@code compareAndSet} and {@code set} on the same updater.
33 * Creates and returns an updater for objects with the given field.
39 * @return the updater
59 * Atomically sets the field of the given object managed by this updater
75 * Atomically sets the field of the given object managed by this updater
95 * Sets the field of the given object managed by this updater to the
106 * updater to the given updated value.
116 * by this updater.
124 * Atomically sets the field of the given object managed by this updater
141 * given object managed by this updater
    [all...]
AtomicReferenceFieldUpdater.java 41 * {@code compareAndSet} and {@code set} on the same updater.
51 * Creates and returns an updater for objects with the given field.
58 * @return the updater
76 * Atomically sets the field of the given object managed by this updater
90 * Atomically sets the field of the given object managed by this updater
108 * Sets the field of the given object managed by this updater to the
119 * updater to the given updated value.
129 * by this updater.
137 * Atomically sets the field of the given object managed by this updater
  /frameworks/base/tests/RenderScriptTests/SampleTest/src/com/android/rs/sample/
SampleRSActivity.java 115 TextureViewUpdater updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_LINEAR(mRS)); local
117 displayView.setSurfaceTextureListener(updater);
121 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_LINEAR(mRS));
123 displayView.setSurfaceTextureListener(updater);
127 updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_NEAREST(mRS));
129 displayView.setSurfaceTextureListener(updater);
133 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_NEAREST(mRS));
135 displayView.setSurfaceTextureListener(updater);
  /development/build/
sdk-android-armeabi-v7a.atree 20 # version files for the SDK updater, from development.git
sdk-android-armeabi.atree 19 # version files for the SDK updater, from development.git
sdk-android-mips.atree 20 # version files for the SDK updater, from development.git
sdk-android-x86.atree 19 # version files for the SDK updater, from development.git
  /development/samples/ApiDemos/
README.txt 17 It is available through the SDK Updater in the "Android Compatibility package".
  /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/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/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 295 MachineSSAUpdater *Updater) {
299 Updater->VRC, Updater->MRI,
300 Updater->TII);
307 MachineSSAUpdater *Updater) {
310 Updater->VRC, Updater->MRI,
311 Updater->TII);
333 static MachineInstr *ValueIsPHI(unsigned Val, MachineSSAUpdater *Updater) {
334 return InstrIsPHI(Updater->MRI->getVRegDef(Val))
    [all...]
  /build/target/product/
large_emu_hw.mk 40 Updater \
  /device/samsung/toro/recovery/
recovery_updater.c 50 fprintf(stderr, "installing samsung updater extensions for toro\n");
  /device/samsung/toroplus/recovery/
recovery_updater.c 50 fprintf(stderr, "installing samsung updater extensions for toroplus\n");
  /external/chromium/chrome/browser/chromeos/cros/
update_library.cc 73 UpdateLibraryImpl* updater = static_cast<UpdateLibraryImpl*>(object); local
74 updater->UpdateStatus(Status(status));
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 1 //===-- SSAUpdaterImpl.h - SSA Updater Implementation -----------*- C++ -*-===//
33 UpdaterT *Updater;
72 Updater(U), AvailableVals(A), InsertedPHIs(Ins) { }
84 ValT V = Traits::GetUndefVal(BB, Updater);
242 Pred->AvailableVal = Traits::GetUndefVal(Pred->BB, Updater);
333 ValT PHI = Traits::CreateEmptyPHI(Info->BB, Info->NumPreds, Updater);
353 PhiT *PHI = Traits::ValueIsNewPHI(Info->AvailableVal, Updater);
422 PhiT *IncomingPHIVal = Traits::ValueIsPHI(IncomingVal, Updater);
  /external/webkit/Tools/WebKitLauncher/
WebKitLauncherURLProtocol.m 109 SUUpdater *updater = [SUUpdater updaterForBundle:webKitLauncherBundle()];
110 [updater performSelectorOnMainThread:@selector(checkForUpdates:) withObject:self waitUntilDone:NO];

Completed in 1761 milliseconds

1 2 3 4 5 6