Searched refs:Active (Results 1 - 25 of 77) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DHitTestRequest.h32 Active = 1 << 2, enumerator in enum:blink::HitTestRequest::RequestType
51 bool active() const { return m_requestType & Active; }
/external/aac/libAACdec/src/
H A Daacdec_tns.h121 UCHAR Active; member in struct:__anon25
H A Daacdec_tns.cpp111 pTnsData->Active = 0;
210 pTnsData->Active = 1;
344 if (pTnsData->Active)
/external/clang/lib/CodeGen/
H A DCGLoopInfo.h123 bool hasInfo() const { return !Active.empty(); }
126 const LoopInfo &getInfo() const { return Active.back(); }
130 llvm::SmallVector<LoopInfo, 4> Active; member in class:clang::CodeGen::LoopInfoStack
H A DCGLoopInfo.cpp83 Active.push_back(LoopInfo(Header, StagedAttrs));
89 assert(!Active.empty() && "No active loops to pop");
90 Active.pop_back();
/external/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp114 std::vector<PrettyDiag> Active; local
133 Active.push_back(PrettyDiag(I->getName(), WarningOpt, DiagLevel));
137 for (std::vector<PrettyDiag>::const_iterator I = Active.begin(),
138 E = Active.end(); I != E; ++I) {
/external/chromium_org/third_party/WebKit/Source/core/html/imports/
H A DHTMLImportState.h42 Active, enumerator in enum:blink::HTMLImportState::Value
H A DHTMLImportStateResolver.cpp78 return HTMLImportState(HTMLImportState::Active);
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp405 Active = ActiveTemplateInstantiations.rbegin(),
407 Active != ActiveEnd;
408 ++Active, ++InstantiationIdx) {
413 Diags.Report(Active->PointOfInstantiation,
420 switch (Active->Kind) {
422 Decl *D = Active->Entity;
427 Diags.Report(Active->PointOfInstantiation, DiagID)
429 << Active->InstantiationRange;
436 Diags.Report(Active->PointOfInstantiation, DiagID)
438 << Active
[all...]
/external/clang/lib/Parse/
H A DRAIIObjectsForParser.h48 bool Active; member in class:clang::SuppressAccessChecks
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();
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBTransaction.h71 bool isActive() const { return m_state == Active; }
116 Active, // Created or started, in creation scope or an event callback enumerator in enum:blink::FINAL::State
H A DIDBTransaction.cpp69 , m_state(Active)
79 if (m_state == Active)
171 ASSERT(active != (m_state == Active));
172 m_state = active ? Active : Inactive;
203 ASSERT(m_state == Active);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dqueryobj.c55 q->Active = GL_FALSE;
242 ASSERT(!q->Active); /* should be caught earlier */
332 if (q->Active) {
340 q->Active = GL_TRUE;
377 if (!q || !q->Active) {
383 q->Active = GL_FALSE;
441 if (q->Active) {
551 if (!q || q->Active) {
602 if (!q || q->Active) {
656 if (!q || q->Active) {
[all...]
H A Dtransformfeedback.c347 if (obj->Active) {
363 obj->Active = GL_TRUE;
379 if (!obj->Active) {
386 ctx->TransformFeedback.CurrentObject->Active = GL_FALSE;
444 if (obj->Active) {
487 if (obj->Active) {
528 if (obj->Active) {
795 if (ctx->TransformFeedback.CurrentObject->Active &&
839 if (obj->Active) {
866 if (!obj->Active || ob
[all...]
H A Dcondrender.c76 if (q->Target != GL_SAMPLES_PASSED || q->Active) {
/external/mesa3d/src/mesa/main/
H A Dqueryobj.c55 q->Active = GL_FALSE;
242 ASSERT(!q->Active); /* should be caught earlier */
332 if (q->Active) {
340 q->Active = GL_TRUE;
377 if (!q || !q->Active) {
383 q->Active = GL_FALSE;
441 if (q->Active) {
551 if (!q || q->Active) {
602 if (!q || q->Active) {
656 if (!q || q->Active) {
[all...]
H A Dtransformfeedback.c347 if (obj->Active) {
363 obj->Active = GL_TRUE;
379 if (!obj->Active) {
386 ctx->TransformFeedback.CurrentObject->Active = GL_FALSE;
444 if (obj->Active) {
487 if (obj->Active) {
528 if (obj->Active) {
795 if (ctx->TransformFeedback.CurrentObject->Active &&
839 if (obj->Active) {
866 if (!obj->Active || ob
[all...]
H A Dcondrender.c76 if (q->Target != GL_SAMPLES_PASSED || q->Active) {
/external/valgrind/main/coregrind/
H A Dm_redir.c114 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
142 deleted from Active as a result of recomputing it, then all
146 [Active also depends on where the aspacemgr has decided to put all
154 Clearly we must impose the requirement that domain(Active) contain
291 Active; typedef in typeref:struct:__anon32561
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DDOMWebSocket.cpp68 : m_state(Active)
77 case Active:
100 if (m_state != Active)
126 if (m_state != Active)
134 ASSERT(m_state == Active);
149 m_state = Active;
/external/chromium_org/cc/scheduler/
H A Ddelay_based_time_source.h47 virtual bool Active() const;
H A Ddelay_based_time_source.cc108 bool DelayBasedTimeSource::Active() const { return active_; } function in class:cc::DelayBasedTimeSource
115 return Active() ? current_parameters_.tick_target : base::TimeTicks();
/external/chromium_org/third_party/WebKit/Source/web/
H A DViewportAnchor.cpp54 Node* node = eventHandler->hitTestResultAtPoint(point, HitTestRequest::ReadOnly | HitTestRequest::Active).innerNode();
63 node = eventHandler->hitTestResultAtPoint(point + pointOffset, HitTestRequest::ReadOnly | HitTestRequest::Active).innerNode();
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DContextMenuController.cpp163 result = frame->eventHandler().hitTestResultAtPoint(location, HitTestRequest::ReadOnly | HitTestRequest::Active);
H A DTouchDisambiguation.cpp98 HitTestResult result = mainFrame->eventHandler().hitTestResultAtPoint(contentsPoint, HitTestRequest::ReadOnly | HitTestRequest::Active, IntSize(touchPointPadding, touchPointPadding));

Completed in 405 milliseconds

1234