HomeSort by relevance Sort by last modified time
    Searched defs:Literal (Results 1 - 25 of 26) sorted by null

1 2

  /external/llvm/lib/Target/R600/InstPrinter/
AMDGPUInstPrinter.cpp 90 union Literal {
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p3.cpp 15 struct Literal {
16 constexpr Literal() {}
29 struct T : SS, NonLiteral { // expected-note {{base class 'NonLiteral' of non-literal type}}
31 constexpr int f(); // expected-error {{non-literal type 'T' cannot have constexpr members}}
38 // - its return type shall be a literal type;
39 constexpr NonLiteral NonLiteralReturn() { return {}; } // expected-error {{constexpr function's return type 'NonLiteral' is not a literal type}}
40 constexpr void VoidReturn() { return; } // expected-error {{constexpr function's return type 'void' is not a literal type}}
45 // - each of its parameter types shall be a literal type;
46 constexpr int NonLiteralParam(NonLiteral) { return 0; } // expected-error {{constexpr function's 1st parameter type 'NonLiteral' is not a literal type}}
55 // don't have a literal return type. Defaulted assignment operators can't b
    [all...]
p6.cpp 16 struct Literal {
17 constexpr Literal() {}
51 template<typename T> struct T1 : virtual Literal { // expected-note {{here}}
60 constexpr T2<Literal> g2() { return {}; }
62 template<typename T> class T3 : public T { // expected-note {{class with virtual base class is not a literal type}}
66 constexpr T3<Literal> g3() { return {}; } // ok
67 constexpr T3<VirtBase> g4() { return {}; } // expected-error {{not a literal type}}
p4.cpp 15 struct Literal {
16 constexpr Literal() {}
17 explicit Literal(int); // expected-note 2 {{here}}
22 // shall be a literal type.
25 constexpr S(int, NonLiteral, N::C) {} // expected-error {{constexpr constructor's 2nd parameter type 'NonLiteral' is not a literal type}}
26 constexpr S(int, NonLiteral = 42) {} // expected-error {{constexpr constructor's 2nd parameter type 'NonLiteral' is not a literal type}}
30 constexpr S(Literal) = delete;
172 Literal l;
173 Literal m;
174 Literal n[3]
    [all...]
  /bootable/recovery/edify/
expr.c 323 Value* Literal(const char* name, State* state, int argc, Expr* argv[]) {
  /external/regex-re2/re2/
prefilter.cc 215 static Info* Literal(Rune r);
405 // Constructs Info for literal rune.
406 Prefilter::Info* Prefilter::Info::Literal(Rune r) {
413 // Constructs Info for literal rune for Latin1 encoded string.
562 info = Literal(re->rune());
577 info = Literal(re->runes()[0]);
579 info = Concat(info, Literal(re->runes()[i]));
compile.cc 209 Frag Literal(Rune r, bool foldcase);
690 Frag Compiler::Literal(Rune r, bool foldcase) {
764 return Literal(re->rune(), re->parse_flags()&Regexp::FoldCase);
772 Frag f1 = Literal(re->runes()[i], re->parse_flags()&Regexp::FoldCase);
    [all...]
regexp.h 274 Literal = 1<<1, // Treat s as literal string instead of a regexp.
478 // Simplifies an alternation of literal strings by factoring out
566 Rune rune_; // Literal
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 104 // The parser verifies that there is a string literal here.
110 StringLiteral *Literal = Constraints[i];
111 if (!Literal->isAscii())
112 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
113 << Literal->getSourceRange());
119 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName);
121 return StmtError(Diag(Literal->getLocStart(),
139 StringLiteral *Literal = Constraints[i];
140 if (!Literal->isAscii())
141 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character
    [all...]
SemaChecking.cpp 71 /// and the second argument is a non-wide string literal.
87 StringLiteral *Literal = dyn_cast<StringLiteral>(StrArg);
88 if (!Literal || !Literal->isAscii()) {
    [all...]
SemaExpr.cpp     [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java     [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp     [all...]
  /external/icu4c/test/intltest/
wbnf.cpp 411 } else { //if (isAlphabet(c) || isDigit(c) || TRUE){ // treat others as literal
425 char * operator()(const char * literal /*c-string*/){
427 for(;*literal != 0; literal++){
428 append(*literal);
506 class Literal : public Pick {
511 Literal(const char * s /*c-string*/){
919 default: token.append(c); // unknown escaping, treat it as literal
    [all...]
  /external/v8/src/
ast.h 99 V(Literal) \
332 // True iff the expression is a literal represented as a smi.
335 // True iff the expression is a string literal.
338 // True iff the expression is the null literal.
785 // True if there is a function literal subexpression in the condition.
843 // True if there is a function literal subexpression in the condition.
1210 class Literal: public Expression {
1212 DECLARE_NODE_TYPE(Literal)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar 
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 
lombok-ast-0.2.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 

Completed in 316 milliseconds

1 2