HomeSort by relevance Sort by last modified time
    Searched defs:Info (Results 26 - 50 of 66) sorted by null

12 3

  /external/clang/lib/Basic/
DiagnosticIDs.cpp 104 "Improperly sorted diag info");
124 DiagnosticMappingInfo Info = DiagnosticMappingInfo::Make(
128 Info.setMapping((diag::Mapping) StaticInfo->Mapping);
131 assert(Info.getMapping() == diag::MAP_WARNING &&
133 Info.setNoWarningAsError(true);
137 assert(Info.getMapping() == diag::MAP_WARNING &&
139 Info.setShowInSystemHeader(true);
143 return Info;
149 if (const StaticDiagInfoRec *Info = GetDiagInfo(DiagID))
150 return Info->Category
    [all...]
IdentifierTable.cpp 78 // Populate the identifier table with info about keywords for the current
142 IdentifierInfo &Info =
144 Info.setIsExtensionToken(AddResult == 1);
145 Info.setIsCXX11CompatKeyword(AddResult == 3);
153 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
154 Info.setIsCPlusPlusOperatorKeyword();
SourceManager.cpp 569 ExpansionInfo Info = ExpansionInfo::createForMacroArg(SpellingLoc,
571 return createExpansionLocImpl(Info, TokLength);
581 ExpansionInfo Info = ExpansionInfo::create(SpellingLoc, ExpansionLocStart,
583 return createExpansionLocImpl(Info, TokLength, LoadedID, LoadedOffset);
587 SourceManager::createExpansionLocImpl(const ExpansionInfo &Info,
596 LoadedSLocEntryTable[Index] = SLocEntry::get(LoadedOffset, Info);
600 LocalSLocEntryTable.push_back(SLocEntry::get(NextLocalOffset, Info));
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 414 // Add the bit field info.
513 // Add the bit field info.
    [all...]
CGDecl.cpp 417 CallCleanupFunction(llvm::Constant *CleanupFn, const CGFunctionInfo *Info,
419 : CleanupFn(CleanupFn), FnInfo(*Info), Var(*Var) {}
897 // Emit debug info for local var declaration.
    [all...]
CGStmt.cpp 46 // These statements have their own debug info handling.
68 // Generate a stoppoint if we are emitting debug info.
344 // debug info). We have to do this ourselves because we are on the
786 // As long as debug info is modeled with instructions, we have to ensure we
800 // debug info). We have to do this ourselves because we are on the
813 // debug info). We have to do this ourselves because we are on the
    [all...]
CGBlocks.cpp 176 /// Tell the block info that this chunk has the given field index.
177 void setIndex(CGBlockInfo &info, unsigned index) {
179 info.CXXThisIndex = index;
181 info.Captures[Capture->getVariable()]
248 static void initializeForBlockHeader(CodeGenModule &CGM, CGBlockInfo &info,
265 info.BlockAlign = ptrAlign;
266 info.BlockSize = headerSize;
283 CGBlockInfo &info) {
285 const BlockDecl *block = info.getBlockDecl();
288 initializeForBlockHeader(CGM, info, elementTypes)
    [all...]
CGCall.cpp 305 const FunctionType::ExtInfo &info,
312 return arrangeFunctionType(GetReturnType(resultType), argTypes, info,
319 const FunctionType::ExtInfo &info,
329 return arrangeFunctionType(GetReturnType(resultType), argTypes, info,
344 const FunctionType::ExtInfo &info,
352 unsigned CC = ClangCallConvToLLVMCallConv(info.getCC());
354 // Lookup or create unique function info.
356 CGFunctionInfo::Profile(ID, info, required, resultType, argTypes);
363 // Construct the function info. We co-allocate the ArgInfos.
364 FI = CGFunctionInfo::create(CC, info, resultType, argTypes, required)
    [all...]
  /external/clang/tools/libclang/
IndexingContext.cpp 228 CXIdxIncludedFileInfo Info = { getIndexLoc(hashLoc),
232 CXIdxClientFile idxFile = CB.ppIncludedFile(ClientData, &Info);
616 CXIdxEntityRefInfo Info = { Kind,
622 CB.indexEntityReference(ClientData, &Info);
    [all...]
IndexingContext.h 320 CXIdxObjCProtocolRefListInfo Info = { Prots.data(),
322 return Info;
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 76 BlockInfo &Info = BlockInfoRecords.back();
77 // Free blockinfo abbrev info.
78 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
80 Info.Abbrevs[i]->dropRef();
95 /// block info block for this Bitstream. We only process it for the first
99 /// getBlockInfo - If there is block info for the specified ID, return it,
419 if (const BitstreamReader::BlockInfo *Info =
421 for (unsigned i = 0, e = static_cast<unsigned>(Info->Abbrevs.size());
423 CurAbbrevs.push_back(Info->Abbrevs[i]);
601 // If this is the second stream to get to the block info block, skip it
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
AuditsPanel.js 318 Info: "info",
324 "info": 3,
  /external/libvpx/mkvparser/
mkvparser.cpp 952 if (id == 0x0549A966) //Segment Info ID
4669 Info& info = const_cast<Info&>(m_info); local
    [all...]
mkvparser.hpp 319 class Info
322 Info();
323 ~Info();
324 int Copy(Info&) const;
327 Info(const Info&);
328 Info& operator=(const Info&);
341 int CopyStr(char* Info::*str, Info&) const;
    [all...]
  /external/clang/lib/AST/
DumpXML.cpp 644 FunctionTemplateSpecializationInfo *Info
648 switch (Info->getTemplateSpecializationKind()) {
660 visitTemplateArguments(*Info->TemplateArguments);
661 dispatch(Info->Function);
Decl.cpp     [all...]
RecordLayoutBuilder.cpp 40 /// Class - The class for this base info.
49 /// PrimaryVirtualBaseInfo - Holds the base info for the primary virtual base
50 /// of this base info (if one exists).
81 void UpdateEmptyBaseSubobjects(const BaseSubobjectInfo *Info,
108 bool CanPlaceBaseSubobjectAtOffset(const BaseSubobjectInfo *Info,
132 bool CanPlaceBaseAtOffset(const BaseSubobjectInfo *Info,
228 EmptySubobjectMap::CanPlaceBaseSubobjectAtOffset(const BaseSubobjectInfo *Info,
235 if (!CanPlaceSubobjectAtOffset(Info->Class, Offset))
239 const ASTRecordLayout &Layout = Context.getASTRecordLayout(Info->Class);
240 for (unsigned I = 0, E = Info->Bases.size(); I != E; ++I)
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 124 const IdentifierInfo &Info = Identifiers.get(Spelling);
127 if (Info.isCPlusPlusOperatorKeyword() && getLangOpts().MicrosoftMode) {
132 if (Info.isCPlusPlusOperatorKeyword())
272 // allows us to avoid looking up the identifier info for #define/#undef and
500 // info about where the current file is.
    [all...]
  /external/llvm/include/llvm/Analysis/
Dominators.h 1 //===- llvm/Analysis/Dominators.h - Dominator Info Calculation --*- C++ -*-===//
143 // Return true if this node is dominated by other. Use this only if DFS info
222 // Info - Collection of information used during the computation of idoms.
223 DenseMap<NodeT*, InfoRec> Info;
  /external/llvm/lib/MC/
MCAsmStreamer.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 278 AllocaInfo &Info);
279 void ComputeLiveInBlocks(AllocaInst *AI, AllocaInfo &Info,
283 void RewriteSingleStoreAlloca(AllocaInst *AI, AllocaInfo &Info,
285 void PromoteSingleBlockAlloca(AllocaInst *AI, AllocaInfo &Info,
393 AllocaInfo Info;
419 Info.AnalyzeAlloca(AI);
423 if (Info.DefiningBlocks.size() == 1) {
424 RewriteSingleStoreAlloca(AI, Info, LBI);
427 if (Info.UsingBlocks.empty()) {
430 if (DbgDeclareInst *DDI = Info.DbgDeclare)
    [all...]
  /external/llvm/lib/VMCore/
PassManager.cpp 170 /// Pass Manager itself does not invalidate any analysis info.
171 void getAnalysisUsage(AnalysisUsage &Info) const {
172 Info.setPreservesAll();
265 /// Pass Manager itself does not invalidate any analysis info.
266 void getAnalysisUsage(AnalysisUsage &Info) const {
267 Info.setPreservesAll();
312 /// Pass Manager itself does not invalidate any analysis info.
313 void getAnalysisUsage(AnalysisUsage &Info) const {
314 Info.setPreservesAll();
397 /// Pass Manager itself does not invalidate any analysis info
    [all...]
  /frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselView.java 111 public static class Info {
112 public Info(int _resId) { resId = _resId; }
116 public abstract Info getRenderScriptInfo();
  /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/clang/lib/Sema/
SemaStmt.cpp     [all...]

Completed in 1035 milliseconds

12 3