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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestRequest.h 32 Active = 1 << 2,
53 bool active() const { return m_requestType & Active; } function in class:WebCore::HitTestRequest
  /external/aac/libAACdec/src/
aacdec_tns.h 121 UCHAR Active;
aacdec_tns.cpp 111 pTnsData->Active = 0;
210 pTnsData->Active = 1;
344 if (pTnsData->Active)
  /external/chromium_org/cc/scheduler/
time_source.h 30 virtual void SetActive(bool active) = 0;
31 virtual bool Active() const = 0;
delay_based_time_source.h 30 virtual void SetActive(bool active) OVERRIDE;
31 virtual bool Active() const OVERRIDE;
delay_based_time_source.cc 54 void DelayBasedTimeSource::SetActive(bool active) {
55 TRACE_EVENT1("cc", "DelayBasedTimeSource::SetActive", "active", active);
56 if (!active) {
66 // Becoming active the first time is deferred: we post a 0-delay task.
68 // active, and fire the first tick.
81 bool DelayBasedTimeSource::Active() const { return state_ != STATE_INACTIVE; }
86 return Active() ? current_parameters_.tick_target : base::TimeTicks();
118 // If we aren't active, there's no need to reset the timer.
  /external/clang/tools/diagtool/
ShowEnabledWarnings.cpp 113 std::vector<PrettyDiag> Active;
132 Active.push_back(PrettyDiag(I->getName(), WarningOpt, DiagLevel));
136 for (std::vector<PrettyDiag>::const_iterator I = Active.begin(),
137 E = Active.end(); I != E; ++I) {
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 491 Active = ActiveTemplateInstantiations.rbegin(),
493 Active != ActiveEnd;
494 ++Active, ++InstantiationIdx) {
499 Diags.Report(Active->PointOfInstantiation,
506 switch (Active->Kind) {
508 Decl *D = Active->Entity;
513 Diags.Report(Active->PointOfInstantiation, DiagID)
515 << Active->InstantiationRange;
522 Diags.Report(Active->PointOfInstantiation, DiagID)
524 << Active->InstantiationRange
    [all...]
  /external/clang/lib/Parse/
RAIIObjectsForParser.h 48 bool Active;
56 Active = true;
58 Active = false;
63 assert(Active && "trying to end an inactive suppression");
65 Active = false;
69 assert(!Active && "redelaying without having ended first");
76 if (Active) done();
81 /// currently parsing a declaration. This is active when parsing a
  /external/chromium_org/third_party/WebKit/Source/web/
ViewportAnchor.cpp 55 Node* node = eventHandler->hitTestResultAtPoint(point, HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::DisallowShadowContent).innerNode();
64 node = eventHandler->hitTestResultAtPoint(point + pointOffset, HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::DisallowShadowContent).innerNode();
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
queryobj.c 55 q->Active = GL_FALSE;
191 /* No query objects can be active at this time! */
231 /* No query objects can be active at this time! */
242 ASSERT(!q->Active); /* should be caught earlier */
332 if (q->Active) {
334 "glBeginQuery{Indexed}(query already active)");
340 q->Active = GL_TRUE;
377 if (!q || !q->Active) {
383 q->Active = GL_FALSE;
441 if (q->Active) {
    [all...]
transformfeedback.c 324 "glBeginTransformFeedback(no program active)");
347 if (obj->Active) {
349 "glBeginTransformFeedback(already active)");
363 obj->Active = GL_TRUE;
379 if (!obj->Active) {
381 "glEndTransformFeedback(not active)");
386 ctx->TransformFeedback.CurrentObject->Active = GL_FALSE;
408 * active.
444 if (obj->Active) {
446 "glBindBufferRange(transform feedback active)");
    [all...]
condrender.c 76 if (q->Target != GL_SAMPLES_PASSED || q->Active) {
  /external/mesa3d/src/mesa/main/
queryobj.c 55 q->Active = GL_FALSE;
191 /* No query objects can be active at this time! */
231 /* No query objects can be active at this time! */
242 ASSERT(!q->Active); /* should be caught earlier */
332 if (q->Active) {
334 "glBeginQuery{Indexed}(query already active)");
340 q->Active = GL_TRUE;
377 if (!q || !q->Active) {
383 q->Active = GL_FALSE;
441 if (q->Active) {
    [all...]
transformfeedback.c 324 "glBeginTransformFeedback(no program active)");
347 if (obj->Active) {
349 "glBeginTransformFeedback(already active)");
363 obj->Active = GL_TRUE;
379 if (!obj->Active) {
381 "glEndTransformFeedback(not active)");
386 ctx->TransformFeedback.CurrentObject->Active = GL_FALSE;
408 * active.
444 if (obj->Active) {
446 "glBindBufferRange(transform feedback active)");
    [all...]
condrender.c 76 if (q->Target != GL_SAMPLES_PASSED || q->Active) {
  /external/valgrind/main/coregrind/
m_redir.c 75 symbols can cause new (active) redirections to appear for two
98 its tables all active redirections in any way associated with that
114 Active - a set of orig addr -> (bool, redir addr)
116 Active is the currently active set of bindings that the translator
120 Active is a pure function of Specs and the current symbol table
123 Therefore whenever either Specs or SyminfoState changes, Active
127 Active is computed as follows:
129 Active = empty
136 &fn -> redir is added to Active
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBTransaction.h 70 bool isActive() const { return m_state == Active; }
138 Active, // Created or started, in creation scope or an event callback
IDBTransaction.cpp 98 , m_state(Active)
105 // Not active until the callback.
111 if (m_state == Active)
192 void IDBTransaction::setActive(bool active)
194 ASSERT_WITH_MESSAGE(m_state != Finished, "A finished transaction tried to setActive(%s)", active ? "true" : "false");
197 ASSERT(active != (m_state == Active));
198 m_state = active ? Active : Inactive;
200 if (!active && m_requestList.isEmpty()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
ContextMenuController.cpp 103 result = frame->eventHandler()->hitTestResultAtPoint(mouseEvent->absoluteLocation(), HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::DisallowShadowContent);
TouchDisambiguation.cpp 100 HitTestResult result = mainFrame->eventHandler()->hitTestResultAtPoint(contentsPoint, HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::DisallowShadowContent, IntSize(touchPointPadding, touchPointPadding));
  /packages/apps/Nfc/nci/jni/
NfcTag.h 34 enum ActivationState {Idle, Sleep, Active};
144 ** Description: Set the current state to Active.
254 ** Description Sets the active state for the object
259 void setActive(bool active);
NativeNfcTag.cpp 504 if (natTag.getActivationState() != NfcTag::Active)
628 if (NfcTag::getInstance ().getActivationState () != NfcTag::Active)
630 ALOGD("%s: tag is not active", __FUNCTION__);
697 if (natTag.getActivationState() != NfcTag::Active)
760 if (NfcTag::getInstance ().getActivationState () != NfcTag::Active)
844 if (NfcTag::getInstance ().getActivationState () != NfcTag::Active)
853 ALOGD ("%s: tag not active", __FUNCTION__);
909 if (NfcTag::getInstance ().getActivationState () != NfcTag::Active)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.h 189 Active,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_gs.c 192 if (ctx->TransformFeedback.CurrentObject->Active &&

Completed in 306 milliseconds

1 2 3 4