OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hasResult
(Results
1 - 25
of
32
) sorted by null
1
2
/dalvik/dexgen/src/com/android/dexgen/dex/code/
Dop.java
33
private final boolean
hasResult
;
45
* @param
hasResult
whether the opcode has a result register; if so it
50
boolean
hasResult
, String name) {
70
this.
hasResult
=
hasResult
;
113
public boolean
hasResult
() {
114
return
hasResult
;
DalvInsn.java
198
* {@code getOpcode().
hasResult
()}.
202
public final boolean
hasResult
() {
203
return opcode.
hasResult
();
216
boolean
hasResult
=
hasResult
();
218
int resultRequirement =
hasResult
? registers.get(0).getCategory() : 0;
221
for (int i =
hasResult
? 1 : 0; i < regSz; i++) {
240
if (
hasResult
()) {
261
if (
hasResult
()) {
284
registers.withSequentialRegisters(0,
hasResult
());
[
all
...]
RopTranslator.java
702
boolean
hasResult
= opcode.
hasResult
()
705
if (
hasResult
!= (realResult != null)) {
744
if (opcode.
hasResult
() != (realResult != null)) {
/dalvik/dx/src/com/android/dx/dex/code/
Dop.java
44
private final boolean
hasResult
;
57
* @param
hasResult
whether the opcode has a result register; if so it
61
boolean
hasResult
) {
82
this.
hasResult
=
hasResult
;
124
public boolean
hasResult
() {
125
return
hasResult
;
DalvInsn.java
200
* {@code getOpcode().
hasResult
()}.
204
public final boolean
hasResult
() {
205
return opcode.
hasResult
();
221
boolean
hasResult
=
hasResult
();
226
if (
hasResult
&& !compatRegs.get(0)) {
230
for (int i =
hasResult
? 1 : 0; i < regSz; i++) {
248
registers.withExpandedRegisters(0,
hasResult
(), null);
266
if (
hasResult
()) compatRegs.set(0);
270
if (
hasResult
()) compatRegs.set(0, firstBit)
[
all
...]
RopTranslator.java
712
boolean
hasResult
= opcode.
hasResult
()
715
if (
hasResult
!= (realResult != null)) {
754
if (opcode.
hasResult
() != (realResult != null)) {
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
Dop.java
44
private final boolean
hasResult
;
57
* @param
hasResult
whether the opcode has a result register; if so it
61
boolean
hasResult
) {
82
this.
hasResult
=
hasResult
;
124
public boolean
hasResult
() {
125
return
hasResult
;
DalvInsn.java
200
* {@code getOpcode().
hasResult
()}.
204
public final boolean
hasResult
() {
205
return opcode.
hasResult
();
221
boolean
hasResult
=
hasResult
();
226
if (
hasResult
&& !compatRegs.get(0)) {
230
for (int i =
hasResult
? 1 : 0; i < regSz; i++) {
248
registers.withExpandedRegisters(0,
hasResult
(), null);
266
if (
hasResult
()) compatRegs.set(0);
270
if (
hasResult
()) compatRegs.set(0, firstBit)
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/filters/
FEMerge.cpp
46
if (
hasResult
())
53
if (!in->
hasResult
())
FilterEffect.cpp
70
ASSERT(
hasResult
());
100
if (!
hasResult
())
175
ASSERT(
hasResult
());
209
ASSERT(
hasResult
());
238
ASSERT(!
hasResult
());
252
ASSERT(!
hasResult
());
265
ASSERT(!
hasResult
());
SourceGraphic.cpp
56
if (
hasResult
())
FEOffset.cpp
79
if (
hasResult
())
83
if (!in->
hasResult
())
FETile.cpp
50
if (
hasResult
())
54
if (!in->
hasResult
())
FEBlend.cpp
96
if (
hasResult
())
102
if (!in->
hasResult
() || !in2->
hasResult
())
FEDisplacementMap.cpp
93
if (
hasResult
())
99
if (!in->
hasResult
() || !in2->
hasResult
())
FEFlood.cpp
75
if (
hasResult
())
SourceAlpha.cpp
57
if (
hasResult
())
FEComposite.cpp
201
if (
hasResult
())
207
if (!in->
hasResult
() || !in2->
hasResult
())
FilterEffect.h
57
bool
hasResult
() const { return m_imageBufferResult || m_unmultipliedImageResult || m_premultipliedImageResult; }
FEColorMatrix.cpp
161
if (
hasResult
())
165
if (!in->
hasResult
())
FEComponentTransfer.cpp
154
if (
hasResult
())
158
if (!in->
hasResult
())
FEGaussianBlur.cpp
169
if (
hasResult
())
173
if (!in->
hasResult
())
FEMorphology.cpp
105
if (
hasResult
())
109
if (!in->
hasResult
())
/external/webkit/Source/WebCore/svg/graphics/filters/
SVGFEImage.cpp
61
if (!m_image.get() ||
hasResult
())
SVGFilterBuilder.cpp
98
if (!effect->
hasResult
())
Completed in 669 milliseconds
1
2