HomeSort by relevance Sort by last modified time
    Searched defs:lit (Results 26 - 50 of 135) sorted by null

12 3 4 5 6

  /external/clang/test/SemaCXX/
cxx0x-defaulted-functions.cpp 51 struct lit { constexpr lit() {} }; function in struct:lit
52 S<lit> s_lit; // ok
  /external/llvm/utils/lit/lit/
ShUtil.py 4 import lit.util namespace
5 from lit.ShCommands import Command, Pipeline, Seq
78 lit.util.warning(
96 lit.util.warning(
108 lit.util.warning("missing quote character in %r" % self.data)
TestRunner.py 7 import lit.ShUtil as ShUtil namespace
8 import lit.Test as Test namespace
9 import lit.util namespace
10 from lit.util import to_bytes, to_string
188 executable = lit.util.which(args[0], cmd_shenv.env['PATH'])
305 return lit.Test.Result(Test.FAIL, "shell parser error on: %r" % ln)
362 return lit.util.executeCommand(command, cwd=cwd,
525 return lit.Test.Result(Test.UNRESOLVED, "Test has no run line!")
529 return lit.Test.Result(Test.UNRESOLVED,
537 return lit.Test.Result(Test.UNSUPPORTED
    [all...]
run.py 20 import lit.Test namespace
172 result = lit.Test.Result(code, output)
173 elif not isinstance(result, lit.Test.Result):
183 result = lit.Test.Result(lit.Test.UNRESOLVED, output)
262 test.setResult(lit.Test.Result(lit.Test.UNRESOLVED, '', 0.0))
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
AbstractListTest.java 101 ListIterator lit = list.listIterator(); local
102 assertTrue("Should not have previous", !lit.hasPrevious());
103 assertTrue("Should have next", lit.hasNext());
104 tempValue = (Integer) lit.next();
107 tempValue = (Integer) lit.previous();
149 ListIterator lit = sList.listIterator(); local
150 lit.add(new Object());
151 lit.next();
152 lit.remove();
153 lit.next()
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
alg_test.cpp 140 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 3); local
141 CPPUNIT_ASSERT( lit != lint.end() );
142 CPPUNIT_ASSERT( *(lit++) == 3 );
143 CPPUNIT_ASSERT( *(lit++) == 3 );
144 CPPUNIT_ASSERT( *lit == 3 );
173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>()); local
174 CPPUNIT_ASSERT( lit != lint.end() );
175 CPPUNIT_ASSERT( *(lit++) > 2 );
176 CPPUNIT_ASSERT( *(lit++) > 2 );
177 CPPUNIT_ASSERT( *lit > 2 )
    [all...]
list_test.cpp 183 list<int>::iterator lit; local
184 lit = l.erase(l.begin());
185 CPPUNIT_ASSERT( *lit == 1 );
187 lit = l.erase(l.begin(), --l.end());
188 CPPUNIT_ASSERT( *lit == 3 );
202 list<int>::iterator lit(l.begin());
204 CPPUNIT_ASSERT( lit != l.end() );
205 CPPUNIT_ASSERT( *(lit++) == 1 );
207 CPPUNIT_ASSERT( lit == l.end() );
210 lit = l.begin()
    [all...]
unordered_test.cpp 91 usettype::local_iterator lit, litEnd; local
93 lit = us.begin(us.bucket(i));
96 usettype::size_type bucket_pos = us.bucket(*lit);
97 for (; lit != litEnd; ++lit) {
98 CPPUNIT_ASSERT( us.bucket(*lit) == bucket_pos );
99 us_val.push_back(*lit);
106 //CPPUNIT_ASSERT( it != lit );
135 usettype::local_iterator lit, litEnd; local
137 lit = us.begin(us.bucket(i))
205 umaptype::local_iterator lit, litEnd; local
245 umaptype::local_iterator lit, litEnd; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
alg_test.cpp 140 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 3); local
141 CPPUNIT_ASSERT( lit != lint.end() );
142 CPPUNIT_ASSERT( *(lit++) == 3 );
143 CPPUNIT_ASSERT( *(lit++) == 3 );
144 CPPUNIT_ASSERT( *lit == 3 );
173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>()); local
174 CPPUNIT_ASSERT( lit != lint.end() );
175 CPPUNIT_ASSERT( *(lit++) > 2 );
176 CPPUNIT_ASSERT( *(lit++) > 2 );
177 CPPUNIT_ASSERT( *lit > 2 )
    [all...]
list_test.cpp 183 list<int>::iterator lit; local
184 lit = l.erase(l.begin());
185 CPPUNIT_ASSERT( *lit == 1 );
187 lit = l.erase(l.begin(), --l.end());
188 CPPUNIT_ASSERT( *lit == 3 );
202 list<int>::iterator lit(l.begin());
204 CPPUNIT_ASSERT( lit != l.end() );
205 CPPUNIT_ASSERT( *(lit++) == 1 );
207 CPPUNIT_ASSERT( lit == l.end() );
210 lit = l.begin()
    [all...]
unordered_test.cpp 91 usettype::local_iterator lit, litEnd; local
93 lit = us.begin(us.bucket(i));
96 usettype::size_type bucket_pos = us.bucket(*lit);
97 for (; lit != litEnd; ++lit) {
98 CPPUNIT_ASSERT( us.bucket(*lit) == bucket_pos );
99 us_val.push_back(*lit);
106 //CPPUNIT_ASSERT( it != lit );
135 usettype::local_iterator lit, litEnd; local
137 lit = us.begin(us.bucket(i))
205 umaptype::local_iterator lit, litEnd; local
245 umaptype::local_iterator lit, litEnd; local
    [all...]
  /build/kati/
eval.cc 143 Value* lit = NewLiteral(rule_var.rhs); local
148 rhs = NewExpr3(lit, NewLiteral(StringPiece(" ; ")), rhs);
150 rhs = NewExpr3(lit, NewLiteral(StringPiece(" = ")), rhs);
153 rhs = lit;
expr.cc 363 Literal* lit = static_cast<Literal*>(vname); local
364 Symbol sym = Intern(lit->val());
373 delete lit;
382 Literal* lit = static_cast<Literal*>(vname); local
383 if (FuncInfo* fi = GetFuncInfo(lit->val())) {
384 delete lit;
390 loc, SPF(lit->val()), SPF(s));
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AssignTokenTypesBehavior.java 252 String lit = (String) it.next(); local
253 Integer oldTypeI = (Integer)stringLiterals.get(lit);
257 stringLiterals.put(lit, typeI);
260 root.defineLexerRuleForStringLiteral(lit, typeI.intValue());
309 String lit = (String) it.next(); local
310 int ttype = ((Integer)stringLiterals.get(lit)).intValue();
311 root.defineToken(lit, ttype);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemVariable.java 429 ElemTextLiteral lit = (ElemTextLiteral) t; local
431 if (lit.getDisableOutputEscaping() == false
432 && lit.getDOMBackPointer() == null)
434 String str = lit.getNodeValue();
  /external/freetype/src/gzip/
infcodes.c 23 LIT, /* o: got literal, waiting for output space */
42 uInt lit; /* if LIT, literal */ member in union:inflate_codes_state::__anon11265
128 c->sub.lit = t->base;
132 c->mode = LIT;
211 case LIT: /* o: got literal, waiting for output space */
213 OUTBYTE(c->sub.lit)
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/
infcodes.c 23 LIT, /* o: got literal, waiting for output space */
42 uInt lit; /* if LIT, literal */ member in union:inflate_codes_state::__anon14942
128 c->sub.lit = t->base;
132 c->mode = LIT;
211 case LIT: /* o: got literal, waiting for output space */
213 OUTBYTE(c->sub.lit)
  /external/zlib/src/contrib/blast/
blast.c 280 int lit; /* true if literals are coded */ local
320 lit = bits(s, 8);
321 if (lit > 1) return -1;
366 symbol = lit ? decode(s, &litcode) : bits(s, 8);
  /prebuilts/tools/common/m2/repository/com/android/tools/external/liblzf/1.0/
liblzf-1.0.jar 
  /toolchain/binutils/binutils-2.25/gold/
gold-threads.cc 233 Lock_impl_threads* lit = static_cast<Lock_impl_threads*>(li); local
234 int err = pthread_cond_wait(&this->cond_, &lit->mutex_);
  /art/compiler/utils/
intrusive_forward_list.h 397 auto lit = lhs.begin(); local
399 for (; lit != lhs.end() && rit != rhs.end(); ++lit, ++rit) {
400 if (*lit != *rit) {
404 return lit == lhs.end() && rit == rhs.end();
  /external/libcxx/test/libcxx/test/
config.py 10 import lit.Test # pylint: disable=import-error,no-name-in-module namespace
11 import lit.util # pylint: disable=import-error,no-name-in-module namespace
36 # Null out the load_config function so that lit.site.cfg doesn't
159 clangxx = lit.util.which('clang++',
212 # Choose between lit's internal shell pipeline runner and a real shell.
345 # default given in lit.site.cfg is not present. If default is not
594 cxx_path = lit.util.which(self.cxx.path)
599 llvm_symbolizer = lit.util.which('llvm-symbolizer',
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfHuf.cpp 76 int lit:24; // lit p size member in struct:Imf::__anon20496::HufDec
649 pl->lit++;
654 pl->p = new int [pl->lit];
656 for (int i = 0; i < pl->lit - 1; ++i)
666 pl->p[pl->lit - 1]= im;
689 pl->lit = im;
889 getCode (pl.lit, rlc, c, lc, in, out, oe);
902 for (j = 0; j < pl.lit; j++)
925 if (j == pl.lit)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/
config.py 10 import lit.Test # pylint: disable=import-error,no-name-in-module namespace
11 import lit.util # pylint: disable=import-error,no-name-in-module namespace
36 # Null out the load_config function so that lit.site.cfg doesn't
159 clangxx = lit.util.which('clang++',
212 # Choose between lit's internal shell pipeline runner and a real shell.
345 # default given in lit.site.cfg is not present. If default is not
593 cxx_path = lit.util.which(self.cxx.path)
598 llvm_symbolizer = lit.util.which('llvm-symbolizer',
    [all...]
  /external/clang/test/CodeGenCXX/
const-init-cxx11.cpp 223 struct Lit {
224 constexpr Lit() : n(5) {}
231 const Lit &lit = Lit(); member in namespace:LiteralReference
236 const Lit &lit2 = {};

Completed in 678 milliseconds

12 3 4 5 6