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

  /external/clang/test/CXX/dcl.decl/dcl.init/
p14-0x.cpp 7 struct Explicit { // expected-note 2 {{candidate}} expected-note {{here}}
8 explicit Explicit(int);
32 Explicit e1; // expected-note {{here}}
33 Explicit e2 = 42; // expected-error {{no viable conversion}}
  /external/webkit/Source/WebCore/loader/appcache/
ManifestParser.cpp 39 enum Mode { Explicit, Fallback, OnlineWhitelist, Unknown };
48 Mode mode = Explicit;
96 mode = Explicit;
105 else if (mode == Explicit || mode == OnlineWhitelist) {
130 if (mode == Explicit && manifestURL.protocolIs("https") && !protocolHostAndPortAreEqual(manifestURL, url))
133 if (mode == Explicit)
ApplicationCacheResource.h 40 Explicit = 1 << 2,
  /external/clang/test/CXX/expr/expr.const/
p5-0x.cpp 5 // non-explicit conversion function to an integral or unscoped enumeration type
27 struct Explicit {
28 constexpr Explicit() {}
29 constexpr explicit operator int() { return 4; } // expected-note 4{{here}}
49 auto new3 = new int[1][expl]; // expected-error {{explicit conversion}}
57 enum3 = expl, // expected-error {{explicit conversion}}
66 alignas(expl) int alignas3; // expected-error {{explicit conversion}}
83 int bitfield3 : expl; // expected-error {{explicit conversion}}
  /external/llvm/lib/Target/R600/
AMDGPUIndirectAddressing.cpp 256 // If the register we are reading from has an explicit def, then that
290 // We only need to use REG_SEQUENCE for explicit defs, since the
327 bool Explicit = false;
336 Explicit = Explicit || regHasExplicitDef(MRI, MO.getReg());
338 return Explicit;
  /external/clang/lib/Lex/
ModuleMap.cpp 182 bool Explicit = UmbrellaModule->InferExplicitSubmodules;
191 Explicit).first;
207 Explicit).first;
742 void parseInferredModuleDecl(bool Framework, bool Explicit);
748 explicit ModuleMapParser(Lexer &L, SourceManager &SourceMgr,
781 .Case("explicit", MMToken::ExplicitKeyword)
947 /// 'explicit'[opt] 'framework'[opt] 'module' module-id attributes[opt]
963 // Parse 'explicit' or 'framework' keyword, if present.
965 bool Explicit = false;
968 // Parse 'explicit' keyword, if present
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp 160 /// explicit storage class.
    [all...]

Completed in 75 milliseconds