HomeSort by relevance Sort by last modified time
    Searched refs:HeaderMap (Results 1 - 15 of 15) sorted by null

  /external/clang/include/clang/Lex/
HeaderMap.h 1 //===--- HeaderMap.h - A file that acts like dir of symlinks ----*- C++ -*-===//
10 // This file defines the HeaderMap interface.
32 class HeaderMap {
33 HeaderMap(const HeaderMap&); // DO NOT IMPLEMENT
34 void operator=(const HeaderMap&); // DO NOT IMPLEMENT
39 HeaderMap(const llvm::MemoryBuffer *File, bool BSwap)
43 ~HeaderMap();
45 /// HeaderMap::Create - This attempts to load the specified file as a header
46 /// map. If it doesn't look like a HeaderMap, it gives up and returns null
    [all...]
DirectoryLookup.h 21 class HeaderMap;
29 /// represents either a directory, a framework, or a headermap.
44 /// Map - This is the HeaderMap if this is a headermap lookup.
46 const HeaderMap *Map;
58 /// normal directory, a framework, or a headermap.
77 DirectoryLookup(const HeaderMap *map, SrcMgr::CharacteristicKind DT,
85 /// normal directory, a framework path, or a HeaderMap.
104 const HeaderMap *getHeaderMap() const { return isHeaderMap() ? u.Map : 0; }
HeaderSearch.h 183 /// HeaderMaps - This is a mapping from FileEntry -> HeaderMap, uniquing
184 /// headermaps. This vector owns the headermap.
185 std::vector<std::pair<const FileEntry*, const HeaderMap*> > HeaderMaps;
411 /// CreateHeaderMap - This method returns a HeaderMap for the specified
413 const HeaderMap *CreateHeaderMap(const FileEntry *FE);
  /external/clang/lib/Lex/
HeaderMap.cpp 1 //===--- HeaderMap.cpp - A file that acts like dir of symlinks ------------===//
10 // This file implements the HeaderMap interface.
14 #include "clang/Lex/HeaderMap.h"
75 /// HeaderMap::Create - This attempts to load the specified file as a header
76 /// map. If it doesn't look like a HeaderMap, it gives up and returns null.
77 /// If it looks like a HeaderMap but is obviously corrupted, it puts a reason
79 const HeaderMap *HeaderMap::Create(const FileEntry *FE, FileManager &FM) {
91 // Sniff it to see if it's a headermap by checking the magic number and
99 NeedsByteSwap = true; // Mixed endianness headermap
    [all...]
Android.mk 14 HeaderMap.cpp \
HeaderSearch.cpp 15 #include "clang/Lex/HeaderMap.h"
86 /// CreateHeaderMap - This method returns a HeaderMap for the specified
88 const HeaderMap *HeaderSearch::CreateHeaderMap(const FileEntry *FE) {
99 if (const HeaderMap *HM = HeaderMap::Create(FE, FileMgr)) {
    [all...]
  /external/chromium/chrome/browser/debugger/
devtools_remote_message.cc 22 DevToolsRemoteMessage::DevToolsRemoteMessage(const HeaderMap& headers,
33 HeaderMap::const_iterator it = header_map_.find(header_name);
47 for (HeaderMap::const_iterator it = header_map_.begin(),
59 DevToolsRemoteMessage::HeaderMap headers;
devtools_remote_message.h 31 typedef base::hash_map<std::string, std::string> HeaderMap;
39 DevToolsRemoteMessage(const HeaderMap& headers, const std::string& content);
42 const HeaderMap& headers() const {
76 HeaderMap header_map_;
devtools_remote_message_unittest.cc 24 DevToolsRemoteMessage::HeaderMap headers;
38 ASSERT_EQ(static_cast<DevToolsRemoteMessage::HeaderMap::size_type>(2),
50 ASSERT_EQ(static_cast<DevToolsRemoteMessage::HeaderMap::size_type>(3),
67 static_cast<DevToolsRemoteMessage::HeaderMap::size_type>(
devtools_remote_listen_socket.h 59 DevToolsRemoteMessage::HeaderMap header_map_;
devtools_remote_listen_socket.cc 193 DevToolsRemoteMessage::HeaderMap::const_iterator it =
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.h 296 typedef std::multimap<std::string, std::string, iless> HeaderMap;
297 typedef HeaderMap::const_iterator const_iterator;
298 typedef HeaderMap::iterator iterator;
393 HeaderMap headers_;
httpcommon.cc 449 HeaderMap::iterator it = headers_.find(name);
458 headers_.insert(HeaderMap::value_type(name, value));
473 HeaderMap::const_iterator it = headers_.find(name);
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 150 // Check to see if this is an apple-style headermap (which are not allowed to
154 if (const HeaderMap *HM = Headers.CreateHeaderMap(FE)) {
155 // It is a headermap, add it to the search path.
506 llvm::SmallPtrSet<const HeaderMap *, 8> SeenHeaderMaps;
522 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?");
523 // If this isn't the first time we've seen this headermap, remove it.
528 // If we have a normal #include dir/framework/headermap that is shadowed
553 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?");
651 Suffix = " (headermap)";
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 

Completed in 1068 milliseconds