HomeSort by relevance Sort by last modified time
    Searched defs:Info (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfFDFPageDictionary_autogen.cpp 23 SkPdfDictionary* SkPdfFDFPageDictionary::Info(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Info", "");
32 return get("Info", "") != NULL;
SkPdfFileTrailerDictionary_autogen.cpp 59 SkPdfDictionary* SkPdfFileTrailerDictionary::Info(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("Info", "");
68 return get("Info", "") != NULL;
SkPdfPDF_XOutputIntentDictionary_autogen.cpp 71 SkString SkPdfPDF_XOutputIntentDictionary::Info(SkPdfNativeDoc* doc) {
72 SkPdfNativeObject* ret = get("Info", "");
80 return get("Info", "") != NULL;
  /external/skia/src/core/
SkYUVPlanesCache.h 19 * The Info struct contains data about the 3 Y, U and V planes of memory stored
29 struct Info {
40 static SkCachedData* FindAndRef(uint32_t genID, Info* info,
46 static void Add(uint32_t genID, SkCachedData* data, Info* info,
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMWinCOFFObjectWriter.cpp 50 const MCFixupKindInfo &Info = MAB.getFixupKindInfo(Fixup.getKind());
51 report_fatal_error(Twine("unsupported relocation type: ") + Info.Name);
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
command_utils.h 30 Info,
  /packages/inputmethods/LatinIME/native/dicttoolkit/tests/utils/
command_utils_test.cpp 28 EXPECT_EQ(CommandUtils::getCommandType("info"), CommandType::Info);
  /system/keymaster/
logger.cpp 49 int Logger::Info(const char* fmt, ...) {
  /external/clang/lib/AST/
CommentBriefParser.cpp 82 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID());
83 if (Info->IsBriefCommand) {
89 if (Info->IsReturnsCommand) {
98 if (Info->IsBlockCommand) {
CommentCommandTraits.cpp 35 if (const CommandInfo *Info = getBuiltinCommandInfo(Name))
36 return Info;
41 if (const CommandInfo *Info = getBuiltinCommandInfo(CommandID))
42 return Info;
90 CommandInfo *Info = new (Allocator) CommandInfo();
91 Info->Name = Name;
96 Info->ID = NextID++;
98 RegisteredCommands.push_back(Info);
100 return Info;
105 CommandInfo *Info = createCommandInfoWithName(CommandName)
    [all...]
  /external/llvm/include/llvm/MC/
MCInstrAnalysis.h 27 const MCInstrInfo *Info;
30 MCInstrAnalysis(const MCInstrInfo *Info) : Info(Info) {}
35 return Info->get(Inst.getOpcode()).isBranch();
39 return Info->get(Inst.getOpcode()).isConditionalBranch();
43 return Info->get(Inst.getOpcode()).isUnconditionalBranch();
47 return Info->get(Inst.getOpcode()).isIndirectBranch();
51 return Info->get(Inst.getOpcode()).isCall();
55 return Info->get(Inst.getOpcode()).isReturn()
    [all...]
  /external/llvm/lib/Support/
Threading.cpp 46 ThreadInfo Info = { Fn, UserData };
61 if (::pthread_create(&Thread, &Attr, ExecuteOnThread_Dispatch, &Info) != 0)
80 struct ThreadInfo *info = reinterpret_cast<struct ThreadInfo *>(param); local
81 info->func(info->param);
  /external/skia/include/core/
SkImage.h 46 typedef SkImageInfo Info;
48 static SkImage* NewRasterCopy(const Info&, const void* pixels, size_t rowBytes);
49 static SkImage* NewRasterData(const Info&, SkData* pixels, size_t rowBytes);
107 * On failure, returns NULL and the info and rowBytes parameters are
110 const void* peekPixels(SkImageInfo* info, size_t* rowBytes) const;
  /external/skia/include/images/
SkMovie.h 55 struct Info {
62 virtual bool onGetInfo(Info*) = 0;
70 Info fInfo;
  /frameworks/av/include/media/stagefright/
FrameRenderTracker.h 50 struct Info {
61 Info(int64_t mediaTimeUs, const sp<GraphicBuffer> &graphicBuffer, const sp<Fence> &fence)
70 Info(int64_t mediaTimeUs, nsecs_t renderTimeNs)
100 // Called when we have dequeued a buffer |buf| from the native window to track render info.
102 // client to track this render info among the dequeued buffers.
103 // Returns pointer to the tracked info, or NULL if buffer is not tracked or if |index|
105 Info *updateInfoForDequeuedBuffer(ANativeWindowBuffer *buf, int fenceFd, int index);
112 // tracked info, this method searches the entire render queue.
119 std::list<Info> checkFencesAndGetRenderedFrames(const Info *until, bool dropIncomplete)
    [all...]
  /frameworks/native/services/sensorservice/
BatteryService.h 37 struct Info {
41 Info() : uid(0), handle(0), count(0) { }
42 Info(uid_t uid, int handle) : uid(uid), handle(handle), count(0) { }
43 bool operator < (const Info& rhs) const {
49 SortedVector<Info> mActivations;
SensorDevice.h 61 // Info is a per-sensor data structure which contains the batch parameters for each client that
63 struct Info {
69 Info() : bestBatchParams(0, -1, -1) {}
82 DefaultKeyedVector<int, Info> mActivationCount;
  /external/clang/test/Analysis/engine/
replay-without-inlining.c 13 } Info;
37 static void readILBM(IB *st, Info *pic) {
52 Info pic;
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Info.java 28 public class Info extends Dicttool.Command {
29 public static final String COMMAND = "info";
31 public Info() {
  /external/clang/lib/CodeGen/
TargetInfo.h 46 ABIInfo *Info;
50 TargetCodeGenInfo(ABIInfo *info = 0) : Info(info) {}
53 /// getABIInfo() - Returns ABI info helper for the target.
54 const ABIInfo &getABIInfo() const { return *Info; }
  /external/llvm/lib/IR/
InlineAsm.cpp 215 ConstraintInfo Info;
221 Info.Parse(StringRef(I, ConstraintEnd-I), Result)) {
226 Result.push_back(Info);
  /external/valgrind/helgrind/tests/
tc19_shadowmem.c 17 Info;
25 Info* info = (Info*)infoV; local
26 firstoff = info->firstoff;
27 lastoff = info->lastoff;
28 skipoff = info->skipoff;
29 arr = info->arr;
31 assert( info->child == &child8 );
49 Info* info = (Info*)infoV local
73 Info* info = (Info*)infoV; local
97 Info* info = (Info*)infoV; local
139 Info info; local
282 Info* info = (Info*)infoV; local
    [all...]
  /external/clang/lib/Sema/
IdentifierResolver.cpp 415 IdDeclInfo *Info = toIdDeclInfo(InfoPtr);
418 if (I != Info->decls_begin())
  /external/llvm/include/llvm/Option/
OptTable.h 24 /// \brief Provide access to the Option info table.
34 struct Info {
52 const Info *OptionInfos;
69 const Info &getInfo(OptSpecifier Opt) const {
76 OptTable(const Info *OptionInfos, unsigned NumOptionInfos,
  /external/regex-re2/re2/
prefilter.cc 199 class Prefilter::Info {
201 Info();
202 ~Info();
204 // More constructors. They delete their Info* arguments.
205 static Info* Alt(Info* a, Info* b);
206 static Info* Concat(Info* a, Info* b)
407 Info* info = new Info(); local
415 Info* info = new Info(); local
423 Prefilter::Info* info = new Prefilter::Info(); local
430 Prefilter::Info* info = new Prefilter::Info(); local
440 Prefilter::Info *info = new Prefilter::Info(); local
447 Prefilter::Info* info = new Prefilter::Info(); local
513 Prefilter::Info* info = w.WalkExponential(re, NULL, 100000); local
534 Prefilter::Info *info; local
655 Prefilter::Info *info = BuildInfo(simple); local
    [all...]

Completed in 485 milliseconds

1 2 3 4 5 6