OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isDef
(Results
1 - 12
of
12
) sorted by null
/external/skia/src/svg/
SkSVGDefs.cpp
22
bool SkSVGDefs::
isDef
() {
SkSVGMask.cpp
31
bool SkSVGMask::
isDef
() {
SkSVGMetadata.cpp
23
bool SkSVGMetadata::
isDef
() {
SkSVGClipPath.cpp
24
bool SkSVGClipPath::
isDef
() {
SkSVGGroup.cpp
34
bool SkSVGGroup::
isDef
() {
35
return fParent ? fParent->
isDef
() : false;
SkSVGElements.cpp
52
bool SkSVGElement::
isDef
() {
53
return isGroupParent() == false ? fParent->
isDef
() : fIsDef;
85
fIsDef =
isDef
();
SkSVGGradient.cpp
29
bool SkSVGGradient::
isDef
() {
SkSVGParser.cpp
238
void SkSVGParser::translate(SkSVGElement* element, bool
isDef
) {
242
(element->fIsDef &&
isDef
== false && element->fIsNotDef == false) ||
243
(element->fIsDef == false &&
isDef
&& element->fIsNotDef)) {
258
element->fPaintState.flush(*this, isFlushable,
isDef
);
259
element->translate(*this,
isDef
);
262
if (element->fPaintState.flush(*this, isFlushable,
isDef
)) {
269
element->fPaintState.flush(*this, isFlushable,
isDef
);
271
element->translate(*this,
isDef
);
395
bool
isDef
= created->fIsDef = created->
isDef
();
[
all
...]
/external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h
115
///
isDef
- Return true if this MemDepResult represents a query that is
117
bool
isDef
() const { return Value.getInt() == Def; }
/external/llvm/include/llvm/CodeGen/
MachineOperand.h
67
///
IsDef
/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
70
///
IsDef
- True if this is a def, false if this is a use of the register.
72
bool
IsDef
: 1;
218
return !
IsDef
;
221
bool
isDef
() const {
223
return
IsDef
;
292
IsDef
= !Val;
298
IsDef
= Val;
307
assert(isReg() && !
IsDef
&& "Wrong MachineOperand accessor");
313
assert(isReg() &&
IsDef
&& "Wrong MachineOperand accessor")
[
all
...]
SlotIndexes.h
199
///
isDef
- Return true if this is a DEF slot.
200
bool
isDef
() const {
/external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp
350
bool
isDef
= (isi32Load(Opcode) || Opcode == ARM::VLDRS ||
358
MIB = MIB.addReg(Regs[i].first, getDefRegState(
isDef
)
[
all
...]
Completed in 96 milliseconds