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

1 2 3

  /external/chromium_org/third_party/skia/src/opts/
SkBlitRow_opts_arm_neon.h 12 extern const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm_neon[];
SkBlitRow_opts_none.cpp 13 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
SkBlitRow_opts_arm.cpp 341 static const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm[] = {
367 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
  /external/skia/src/opts/
SkBlitRow_opts_arm_neon.h 12 extern const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm_neon[];
SkBlitRow_opts_none.cpp 13 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
SkBlitRow_opts_arm.cpp 341 static const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm[] = {
367 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
  /external/chromium_org/third_party/skia/src/core/
SkDrawProcs.h 38 typedef void (*Proc)(const SkDraw1Glyph&, SkFixed x, SkFixed y, const SkGlyph&);
40 Proc init(const SkDraw* draw, SkBlitter* blitter, SkGlyphCache* cache,
59 SkDraw1Glyph::Proc fD1GProc;
SkProcSpriteBlitter.cpp 14 typedef void (*Proc)(void* dst, const void* src, int count, const SkPMColor ctable[]);
16 SkProcSpriteBlitter(const SkBitmap& source, Proc proc, unsigned srcShift, unsigned dstShift)
17 : SkSpriteBlitter(source), fProc(proc), fSrcShift(SkToU8(srcShift)), fDstShift(SkToU8(dstShift)) {}
25 Proc proc = fProc;
33 proc(dst, src, width, ctable);
43 Proc fProc;
  /external/skia/src/core/
SkDrawProcs.h 38 typedef void (*Proc)(const SkDraw1Glyph&, SkFixed x, SkFixed y, const SkGlyph&);
40 Proc init(const SkDraw* draw, SkBlitter* blitter, SkGlyphCache* cache,
59 SkDraw1Glyph::Proc fD1GProc;
SkProcSpriteBlitter.cpp 14 typedef void (*Proc)(void* dst, const void* src, int count, const SkPMColor ctable[]);
16 SkProcSpriteBlitter(const SkBitmap& source, Proc proc, unsigned srcShift, unsigned dstShift)
17 : SkSpriteBlitter(source), fProc(proc), fSrcShift(SkToU8(srcShift)), fDstShift(SkToU8(dstShift)) {}
25 Proc proc = fProc;
33 proc(dst, src, width, ctable);
43 Proc fProc;
  /external/skia/bench/
RegionContainBench.cpp 20 typedef bool (*Proc)(SkRegion& a, SkRegion& b);
22 Proc fProc;
37 RegionContainBench(void* param, Proc proc, const char name[]) : INHERITED(param) {
38 fProc = proc;
55 Proc proc = fProc; local
58 proc(fA, fB);
PathUtilsBench.cpp 38 typedef void (*Proc)(char*, SkPath*);
40 Proc fProc;
47 PathUtilsBench(void* param, Proc proc, const char name[]) : INHERITED(param) {
48 fProc = proc;
  /frameworks/base/tools/preload/
Proc.java 27 class Proc implements Serializable {
32 final Proc parent;
44 final List<Proc> children = new ArrayList<Proc>();
60 Proc(Proc parent, int id) {
155 * Prints a child proc to standard out.
159 for (Proc child : children) {
Android.mk 14 Proc.java \
Root.java 42 /** pid -> Proc */
43 final Map<Integer, Proc> processes = new HashMap<Integer, Proc>();
55 Proc process = processes.get(record.pid);
116 Proc proc = processes.get(record.pid); local
118 if (proc == null) {
120 Proc parent = processes.get(record.ppid);
121 proc = new Proc(parent, record.pid)
    [all...]
PrintPsTree.java 40 for (Proc proc : root.processes.values()) {
41 if (proc.parent == null) {
42 proc.print();
Operation.java 36 final Proc process;
57 Operation(Proc process, LoadedClass loadedClass, long startTimeNanos,
  /external/chromium_org/third_party/skia/include/effects/
SkColorMatrixFilter.h 44 typedef void (*Proc)(const State&, unsigned r, unsigned g, unsigned b,
47 Proc fProc;
  /external/skia/include/effects/
SkColorMatrixFilter.h 44 typedef void (*Proc)(const State&, unsigned r, unsigned g, unsigned b,
47 Proc fProc;
  /external/chromium_org/third_party/skia/include/core/
SkBlitRow.h 35 typedef void (*Proc)(uint16_t* dst,
39 static Proc Factory(unsigned flags, SkBitmap::Config);
94 static Proc PlatformProcs565(unsigned flags);
  /external/skia/include/core/
SkBlitRow.h 35 typedef void (*Proc)(uint16_t* dst,
39 static Proc Factory(unsigned flags, SkBitmap::Config);
94 static Proc PlatformProcs565(unsigned flags);
  /cts/tests/tests/security/src/android/security/cts/
KeystoreExploitTest.java 26 int pid = Proc.findPidFor("/system/bin/keystore");
58 new File("/proc/" + pid + "/cmdline").exists());
Proc.java 25 * Utilities for accessing /proc filesystem information.
27 public class Proc {
29 File f = new File("/proc");
  /external/chromium_org/third_party/skia/include/views/
SkEvent.h 26 * the eventsink matching the target ID (if not 0), or the target proc is
34 typedef bool (*Proc)(const SkEvent& evt);
65 * the eventsink matching the targetID (if not 0), or the target proc is
75 * the eventsink matching the targetID (if not 0), or the target proc is
85 * Return the target proc, or NULL if it has none.
88 * the eventsink matching the targetID (if not 0), or the target proc is
91 Proc getTargetProc() const { return fTargetProc; }
98 * the eventsink matching the targetID (if not 0), or the target proc is
101 SkEvent* setTargetProc(Proc proc) {
    [all...]
  /external/skia/include/views/
SkEvent.h 26 * the eventsink matching the target ID (if not 0), or the target proc is
34 typedef bool (*Proc)(const SkEvent& evt);
65 * the eventsink matching the targetID (if not 0), or the target proc is
75 * the eventsink matching the targetID (if not 0), or the target proc is
85 * Return the target proc, or NULL if it has none.
88 * the eventsink matching the targetID (if not 0), or the target proc is
91 Proc getTargetProc() const { return fTargetProc; }
98 * the eventsink matching the targetID (if not 0), or the target proc is
101 SkEvent* setTargetProc(Proc proc) {
    [all...]

Completed in 993 milliseconds

1 2 3