Searched defs:active (Results 1 - 25 of 110) sorted by relevance

12345

/external/clang/test/CodeGen/
H A D2007-09-17-WeakRef.c6 int active (void) function
H A D2008-09-03-WeakAlias.c5 int active (void) function
/external/chromium/chrome/browser/net/
H A Dservice_providers_win.h16 bool active; member in struct:WinsockNamespaceProvider
/external/chromium/chrome/browser/tabs/
H A Dtab_strip_selection_model.h15 // active: the index of the currently visible tab in the tab strip.
20 // anchor and active index correspond to the same thing.
35 // See class description for details of active.
36 void set_active(int active) { active_ = active; } argument
37 int active() const { return active_; } function in class:TabStripSelectionModel
47 // updates the anchor and active indices.
57 // Sets the anchor, active and selection to |index|.
63 // Adds |index| to the selection. This does not change the active or anchor
67 // Removes |index| from the selection. This does not change the active o
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/animation/
H A DTestCameraMotionPath.java58 private boolean active = true; field in class:TestCameraMotionPath
160 if (active) {
161 active = false;
164 active = true;
H A DTestMotionPath.java57 private boolean active = true; field in class:TestMotionPath
154 if (active) {
155 active = false;
158 active = true;
/external/jmonkeyengine/engine/src/test/jme3test/post/
H A DTestBloom.java60 boolean active=true; field in class:TestBloom
144 if(active){
145 active=false;
148 active=true;
H A DTestCrossHatch.java60 boolean active=true; field in class:TestCrossHatch
138 if(active){
139 active=false;
142 active=true;
H A DTestPosterization.java60 boolean active=true; field in class:TestPosterization
138 if(active){
139 active=false;
142 active=true;
/external/webkit/Source/WebCore/wml/
H A DWMLDoElement.h53 void setActive(bool active) { m_isActive = active; } argument
/external/chromium/chrome/browser/chromeos/status/
H A Dstatus_area_button.h41 void set_active(bool active) { active_ = active; } argument
42 bool active() const { return active_; } function in class:chromeos::StatusAreaButton
H A Dstatus_area_view.cc106 void StatusAreaView::MakeButtonsActive(bool active) { argument
107 clock_view()->set_active(active);
108 input_method_view()->set_active(active);
109 network_view()->set_active(active);
110 power_view()->set_active(active);
/external/jmonkeyengine/engine/src/core/com/jme3/app/state/
H A DAppState.java71 * @param active activate the AppState or not.
73 public void setEnabled(boolean active); argument
/external/webkit/Source/WebCore/rendering/
H A DHitTestRequest.h46 bool active() const { return m_requestType & Active; } function in class:WebCore::HitTestRequest
/external/chromium/chrome/browser/net/websocket_experiment/
H A Dwebsocket_experiment_runner.cc35 int active = trial->AppendGroup("active", 5); // 0.5% in active group. local
37 bool run_experiment = (trial->group() == active);
/external/webkit/Source/WebCore/page/animation/
H A DImplicitAnimation.h71 bool active() const { return m_active; } function in class:WebCore::ImplicitAnimation
/external/webkit/Source/WebKit/chromium/public/
H A DWebWidgetClient.h54 virtual void didActivateAcceleratedCompositing(bool active) { } argument
/external/chromium/chrome/browser/chromeos/frame/
H A Dpanel_browser_view.cc108 void PanelBrowserView::OnWindowActivationChanged(bool active) { argument
109 ::BrowserView::OnWindowActivationChanged(active);
111 if (active)
/external/chromium/chrome/browser/metrics/
H A Dthread_watcher.h9 // all active ThreadWatcher objects.
83 bool active() const { return active_; } function in class:ThreadWatcher
153 // ping_count_ will be initialized to kPingCount whenever user becomes active.
199 // Class with a list of all active thread watchers. A thread watcher is active
/external/chromium/chrome/browser/ui/views/frame/
H A Dcontents_container.cc41 ContentsContainer::ContentsContainer(views::View* active) argument
42 : active_(active),
141 // The active view always gets the full bounds.
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutex.cc173 u64 active = iter_ % kActiveSpinIters; local
174 u64 passive = iter_ - active;
175 return active + 10 * passive;
/external/libppp/src/
H A Dprompt.h50 unsigned active : 1; /* Is the prompt active (^Z) */ member in struct:prompt
/external/skia/src/animator/
H A DSkDisplayList.cpp27 void SkDisplayList::append(SkActive* active) { argument
28 *fActiveList.append() = active;
38 SkActive* active = *activePtr; local
39 active->reset();
126 void SkDisplayList::remove(SkActive* active) { argument
127 int index = fActiveList.find(active);
130 SkASSERT(fActiveList.find(active) < 0);
/external/chromium/chrome/browser/extensions/
H A Dextension_updater.h49 // Used for counting number of active users of an app, where "active" means
50 // the app was launched at least once since the last active ping.
55 // The number of days it's been since our last rollcall or active ping,
62 PingData(int rollcall, int active) argument
63 : rollcall_days(rollcall), active_days(active) {}
/external/chromium/chrome/browser/renderer_host/
H A Dweb_cache_manager.cc115 // A renderer that was inactive, just became active. We should make sure
228 // The plan for the extra space is to divide it evenly amoung the active
240 // The remaining memory is allocated to the active renderers.
258 // inactive renderers if there is a single active tab.
324 WebCache::UsageStats active; local
326 GatherStats(active_renderers_, &active);
332 active.capacity / 1024 / 1024);
334 active.deadSize / 1024 / 1024);
336 active.liveSize / 1024 / 1024);
351 // We always try to give the active renderer
[all...]

Completed in 801 milliseconds

12345