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

1 2 3 4 5 6 7 8 9

  /dalvik/dx/src/com/android/dx/io/
OpcodeInfo.java 27 * TODO: Merge at least most of the info from the Dops class into
32 private static final Info[] INFO;
40 public static final Info SPECIAL_FORMAT =
41 new Info(Opcodes.SPECIAL_FORMAT, "<special>",
46 public static final Info PACKED_SWITCH_PAYLOAD =
47 new Info(Opcodes.PACKED_SWITCH_PAYLOAD, "packed-switch-payload",
51 public static final Info SPARSE_SWITCH_PAYLOAD =
52 new Info(Opcodes.SPARSE_SWITCH_PAYLOAD, "sparse-switch-payload",
56 public static final Info FILL_ARRAY_DATA_PAYLOAD
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
OpcodeInfo.java 27 * TODO: Merge at least most of the info from the Dops class into
32 private static final Info[] INFO;
40 public static final Info SPECIAL_FORMAT =
41 new Info(Opcodes.SPECIAL_FORMAT, "<special>",
46 public static final Info PACKED_SWITCH_PAYLOAD =
47 new Info(Opcodes.PACKED_SWITCH_PAYLOAD, "packed-switch-payload",
51 public static final Info SPARSE_SWITCH_PAYLOAD =
52 new Info(Opcodes.SPARSE_SWITCH_PAYLOAD, "sparse-switch-payload",
56 public static final Info FILL_ARRAY_DATA_PAYLOAD
    [all...]
  /external/llvm/include/llvm/MC/
MCInstrAnalysis.h 24 const MCInstrInfo *Info;
27 MCInstrAnalysis(const MCInstrInfo *Info) : Info(Info) {}
32 return Info->get(Inst.getOpcode()).isBranch();
36 return Info->get(Inst.getOpcode()).isConditionalBranch();
40 return Info->get(Inst.getOpcode()).isUnconditionalBranch();
44 return Info->get(Inst.getOpcode()).isIndirectBranch();
48 return Info->get(Inst.getOpcode()).isCall();
52 return Info->get(Inst.getOpcode()).isReturn()
    [all...]
  /external/clang/include/clang/Driver/
Option.h 72 const OptTable::Info *Info;
84 Option(const OptTable::Info *Info, OptSpecifier ID,
89 OptionClass getKind() const { return OptionClass(Info->Kind); }
90 StringRef getName() const { return Info->Name; }
94 unsigned getNumArgs() const { return Info->Param; }
96 bool isUnsupported() const { return Info->Flags & options::Unsupported; }
98 bool isLinkerInput() const { return Info->Flags & options::LinkerInput; }
100 bool hasNoOptAsInput() const { return Info->Flags & options::RenderAsInput;
    [all...]
OptTable.h 23 /// \brief Provide access to the Option info table.
33 struct Info {
46 const Info *OptionInfos;
63 const Info &getInfo(OptSpecifier Opt) const {
72 OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos);
  /external/regex-re2/re2/
prefilter.cc 193 class Prefilter::Info {
195 Info();
196 ~Info();
198 // More constructors. They delete their Info* arguments.
199 static Info* Alt(Info* a, Info* b);
200 static Info* Concat(Info* a, Info* b)
395 Info* info = new Info(); local
403 Prefilter::Info* info = new Prefilter::Info(); local
410 Prefilter::Info* info = new Prefilter::Info(); local
420 Prefilter::Info *info = new Prefilter::Info(); local
427 Prefilter::Info* info = new Prefilter::Info(); local
482 Prefilter::Info* info = w.WalkExponential(re, NULL, 100000); local
503 Prefilter::Info *info; local
611 Prefilter::Info *info = BuildInfo(simple); local
    [all...]
  /external/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 56 const Diagnostic &Info,
61 if (Info.getID() == diag::fatal_too_many_errors) {
76 DiagnosticIDs::isBuiltinWarningOrExtension(Info.getID()) &&
77 !DiagnosticIDs::isDefaultMappingAsError(Info.getID())) {
82 StringRef Opt = DiagnosticIDs::getWarningOptionForDiag(Info.getID());
92 DiagnosticIDs::getCategoryNumberForDiag(Info.getID());
109 const Diagnostic &Info) {
111 DiagnosticConsumer::HandleDiagnostic(Level, Info);
116 Info.FormatDiagnostic(OutStr);
119 printDiagnosticOptions(DiagMessageStream, Level, Info, *DiagOpts)
    [all...]
TextDiagnosticBuffer.cpp 23 const Diagnostic &Info) {
25 DiagnosticConsumer::HandleDiagnostic(Level, Info);
28 Info.FormatDiagnostic(Buf);
33 Notes.push_back(std::make_pair(Info.getLocation(), Buf.str()));
36 Warnings.push_back(std::make_pair(Info.getLocation(), Buf.str()));
40 Errors.push_back(std::make_pair(Info.getLocation(), Buf.str()));
  /external/clang/lib/AST/
CommentCommandTraits.cpp 23 if (const CommandInfo *Info = getBuiltinCommandInfo(Name))
24 return Info;
29 if (const CommandInfo *Info = getBuiltinCommandInfo(CommandID))
30 return Info;
40 CommandInfo *Info = new (Allocator) CommandInfo();
41 Info->Name = Name;
42 Info->ID = NextID++;
44 RegisteredCommands.push_back(Info);
46 return Info;
ExprConstant.cpp 201 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK);
241 void diagnosePointerArithmetic(EvalInfo &Info, const Expr *E, uint64_t N);
243 void adjustIndex(EvalInfo &Info, const Expr *E, uint64_t N) {
248 diagnosePointerArithmetic(Info, E, Entries.back().ArrayIndex);
261 diagnosePointerArithmetic(Info, E, uint64_t(IsOnePastTheEnd) + N);
269 EvalInfo &Info;
297 CallStackFrame(EvalInfo &Info, SourceLocation CallLoc,
517 explicit FoldConstant(EvalInfo &Info)
518 : Enabled(Info.EvalStatus.Diag && Info.EvalStatus.Diag->empty() &
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 104 BBInfo *Info = new (Allocator) BBInfo(BB, 0);
105 BBMap[BB] = Info;
106 WorkList.push_back(Info);
113 Info = WorkList.pop_back_val();
115 Traits::FindPredecessorBlocks(Info->BB, &Preds);
116 Info->NumPreds = Preds.size();
117 if (Info->NumPreds == 0)
118 Info->Preds = 0;
120 Info->Preds = static_cast<BBInfo**>
121 (Allocator.Allocate(Info->NumPreds * sizeof(BBInfo*)
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/android/inputmethod/latin/dicttool/
Info.java 19 public class Info extends Dicttool.Command {
20 public static final String COMMAND = "info";
22 public Info() {
26 return "info <filename>: prints various information about a dictionary file";
CommandList.java 21 Dicttool.addCommand("info", Info.class);
  /external/skia/include/images/
SkMovie.h 53 struct Info {
60 virtual bool onGetInfo(Info*) = 0;
68 Info fInfo;
  /external/clang/include/clang/Frontend/
ChainedDiagnosticConsumer.h 56 const Diagnostic &Info) {
58 DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info);
60 Primary->HandleDiagnostic(DiagLevel, Info);
61 Secondary->HandleDiagnostic(DiagLevel, Info);
  /external/webkit/Source/WebCore/inspector/front-end/
ExtensionCommon.js 38 Info: "info",
  /frameworks/compile/slang/
slang_diagnostic_buffer.cpp 43 clang::Diagnostic const &Info) {
44 clang::SourceLocation const &SrcLoc = Info.getLocation();
50 SrcLoc.print(*mSOS, Info.getSourceManager());
76 Info.FormatDiagnostic(Buf);
  /external/clang/lib/Basic/
TargetInfo.cpp 320 bool TargetInfo::validateOutputConstraint(ConstraintInfo &Info) const {
321 const char *Name = Info.getConstraintStr().c_str();
327 Info.setIsReadWrite();
333 if (!validateAsmConstraint(Name, Info)) {
345 Info.setAllowsRegister();
352 Info.setAllowsMemory();
356 Info.setAllowsRegister();
357 Info.setAllowsMemory();
401 ConstraintInfo &Info) const {
402 const char *Name = Info.ConstraintStr.c_str()
    [all...]
  /external/clang/include/clang/Basic/
OnDiskHashTable.h 113 template<typename Info>
121 typename Info::key_type key;
122 typename Info::data_type data;
126 Item(typename Info::key_type_ref k, typename Info::data_type_ref d,
127 Info &InfoObj)
169 void insert(typename Info::key_type_ref key,
170 typename Info::data_type_ref data) {
171 Info InfoObj;
175 void insert(typename Info::key_type_ref key
    [all...]
Builtins.h 48 struct Info {
52 bool operator==(const Info &RHS) const {
57 bool operator!=(const Info &RHS) const { return !(*this == RHS); }
63 const Info *TSRecords;
159 const Info &GetRecord(unsigned ID) const;
  /frameworks/native/services/sensorservice/
BatteryService.h 41 struct Info {
45 Info() : uid(0), handle(0), count(0) { }
46 Info(uid_t uid, int handle) : uid(uid), handle(handle), count(0) { }
47 bool operator < (const Info& rhs) const {
53 SortedVector<Info> mActivations;
SensorDevice.h 42 struct Info {
43 Info() : delay(0) { }
49 DefaultKeyedVector<int, Info> mActivationCount;
  /frameworks/ex/carousel/test/src/com/android/carouseltest/
MyCarouselView.java 24 import com.android.ex.carousel.CarouselView.Info;
40 public Info getRenderScriptInfo() {
41 return new Info(R.raw.carousel);
  /external/llvm/lib/MC/
MCInstrAnalysis.cpp 16 Info->get(Inst.getOpcode()).OpInfo[0].OperandType != MCOI::OPERAND_PCREL)
  /external/clang/include/clang/AST/
CommentCommandTraits.h 109 if (const CommandInfo *Info = getCommandInfoOrNULL(Name))
110 return Info;

Completed in 672 milliseconds

1 2 3 4 5 6 7 8 9