HomeSort by relevance Sort by last modified time
    Searched defs:Primary (Results 1 - 6 of 6) sorted by null

  /external/clang/include/clang/Frontend/
ChainedDiagnosticConsumer.h 21 /// should be the "primary" client, and will be used for computing whether the
26 DiagnosticConsumer *Primary;
30 ChainedDiagnosticConsumer(std::unique_ptr<DiagnosticConsumer> Primary,
32 : OwningPrimary(std::move(Primary)), Primary(OwningPrimary.get()),
35 /// \brief Construct without taking ownership of \c Primary.
36 ChainedDiagnosticConsumer(DiagnosticConsumer *Primary,
38 : Primary(Primary), Secondary(std::move(Secondary)) {}
42 Primary->BeginSourceFile(LO, PP)
    [all...]
  /external/clang/include/clang/AST/
DeclLookups.h 72 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext();
73 if (Primary->hasExternalVisibleStorage())
74 getParentASTContext().getExternalSource()->completeVisibleDeclsMap(Primary);
75 if (StoredDeclsMap *Map = Primary->buildLookup())
93 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext();
94 if (StoredDeclsMap *Map = Primary->getLookupPtr())
  /frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
DomainMatcher.java 14 public enum Match {None, Primary, Secondary}
67 public DomainMatcher(List<String> primary, List<List<String>> secondary) {
72 // Primary overwrites secondary.
73 mRoot.addDomain(primary.iterator(), Match.Primary);
81 * @return None if domain is not a sub-domain, Primary if it matched one of the primary domains
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
DomainMatcher.java 17 public enum Match {None, Primary, Secondary}
70 public DomainMatcher(List<String> primary, List<List<String>> secondary) {
75 // Primary overwrites secondary.
76 mRoot.addDomain(primary.iterator(), Match.Primary);
83 * @return None if domain is not a sub-domain, Primary if it matched one of the primary domains
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugFrame.cpp 104 // Some instructions have a primary opcode encoded in the top bits.
105 uint8_t Primary = Opcode & DWARF_CFI_PRIMARY_OPCODE_MASK;
107 if (Primary) {
108 // If it's a primary opcode, the first operand is encoded in the bottom
111 switch (Primary) {
112 default: llvm_unreachable("Impossible primary CFI opcode");
115 addInstruction(Primary, Op1);
118 addInstruction(Primary, Op1, Data.getULEB128(Offset));
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]

Completed in 164 milliseconds