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

1 2

  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
model.py 56 class Literal(Node):
155 self.formatter.literal('NULL')
164 self.formatter.literal('"' + node.value + '"')
167 self.formatter.literal(repr(node.value))
170 self.formatter.literal(node.name)
  /external/chromium_org/third_party/sqlite/src/test/
fuzz_common.tcl 24 # Literal
33 # Returns a string representing an SQL literal.
35 proc Literal {} {
71 set TemplateList [concat $c $c $c {[Literal]}]
94 {[Literal]} {[Literal]} {[Literal]} \
95 {[Literal]} {[Literal]} {[Literal]} \
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
model.py 56 class Literal(Node):
155 self.formatter.literal('NULL')
164 self.formatter.literal('"' + node.value + '"')
167 self.formatter.literal(repr(node.value))
170 self.formatter.literal(node.name)
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
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 16 struct Literal {
17 constexpr Literal() {}
18 explicit Literal(int); // expected-note 2 {{here}}
23 // shall be a literal type.
26 constexpr S(int, NonLiteral, N::C) {} // expected-error {{constexpr constructor's 2nd parameter type 'NonLiteral' is not a literal type}}
27 constexpr S(int, NonLiteral = 42) {} // expected-error {{constexpr constructor's 2nd parameter type 'NonLiteral' is not a literal type}}
31 constexpr S(Literal) = delete;
194 Literal l;
195 Literal m;
196 Literal n[3]
    [all...]
p3.cpp 16 struct Literal {
17 constexpr Literal() {}
30 struct T : SS, NonLiteral { // expected-note {{base class 'NonLiteral' of non-literal type}}
32 constexpr int f() const; // expected-error {{non-literal type 'T' cannot have constexpr members}}
39 // - its return type shall be a literal type;
40 constexpr NonLiteral NonLiteralReturn() const { return {}; } // expected-error {{constexpr function's return type 'NonLiteral' is not a literal type}}
43 // expected-error@-2 {{constexpr function's return type 'void' is not a literal type}}
49 // - each of its parameter types shall be a literal type;
50 constexpr int NonLiteralParam(NonLiteral) const { return 0; } // expected-error {{constexpr function's 1st parameter type 'NonLiteral' is not a literal type}}
60 // don't have a literal return type. Defaulted assignment operators can't b
    [all...]
  /external/llvm/lib/Target/R600/InstPrinter/
AMDGPUInstPrinter.cpp 94 union Literal {
  /bootable/recovery/edify/
expr.c 323 Value* Literal(const char* name, State* state, int argc, Expr* argv[]) {
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 91 // The parser verifies that there is a string literal here.
97 StringLiteral *Literal = Constraints[i];
98 if (!Literal->isAscii())
99 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
100 << Literal->getSourceRange());
106 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName);
108 return StmtError(Diag(Literal->getLocStart(),
129 StringLiteral *Literal = Constraints[i];
130 if (!Literal->isAscii())
131 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character
    [all...]
  /external/chromium_org/third_party/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 210 Frag Literal(Rune r, bool foldcase);
691 Frag Compiler::Literal(Rune r, bool foldcase) {
765 return Literal(re->rune(), re->parse_flags()&Regexp::FoldCase);
773 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/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/chromium_org/third_party/jinja2/
nodes.py 421 class Literal(Expr):
426 class Const(Literal):
449 class TemplateData(Literal):
462 class Tuple(Literal):
480 class List(Literal):
481 """Any list literal such as ``[1, 2, 3]``"""
489 class Dict(Literal):
490 """Any dict literal such as ``{1: 2, 3: 4}``. The items must be a list of
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java     [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaDec.c 105 #define Literal (RepLenCoder + kNumLenProbs)
112 #if Literal != LZMA_BASE_SIZE
165 prob = probs + Literal;
509 prob = probs + Literal;
709 UInt32 numProbs = Literal + ((UInt32)LZMA_LIT_SIZE << (p->prop.lc + p->prop.lp));
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaDec.c 106 #define Literal (RepLenCoder + kNumLenProbs)
113 #if Literal != LZMA_BASE_SIZE
166 prob = probs + Literal;
510 prob = probs + Literal;
710 UInt32 numProbs = Literal + ((UInt32)LZMA_LIT_SIZE << (p->prop.lc + p->prop.lp));
  /external/lzma/C/
LzmaDec.c 105 #define Literal (RepLenCoder + kNumLenProbs)
112 #if Literal != LZMA_BASE_SIZE
165 prob = probs + Literal;
509 prob = probs + Literal;
709 UInt32 numProbs = Literal + ((UInt32)LZMA_LIT_SIZE << (p->prop.lc + p->prop.lp));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py 91 Literal = re.compile(r'.*{(?P<size>\d+)}$')
113 an IMAP4 literal. If necessary (the string contains any
126 the data (ie: 'literal' value).
154 self.literal = None # A literal argument to a command
323 self.literal = MapCRLF.sub(CRLF, message)
348 self.literal = _Authenticator(authobject).process
821 self.literal = None
841 literal = self.literal
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py 91 Literal = re.compile(r'.*{(?P<size>\d+)}$')
113 an IMAP4 literal. If necessary (the string contains any
126 the data (ie: 'literal' value).
154 self.literal = None # A literal argument to a command
323 self.literal = MapCRLF.sub(CRLF, message)
348 self.literal = _Authenticator(authobject).process
821 self.literal = None
841 literal = self.literal
    [all...]
  /external/chromium_org/third_party/icu/source/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/clang/lib/CodeGen/
CGExprConstant.cpp     [all...]

Completed in 798 milliseconds

1 2