Home
last modified time | relevance | path

Searched refs:CurrentValue (Results 1 – 11 of 11) sorted by relevance

/external/clang/lib/Sema/
DSemaAttr.cpp53 if (!PackStack.CurrentValue) in AddAlignmentAttributesForRecord()
57 if (unsigned Alignment = PackStack.CurrentValue) { in AddAlignmentAttributesForRecord()
73 if (VtorDispStack.CurrentValue != getLangOpts().VtorDispMode) in AddMsStructLayoutForRecord()
75 MSVtorDispAttr::CreateImplicit(Context, VtorDispStack.CurrentValue)); in AddMsStructLayoutForRecord()
115 if (PackStack.CurrentValue) { in ActOnPragmaOptionsAlign()
155 AlignmentVal = PackStack.CurrentValue; in ActOnPragmaPack()
217 CurrentValue = DefaultValue; in Act()
221 Stack.push_back(Slot(StackSlotLabel, CurrentValue, CurrentPragmaLocation)); in Act()
230 CurrentValue = I->Value; in Act()
236 CurrentValue = Stack.back().Value; in Act()
[all …]
DSemaDecl.cpp8178 if (CodeSegStack.CurrentValue && D.isFunctionDefinition() && in ActOnFunctionDeclarator()
8182 CodeSegStack.CurrentValue->getString(), in ActOnFunctionDeclarator()
8184 if (UnifySection(CodeSegStack.CurrentValue->getString(), in ActOnFunctionDeclarator()
10381 if (Stack->CurrentValue && !var->hasAttr<SectionAttr>()) { in CheckCompleteVariableDeclaration()
10384 Stack->CurrentValue->getString(), Stack->CurrentPragmaLocation)); in CheckCompleteVariableDeclaration()
/external/libmtp/src/
Dptp-pack.c874 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->CurrentValue, dpd->DataType); in ptp_unpack_DPD()
965 ret = ptp_unpack_DPV (params, data, poffset, dpdlen, &dpd->CurrentValue, dpd->DataType); in ptp_unpack_Sony_DPD()
1068 duplicate_PropertyValue (&src->CurrentValue, &dst->CurrentValue, src->DataType); in duplicate_DevicePropDesc()
2255 dpd->CurrentValue.u32 = dtoh32a(xdata); in ptp_unpack_CANON_changes()
2256 ptp_debug (params ,"event %d: currentvalue of %x is %x", i, proptype, dpd->CurrentValue.u32); in ptp_unpack_CANON_changes()
2260 dpd->CurrentValue.i16 = dtoh16a(xdata); in ptp_unpack_CANON_changes()
2261 ptp_debug (params,"event %d: currentvalue of %x is %d", i, proptype, dpd->CurrentValue.i16); in ptp_unpack_CANON_changes()
2265 dpd->CurrentValue.u16 = dtoh16a(xdata); in ptp_unpack_CANON_changes()
2266 ptp_debug (params,"event %d: currentvalue of %x is %x", i, proptype, dpd->CurrentValue.u16); in ptp_unpack_CANON_changes()
2270 dpd->CurrentValue.u8 = dtoh8a(xdata); in ptp_unpack_CANON_changes()
[all …]
Dptp.c692 parse_9301_value (params, (char*)xmlNodeGetContent (next), type, &dpd->CurrentValue); in parse_9301_propdesc()
1059 ptp_free_devicepropvalue (dpd->DataType, &dpd->CurrentValue); in ptp_free_devicepropdesc()
2412 dpd->CurrentValue.str = strdup( params->canon_props[i].dpd.CurrentValue.str ); in ptp_canon_eos_getdevicepropdesc()
2555 params->canon_props[i].dpd.CurrentValue.u16 = value->u16; in ptp_canon_eos_setdevicepropvalue()
2564 params->canon_props[i].dpd.CurrentValue.str = strdup( value->str ); in ptp_canon_eos_setdevicepropvalue()
2582 params->canon_props[i].dpd.CurrentValue.u8 = value->u8; in ptp_canon_eos_setdevicepropvalue()
2588 params->canon_props[i].dpd.CurrentValue.u16 = value->u16; in ptp_canon_eos_setdevicepropvalue()
2594 params->canon_props[i].dpd.CurrentValue.u32 = value->u32; in ptp_canon_eos_setdevicepropvalue()
2598 free (params->canon_props[i].dpd.CurrentValue.str); in ptp_canon_eos_setdevicepropvalue()
2599 params->canon_props[i].dpd.CurrentValue.str = strdup(value->str); in ptp_canon_eos_setdevicepropvalue()
[all …]
Dptp.h1187 PTPPropertyValue CurrentValue; member
/external/llvm/lib/Transforms/Scalar/
DRewriteStatepointsForGC.cpp1794 Value *CurrentValue, Value *BaseValue) { in findRematerializableChainToBasePointer() argument
1797 if (CurrentValue == BaseValue) { in findRematerializableChainToBasePointer()
1801 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurrentValue)) { in findRematerializableChainToBasePointer()
1808 if (CastInst *CI = dyn_cast<CastInst>(CurrentValue)) { in findRematerializableChainToBasePointer()
/external/v8/src/
Dd8.h82 Counter* CurrentValue() { return static_cast<Counter*>(entry_->value); } in CurrentValue() function
Dd8.cc1765 counters[j].counter = i.CurrentValue(); in OnExit()
Dobjects-inl.h8130 array->set(1, CurrentValue()); in PopulateValueArray()
8134 Object* JSMapIterator::CurrentValue() { in CurrentValue() function
Dobjects.h10599 inline Object* CurrentValue();
/external/clang/include/clang/Sema/
DSema.h376 Act(CurrentPragmaLocation, Action, Label, CurrentValue); in SentinelAction()
381 : DefaultValue(Default), CurrentValue(Default) {} in PragmaStack()
385 ValueType CurrentValue; member