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

12 3

  /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/v8/src/
compiler.cc 409 FunctionLiteral* lit = info->function(); local
410 LiveEditFunctionTracker live_edit_tracker(isolate, lit);
420 lit->name(),
421 lit->materialized_literal_count(),
425 ASSERT_EQ(RelocInfo::kNoPosition, lit->function_token_position());
426 Compiler::SetFunctionInfo(result, lit, true, script);
454 SetExpectedNofPropertiesFromEstimate(result, lit->expected_property_count());
465 live_edit_tracker.RecordFunctionInfo(result, lit);
663 FunctionLiteral* lit = info->function(); local
664 int expected = lit->expected_property_count()
    [all...]
  /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);
  /external/oprofile/libpp/
callgraph_container.cpp 430 list<image_set>::const_iterator lit; local
432 for (lit = lset.begin(); lit != lend; ++lit) {
435 = lit->files.end();
436 for (pit = lit->files.begin(); pit != pend; ++pit) {
  /external/stlport/test/unit/
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-gnustl-full/unit/
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/
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...]
  /external/chromium_org/v8/src/
compiler.cc 614 FunctionLiteral* lit = info->function(); local
615 LiveEditFunctionTracker live_edit_tracker(isolate, lit);
625 lit->name(),
626 lit->materialized_literal_count(),
627 lit->is_generator(),
631 ASSERT_EQ(RelocInfo::kNoPosition, lit->function_token_position());
632 Compiler::SetFunctionInfo(result, lit, true, script);
662 SetExpectedNofPropertiesFromEstimate(result, lit->expected_property_count());
672 live_edit_tracker.RecordFunctionInfo(result, lit, info->zone());
840 FunctionLiteral* lit = info->function() local
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
pattern.c 1365 xmlChar *lit = NULL; local
    [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 = {};
  /external/libxslt/libxslt/
pattern.c 1365 xmlChar *lit = NULL; local
    [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
CommandRecognizerEngine.java 1056 String lit = literal; local
    [all...]
  /dalvik/vm/compiler/codegen/arm/
CodegenDriver.cpp 2272 int lit = mir->dalvikInsn.vC; local
    [all...]
  /dalvik/vm/compiler/codegen/mips/
CodegenDriver.cpp 2329 int lit = mir->dalvikInsn.vC; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
ffvertex_prog.c 1005 * lit.y = MAX(0, dots.x)
1006 * lit.z = SLT(0, dots.x)
1009 struct ureg lit,
1014 /* Note that lit.x & lit.w will not be examined. Note also that
1018 /* MAX lit, id, dots;
1020 emit_op2(p, OPCODE_MAX, lit, WRITEMASK_XYZW, id, dots);
1023 * SLT lit.z, id.z, dots; # lit.z = (0 < dots.z) ? 1 : 0
1025 emit_op2(p, OPCODE_SLT, lit, WRITEMASK_Z, swizzle1(id,Z), dots)
1039 struct ureg lit = get_temp(p); local
    [all...]
  /external/mesa3d/src/mesa/main/
ffvertex_prog.c 1005 * lit.y = MAX(0, dots.x)
1006 * lit.z = SLT(0, dots.x)
1009 struct ureg lit,
1014 /* Note that lit.x & lit.w will not be examined. Note also that
1018 /* MAX lit, id, dots;
1020 emit_op2(p, OPCODE_MAX, lit, WRITEMASK_XYZW, id, dots);
1023 * SLT lit.z, id.z, dots; # lit.z = (0 < dots.z) ? 1 : 0
1025 emit_op2(p, OPCODE_SLT, lit, WRITEMASK_Z, swizzle1(id,Z), dots)
1039 struct ureg lit = get_temp(p); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_context.h 321 struct radeon_state_atom lit[8]; /* includes vec, scl commands */ member in struct:r100_hw_state
  /external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc 480 void FullCodeGenerator::EffectContext::Plug(Handle<Object> lit) const {
485 Handle<Object> lit) const {
486 if (lit->IsSmi()) {
487 __ SafeSet(result_register(), Immediate(lit));
489 __ Set(result_register(), Immediate(lit));
494 void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const {
495 if (lit->IsSmi()) {
496 __ SafePush(Immediate(lit));
498 __ push(Immediate(lit));
503 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const
527 __ mov(result_register(), lit); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_context.h 321 struct radeon_state_atom lit[8]; /* includes vec, scl commands */ member in struct:r100_hw_state
  /external/v8/src/ia32/
full-codegen-ia32.cc 504 void FullCodeGenerator::EffectContext::Plug(Handle<Object> lit) const {
509 Handle<Object> lit) const {
510 if (lit->IsSmi()) {
511 __ SafeSet(result_register(), Immediate(lit));
513 __ Set(result_register(), Immediate(lit));
518 void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const {
519 if (lit->IsSmi()) {
520 __ SafePush(Immediate(lit));
522 __ push(Immediate(lit));
527 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const
551 __ mov(result_register(), lit); local
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 455 void FullCodeGenerator::EffectContext::Plug(Handle<Object> lit) const {
460 Handle<Object> lit) const {
461 __ Move(result_register(), lit); local
465 void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const {
466 __ Push(lit);
470 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const {
475 ASSERT(!lit->IsUndetectableObject()); // There are no undetectable literals.
476 if (lit->IsUndefined() || lit->IsNull() || lit->IsFalse())
494 __ Move(result_register(), lit); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_context.h 504 struct radeon_state_atom lit[8]; /* includes vec, scl commands */ member in struct:r200_hw_state
  /external/chromium_org/v8/src/x64/
full-codegen-x64.cc 491 void FullCodeGenerator::EffectContext::Plug(Handle<Object> lit) const {
496 Handle<Object> lit) const {
497 if (lit->IsSmi()) {
498 __ SafeMove(result_register(), Smi::cast(*lit));
500 __ Move(result_register(), lit); local
505 void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const {
506 if (lit->IsSmi()) {
507 __ SafePush(Smi::cast(*lit));
509 __ Push(lit);
514 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const
538 __ Move(result_register(), lit); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_context.h 504 struct radeon_state_atom lit[8]; /* includes vec, scl commands */ member in struct:r200_hw_state

Completed in 4005 milliseconds

12 3