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

1 2

  /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/clang/lib/CodeGen/
CGLoopInfo.h 74 /// \brief Get the set of attributes active for this loop.
145 bool hasInfo() const { return !Active.empty(); }
148 const LoopInfo &getInfo() const { return Active.back(); }
151 /// \brief Stack of active loops.
152 llvm::SmallVector<LoopInfo, 4> Active;
CGLoopInfo.cpp 107 Active.push_back(LoopInfo(Header, StagedAttrs));
225 assert(!Active.empty() && "No active loops to pop");
226 Active.pop_back();
  /external/clang/tools/diagtool/
ShowEnabledWarnings.cpp 116 std::vector<PrettyDiag> Active;
135 Active.push_back(PrettyDiag(I->getName(), WarningOpt, DiagLevel));
139 for (std::vector<PrettyDiag>::const_iterator I = Active.begin(),
140 E = Active.end(); I != E; ++I) {
  /external/clang/lib/Parse/
RAIIObjectsForParser.h 48 bool Active;
56 Active = true;
58 Active = false;
63 State(Other.State), Active(Other.Active) {
64 Other.Active = false;
69 assert(Active && "trying to end an inactive suppression");
71 Active = false;
75 assert(!Active && "redelaying without having ended first");
82 if (Active) done()
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 385 Active = ActiveTemplateInstantiations.rbegin(),
387 Active != ActiveEnd;
388 ++Active, ++InstantiationIdx) {
393 Diags.Report(Active->PointOfInstantiation,
400 switch (Active->Kind) {
402 Decl *D = Active->Entity;
407 Diags.Report(Active->PointOfInstantiation, DiagID)
409 << Active->InstantiationRange;
416 Diags.Report(Active->PointOfInstantiation, DiagID)
418 << Active->InstantiationRange
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/rds2/
test_connection.py 72 "Status": "active",
79 "Status": "active"
103 "SubnetStatus": "Active",
110 "SubnetStatus": "Active",
117 "SubnetStatus": "Active",
170 'active'
191 '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) {
shaderapi.c 757 if (obj->Active
762 "glLinkProgram(transform feedback active)");
958 any two active samplers in the current program object are of
961 any active sampler in the current program object refers to a texture
965 the sum of the number of active samplers in the program and the
973 * Check: any two active samplers in the current program object are of
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
CallAudioModeStateMachineTest.java 106 "New active/dialing call with no other calls when unfocused",
125 "New active/dialing voip call with no other calls when unfocused",
163 "New ringing call coming in on top of active/dialing call",
182 "Ringing call becomes active, part 1",
201 "Ringing call becomes active, part 2",
220 "Active call disconnects, but tone is playing",
239 "Tone stops playing, with no active calls",
372 "Active call disconnects while there's a call-waiting call",
  /packages/apps/Nfc/nci/jni/
NfcTag.h 34 enum ActivationState {Idle, Sleep, Active};
144 ** Description: Set the current state to Active.
278 ** Description Sets the active state for the object
283 void setActive(bool active);
NativeNfcTag.cpp 575 if (natTag.getActivationState() != NfcTag::Active)
700 if (NfcTag::getInstance ().getActivationState () != NfcTag::Active)
702 ALOGE("%s: tag is not active", __FUNCTION__);
768 if (natTag.getActivationState() != NfcTag::Active)
833 if (NfcTag::getInstance ().getActivationState () != NfcTag::Active)
925 if (NfcTag::getInstance ().getActivationState () != NfcTag::Active)
934 ALOGD ("%s: tag not active", __FUNCTION__);
989 if (NfcTag::getInstance ().getActivationState () != NfcTag::Active)
    [all...]
  /external/valgrind/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/llvm/lib/CodeGen/
RegAllocPBQP.cpp 273 // isn't linear, because the size of the active set isn't bound by the
293 IntervalSet Active(lowestEndPoint);
309 // Retire any active intervals that end before Cur starts.
310 IntervalSet::iterator RetireItr = Active.begin();
311 while (RetireItr != Active.end() &&
320 Active.erase(Active.begin(), RetireItr);
327 // At this point we know that Cur overlaps all active intervals. Add the
330 for (const auto &A : Active) {
350 // Finally, add Cur to the Active set
    [all...]
ShadowStackGCLowering.cpp 262 bool Active = false;
265 Active = true;
269 if (!Active)
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_gs.c 192 if (ctx->TransformFeedback.CurrentObject->Active &&
gen6_sol.c 51 if (xfb_obj->Active && !xfb_obj->Paused &&
gen7_sol_state.c 184 upload_3dstate_streamout(struct brw_context *brw, bool active,
199 if (active) {
241 bool active = xfb_obj->Active && !xfb_obj->Paused; local
243 if (active) {
256 upload_3dstate_streamout(brw, active, &brw->vs.prog_data->vue_map);
brw_queryobj.c 40 * query is active, and sum up the differences. (We should do so for
231 query->Base.Active = false;
423 if (!query || brw->query.active)
436 brw->query.active = true;
445 if (!brw->query.active)
450 brw->query.active = false;
  /external/llvm/lib/ProfileData/
CoverageMapping.cpp 307 /// Pop the top region off of the active stack, starting a new segment with
310 const CountedRegion *Active = ActiveRegions.back();
311 unsigned Line = Active->LineEnd, Col = Active->ColumnEnd;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_queryobj.c 66 query->Base.Active = GL_FALSE;
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 182 for (auto *Active : Info.ActiveModuleMacros) {
183 auto *NewMI = Active->getMacroInfo();
197 IsSystemMacro &= Active->getOwningModule()->IsSystem ||
232 llvm::DenseSet<ModuleMacro*> Active;
234 Active.insert(MM);
244 if (Active.count(MM))
245 llvm::errs() << " active";
    [all...]

Completed in 591 milliseconds

1 2