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

1 2 3 4 5 6 7 8

  /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/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/lib/Frontend/
TextDiagnosticPrinter.cpp 54 static void printDiagnosticName(raw_ostream &OS, const Diagnostic &Info) {
55 if (!DiagnosticIDs::isBuiltinNote(Info.getID()))
56 OS << " [" << DiagnosticIDs::getName(Info.getID()) << "]";
66 const Diagnostic &Info,
71 if (Info.getID() == diag::fatal_too_many_errors) {
86 DiagnosticIDs::isBuiltinWarningOrExtension(Info.getID()) &&
87 !DiagnosticIDs::isDefaultMappingAsError(Info.getID())) {
95 if (DiagnosticIDs::isBuiltinExtensionDiag(Info.getID(),
102 StringRef Opt = DiagnosticIDs::getWarningOptionForDiag(Info.getID());
112 DiagnosticIDs::getCategoryNumberForDiag(Info.getID())
    [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/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 96 BBInfo *Info = new (Allocator) BBInfo(BB, 0);
97 BBMap[BB] = Info;
98 WorkList.push_back(Info);
105 Info = WorkList.pop_back_val();
107 Traits::FindPredecessorBlocks(Info->BB, &Preds);
108 Info->NumPreds = Preds.size();
109 if (Info->NumPreds == 0)
110 Info->Preds = 0;
112 Info->Preds = static_cast<BBInfo**>
113 (Allocator.Allocate(Info->NumPreds * sizeof(BBInfo*)
    [all...]
  /external/skia/include/images/
SkMovie.h 60 struct Info {
67 virtual bool onGetInfo(Info*) = 0;
75 Info fInfo;
  /external/clang/include/clang/Frontend/
ChainedDiagnosticConsumer.h 50 const Diagnostic &Info) {
52 DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info);
54 Primary->HandleDiagnostic(DiagLevel, Info);
55 Secondary->HandleDiagnostic(DiagLevel, Info);
VerifyDiagnosticConsumer.h 90 const Diagnostic &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) {
45 clang::SourceLocation const &SrcLoc = Info.getLocation();
51 SrcLoc.print(*mSOS, Info.getSourceManager());
77 Info.FormatDiagnostic(Buf);
  /external/clang/lib/Basic/
TargetInfo.cpp 313 bool TargetInfo::validateOutputConstraint(ConstraintInfo &Info) const {
314 const char *Name = Info.getConstraintStr().c_str();
320 Info.setIsReadWrite();
326 if (!validateAsmConstraint(Name, Info)) {
338 Info.setAllowsRegister();
345 Info.setAllowsMemory();
349 Info.setAllowsRegister();
350 Info.setAllowsMemory();
394 ConstraintInfo &Info) const {
395 const char *Name = Info.ConstraintStr.c_str()
    [all...]
  /external/clang/include/clang/Basic/
OnDiskHashTable.h 114 template<typename Info>
122 typename Info::key_type key;
123 typename Info::data_type data;
127 Item(typename Info::key_type_ref k, typename Info::data_type_ref d,
128 Info &InfoObj)
170 void insert(typename Info::key_type_ref key,
171 typename Info::data_type_ref data) {
172 Info InfoObj;
176 void insert(typename Info::key_type_ref key
    [all...]
Builtins.h 47 struct Info {
51 bool operator==(const Info &RHS) const {
56 bool operator!=(const Info &RHS) const { return !(*this == RHS); }
62 const Info *TSRecords;
158 const Info &GetRecord(unsigned ID) const;
  /external/clang/lib/Rewrite/
FixItRewriter.cpp 82 const Diagnostic &Info) {
84 DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info);
86 Client->HandleDiagnostic(DiagLevel, Info);
94 bool CanRewrite = Info.getNumFixItHints() > 0;
95 for (unsigned Idx = 0, Last = Info.getNumFixItHints();
97 const FixItHint &Hint = Info.getFixItHint(Idx);
106 if (Info.getNumFixItHints() > 0)
107 Diag(Info.getLocation(), diag::note_fixit_in_macro);
113 Diag(Info.getLocation(), diag::note_fixit_unfixed_error);
119 for (unsigned Idx = 0, Last = Info.getNumFixItHints()
    [all...]
  /frameworks/base/services/sensorservice/
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/llvm/lib/VMCore/
Metadata.cpp 451 LLVMContextImpl::MDMapTy &Info = getContext().pImpl->MetadataStore[this];
452 assert(!Info.empty() == hasMetadataHashEntry() &&
454 if (Info.empty()) {
458 for (unsigned i = 0, e = Info.size(); i != e; ++i)
459 if (Info[i].first == KindID) {
460 Info[i].second = Node;
466 Info.push_back(std::make_pair(KindID, Node));
474 LLVMContextImpl::MDMapTy &Info = getContext().pImpl->MetadataStore[this];
477 if (Info.size() == 1 && Info[0].first == KindID)
    [all...]
  /external/llvm/lib/CodeGen/
ELF.h 131 uint8_t Info;
139 Size(0), Info(0), Other(ELF::STV_DEFAULT), SectionIdx(0),
142 unsigned getBind() const { return (Info >> 4) & 0xf; }
143 unsigned getType() const { return Info & 0xf; }
149 Info = (Info & 0x0F) | (X << 4);
154 Info = (Info & 0xF0) | X;
176 unsigned Info; // sh_info - Auxiliary information.
195 Offset(0), Size(0), Link(0), Info(0), Align(0), EntSize(0), Sym(0) {
    [all...]
  /external/clang/tools/libclang/
IndexingContext.cpp 44 CXIdxIncludedFileInfo Info = { getIndexLoc(hashLoc),
48 CB.ppIncludedFile(ClientData, &Info);
59 CXIdxMacroDefinedInfo Info = { &MacroInfo,
61 CXIdxMacro idxMacro = CB.ppMacroDefined(ClientData, &Info);
71 CXIdxMacroUndefinedInfo Info = { getIndexLoc(Loc),
73 CB.ppMacroUndefined(ClientData, &Info);
82 CXIdxMacroExpandedInfo Info = { getIndexLoc(Loc),
84 CB.ppMacroExpanded(ClientData, &Info);
116 CXIdxFunctionInfo Info = { &IdxEntityInfo,
119 idxEntity = CB.indexFunction(ClientData, &Info);
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITDwarfEmitter.h 65 void setModuleInfo(MachineModuleInfo* Info) {
66 MMI = Info;
  /external/llvm/lib/Transforms/Utils/
InstructionNamer.cpp 30 void getAnalysisUsage(AnalysisUsage &Info) const {
31 Info.setPreservesAll();
  /external/clang/include/clang/Driver/
OptTable.h 37 /// OptTable - Provide access to the Option info table.
46 /// Info - Entry for a single option instance in the option data table.
47 struct Info {
60 const Info *OptionInfos;
77 const Info &getInfo(OptSpecifier Opt) const {
86 OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos);
  /external/llvm/include/llvm/Analysis/
DominatorInternals.h 40 InfoRec &VInfo = DT.Info[DT.Roots[i]];
47 InfoRec &SuccVInfo = DT.Info[*SI];
64 DT.Info[BB];
96 DT.Info[Succ];
111 DT.Info[VIn];
124 DT.Info[V];
134 // Update VInfo based on Ancestor info
139 DT.Info[VAncestor];
142 if (DT.Info[VAncestorLabel].Semi < DT.Info[VLabel].Semi
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.h 41 ABIInfo *Info;
44 TargetCodeGenInfo(ABIInfo *info = 0):Info(info) { }
47 /// getABIInfo() - Returns ABI info helper for the target.
48 const ABIInfo& getABIInfo() const { return *Info; }

Completed in 348 milliseconds

1 2 3 4 5 6 7 8