OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OpEntry
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/app/
AppOpsManager.java
591
private final List<
OpEntry
> mEntries;
593
public PackageOps(String packageName, int uid, List<
OpEntry
> entries) {
607
public List<
OpEntry
> getOps() {
629
mEntries = new ArrayList<
OpEntry
>();
632
mEntries.add(
OpEntry
.CREATOR.createFromParcel(source));
651
public static class
OpEntry
implements Parcelable {
658
public
OpEntry
(int op, int mode, long time, long rejectTime, int duration) {
704
OpEntry
(Parcel source) {
712
public static final Creator<
OpEntry
> CREATOR = new Creator<
OpEntry
>() {
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp
738
SDValue &
OpEntry
= PromotedIntegers[Op];
739
assert(
OpEntry
.getNode() == 0 && "Node is already promoted!");
740
OpEntry
= Result;
749
SDValue &
OpEntry
= SoftenedFloats[Op];
750
assert(
OpEntry
.getNode() == 0 && "Node is already converted to integer!");
751
OpEntry
= Result;
763
SDValue &
OpEntry
= ScalarizedVectors[Op];
764
assert(
OpEntry
.getNode() == 0 && "Node is already scalarized!");
765
OpEntry
= Result;
[
all
...]
/external/llvm/lib/Target/X86/
X86FastISel.cpp
[
all
...]
Completed in 317 milliseconds