/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
CompositeGrammar.java | 86 /** Map token literals like "while" to its token type. It may be that 110 * collections stuff won't let me setSize and make it grow. :( 172 /*// find delegator in tree so we can add a child to it 194 * in list as it is not a delegate of itself. 250 * This returns null except for the delegate root because it is the only 260 for (Iterator it = rules.iterator(); it.hasNext();) { 261 Rule r = (Rule) it.next(); 263 // if locally defined or it's not local but synpred, don't make 266 it.remove(); // kill overridden rule [all...] |
GrammarReport.java | 116 for (Iterator it = rules.iterator(); it.hasNext();) { 117 Rule r = (Rule) it.next(); 293 Iterator it = dfas.iterator(); local 294 while ( it.hasNext() ) { 295 DFA dfa = (DFA) it.next();
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
ArrayRealVector.java | 93 * it will be referenced 266 Iterator<Entry> it = v.sparseIterator(); local 268 while (it.hasNext() && (e = it.next()) != null) { 307 Iterator<Entry> it = v.sparseIterator(); local 309 while(it.hasNext() && (e = it.next()) != null) { 691 Iterator<Entry> it = v.sparseIterator(); local 693 while(it.hasNext() && (e = it.next()) != null) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
X509CertificateObject.java | 839 Enumeration it = ASN1Sequence.getInstance(extVal).getObjects(); local 840 while (it.hasMoreElements()) 842 GeneralName genName = GeneralName.getInstance(it.nextElement());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
PKIXNameConstraintValidator.java | 95 Iterator it = permitted.iterator(); local 97 while (it.hasNext()) 99 ASN1Sequence subtree = (ASN1Sequence)it.next(); 119 Iterator it = excluded.iterator(); local 121 while (it.hasNext()) 123 ASN1Sequence subtree = (ASN1Sequence)it.next(); 136 for (Iterator it = dns.iterator(); it.hasNext();) 138 ASN1Sequence dn = ASN1Sequence.getInstance(((GeneralSubtree)it 184 Iterator it = excluded.iterator() local 252 Iterator it = excluded.iterator(); local 327 Iterator it = excluded.iterator(); local 487 Iterator it = permitted.iterator(); local 516 Iterator it = excluded.iterator(); local 548 Iterator it = permitted.iterator(); local 585 Iterator it = excluded.iterator(); local 706 Iterator it = permitted.iterator(); local 734 Iterator it = excluded.iterator(); local 1219 Iterator it = excluded.iterator(); local 1389 Iterator it = permitted.iterator(); local [all...] |
X509CertificateObject.java | 858 Enumeration it = ASN1Sequence.getInstance(extVal).getObjects(); local 859 while (it.hasMoreElements()) 861 GeneralName genName = GeneralName.getInstance(it.nextElement());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
ExtendedPKIXParameters.java | 164 * It is used e.g. 214 Iterator it = stores.iterator(); local 215 while (it.hasNext()) 217 addCertStore((CertStore)it.next()); 263 * If <code>store</code> is <code>null</code> it is ignored. 285 * If <code>store</code> is <code>null</code> it is ignored. 514 for (Iterator it = trustedACIssuers.iterator(); it.hasNext();) 516 if (!(it.next() instanceof TrustAnchor)) 560 for (Iterator it = necessaryACAttributes.iterator(); it.hasNext(); [all...] |
/external/clang/lib/ASTMatchers/ |
ASTMatchFinder.cpp | 49 // result. It consists of an ID of the MatcherInterface (for 55 // For \c QualType and \c TypeLoc it is possible to implement 107 // - Traverse(node) calls BaseTraverse(node) when it needs 131 // It's OK to always overwrite the bound nodes, as if there was 359 // It is wrong to assume that the relation is a chain. A correct 502 /// If there was a bucket already set, it will finish the timing for that 543 auto it = MatcherFiltersMap.find(Kind); local 545 it != MatcherFiltersMap.end() ? it->second : getFilterForKind(Kind); 737 /// kind (and derived kinds) so it is a waste to try every matcher on ever [all...] |
/external/clang/lib/CodeGen/ |
CGRecordLayoutBuilder.cpp | 44 /// * It is desired that, when possible, bitfields use the appropriate iN type 47 /// and if it is possible to use that extra byte of padding we must use 62 /// because LLVM reads from the complete type it can generate incorrect code 66 /// SCISSOR. If LLVM were updated to read base types (which it probably 178 /// \brief Inserts padding everwhere it's needed. 242 // by treating it as another object that occurs after the record. 243 // 4) Determine if the llvm-struct requires packing. It's important that this 248 // 5) Insert padding everywhere it is needed. This phase requires 'Packed' to 251 // 6) Remove the capstone, we don't need it anymore. 301 // This union might not be zero initialized: it may contain a pointer t 744 RecordDecl::field_iterator it = D->field_begin(); local [all...] |
/external/clang/test/SemaCXX/ |
cxx98-compat.cpp | 314 basic_iterator(const basic_iterator &it) {} // expected-note {{because type 'PR13480::basic_iterator' has a user-provided copy constructor}} 315 basic_iterator(basic_iterator &it) {} 319 basic_iterator it; // expected-warning {{union member 'it' with a non-trivial copy constructor is incompatible with C++98}} member in union:PR13480::test 325 void operator=(const a &it) {} // expected-note {{because type 'AssignOpUnion::a' has a user-provided copy assignment operator}} 326 void operator=(a &it) {} 330 void operator=(const b &it) {} // expected-note {{because type 'AssignOpUnion::b' has a user-provided copy assignment operator}}
|
/external/clang/test/SemaTemplate/ |
dependent-names.cpp | 344 X3::Y<>::iterator it; // expected-error {{no type named 'iterator' in 'PR11421::X<3>::Y<3>'}} member in namespace:PR11421 384 // FIXME: This note is bogus; it is the using directive which would need to move
|
/external/deqp/modules/glshared/ |
glsFboCompletenessTests.cpp | 245 // since it was written against ES 1.1. 320 // found in any extension specs, so only allow it, not require it. 441 std::set<std::string>::const_iterator it = requiredExtensions.begin(); local 446 extName = *it++; 447 while (it != requiredExtensions.end()) 450 extName = *it++; 451 msg << (it == requiredExtensions.end() ? " and " : ", "); 473 for (config::TextureMap::const_iterator it = fbo.textures.begin(); it != fbo.textures.end(); ++it 688 Formats::const_iterator it = formats.begin(); local 879 Formats::const_iterator it = formats.begin(); local [all...] |
glsFboUtil.cpp | 124 for (FormatMap::const_iterator it = m_formatFlags.begin(); it != m_formatFlags.end(); it++) 126 if ((it->second & requirements) == requirements) 127 ret.insert(it->first); 150 for (std::set<ExtensionInfo>::const_iterator it = extensionInfo.begin(); it != extensionInfo.end(); ++it) 152 if ((it->flags & requirements) == requirements) 153 ret.insert(it->requiredExtensions) 902 msg << "\\t * " << *it << "\\n"; local [all...] |
/external/google-breakpad/src/client/mac/handler/ |
dynamic_images.cc | 85 // region by the size of the following region if it's contiguous with the 482 // Although we're reading kMaxStringLength bytes, it's copied in the 484 // so it's not really wasting memory. 488 // Create an object representing this image and add it to our list. 508 // You can see it in DashboardClient when Google Gadgets plugin 512 vector<DynamicImageRef>::iterator it = unique(images.image_list_.begin(), local 514 images.image_list_.erase(it, images.image_list_.end());
|
/external/google-breakpad/src/common/solaris/ |
dump_symbols.cc | 247 // Set it to 0 on Solaris. 365 SymbolMap::const_iterator it = symbol_entries->find(func_name.c_str()); local 366 if (it->second) { 367 func_info.rva_to_base = it->second->offset; 368 func_info.size = (line_count == 0) ? 0 : it->second->size; 388 for (SymbolMap::iterator it = symbol_entries->begin(); 389 it != symbol_entries->end(); ++it) { 390 free(it->second);
|
/external/google-breakpad/src/testing/gtest/test/ |
gtest-printers_test.cc | 375 // output first and use it as our expectation. 588 // The difference between this and Print() is that it ensures that the 663 // "\x6BANANA" is ambiguous, it can be interpreted as starting with either of: 953 iterator it = {}; local 954 EXPECT_EQ("1-byte object <00>", Print(it)); 964 const_iterator it = {}; local 965 EXPECT_EQ("1-byte object <00>", Print(it)); [all...] |
/external/google-breakpad/src/testing/test/ |
gmock-spec-builders_test.cc | 214 // Tests that it works, too. 571 // It's always fine to omit WillOnce() entirely. 580 // It's fine for the number of WillOnce()s to equal the upper bound. 586 // It's fine for the number of WillOnce()s to be smaller than the 919 // When there is an ON_CALL() statement, the action specified by it 934 // When there is an ON_CALL() statement, the action specified by it 971 "Google Mock tried the following 1 expectation, but it didn't match:"); 1017 "Google Mock tried the following 1 expectation, but it didn't match:"); 1037 " Actual: it is retired"); 1121 // When there is an ON_CALL() statement, the action specified by it 1495 ExpectationSet::const_iterator it = es.begin(); local [all...] |
/external/gtest/test/ |
gtest-printers_test.cc | 381 // output first and use it as our expectation. 594 // The difference between this and Print() is that it ensures that the 682 // "\x6BANANA" is ambiguous, it can be interpreted as starting with either of: 972 iterator it = {}; local 973 EXPECT_EQ("1-byte object <00>", Print(it)); 983 const_iterator it = {}; local 984 EXPECT_EQ("1-byte object <00>", Print(it)); [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
LocaleMatcher.java | 35 * It takes into account when languages are close to one another, such as fil 37 * It also handles scripts, like zh-Hant vs zh-TW. For examples, see the test 41 * that it supports. However, it may want multiple instances with different 73 * but it could be different based on additional information, such as the domain 119 Iterator<ULocale> it = languagePriorityList.iterator(); local 120 defaultLanguage = it.hasNext() ? it.next() : null; 143 * Canonicalize a locale (language). Note that for now, it is canonicalizing 290 // that getBestMatch("und", LocaleMatcher("it,en")) would be "en", an [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
IntlTestDecimalFormatAPIC.java | 28 // This is an API test, not a unit test. It doesn't test very many cases, and doesn't 29 // try to test the full functionality. It just calls each function in the class and 30 // verifies that it works on a basic level. 452 Iterator it = iterator.getAttributes().keySet().iterator(); local 453 while (it.hasNext()) { 454 AttributedCharacterIterator.Attribute attribute = (AttributedCharacterIterator.Attribute) it
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
Trie2Test.java | 79 // but it's highly likely that something is wrong if they are the same. 92 Iterator<Trie2.Range> it; local 93 it = trie.iterator(); 95 Trie2.Range r = it.next(); 101 r = it.next(); 144 Iterator<Trie2.Range> it = trie.iterator(vm); local 145 Trie2.Range r = it.next(); 158 Iterator<Trie2.Range> it = trie.iteratorForLeadSurrogate((char)0xd87e); local 159 Trie2.Range r = it.next(); 165 r = it.next() 193 Iterator<Trie2.Range> it = trie.iteratorForLeadSurrogate((char)0xd87e, m); local 371 Trie2.CharSequenceIterator it = tw.charSequenceIterator(text, 0); local [all...] |
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/ |
ICUPropertyFactory.java | 448 Iterator it = c.iterator(); local 449 while (it.hasNext()) { 450 add(getInternalProperty((String) it.next()));
|
/external/jsoncpp/chromium-overrides/src/lib_json/ |
json_value.cpp | 81 * @param length Length of the value. if equals to unknown, then it will be 163 // It seems that /**/ style comments are acceptable as well. 1086 ObjectValues::iterator it = value_.map_->lower_bound( key ); local 1087 if ( it != value_.map_->end() && (*it).first == key ) 1088 return (*it).second; 1091 it = value_.map_->insert( it, defaultValue ); 1092 return (*it).second; 1115 ObjectValues::const_iterator it = value_.map_->find( key ) local 1151 ObjectValues::iterator it = value_.map_->lower_bound( actualKey ); local 1190 ObjectValues::const_iterator it = value_.map_->find( actualKey ); local 1268 ObjectValues::iterator it = value_.map_->find( actualKey ); local 1333 ObjectValues::const_iterator it = value_.map_->begin(); local 1338 ValueInternalMap::IteratorState it; local 1577 ValueInternalArray::IteratorState it; local 1585 ValueInternalMap::IteratorState it; local 1612 ValueInternalArray::IteratorState it; local 1620 ValueInternalMap::IteratorState it; local 1648 ValueInternalArray::IteratorState it; local 1656 ValueInternalMap::IteratorState it; local 1683 ValueInternalArray::IteratorState it; local 1691 ValueInternalMap::IteratorState it; local [all...] |
/external/jsoncpp/src/lib_json/ |
json_value.cpp | 77 * @param length Length of the value. if equals to unknown, then it will be 159 // It seems that /**/ style comments are acceptable as well. 1082 ObjectValues::iterator it = value_.map_->lower_bound( key ); local 1083 if ( it != value_.map_->end() && (*it).first == key ) 1084 return (*it).second; 1087 it = value_.map_->insert( it, defaultValue ); 1088 return (*it).second; 1111 ObjectValues::const_iterator it = value_.map_->find( key ) local 1147 ObjectValues::iterator it = value_.map_->lower_bound( actualKey ); local 1186 ObjectValues::const_iterator it = value_.map_->find( actualKey ); local 1264 ObjectValues::iterator it = value_.map_->find( actualKey ); local 1329 ObjectValues::const_iterator it = value_.map_->begin(); local 1334 ValueInternalMap::IteratorState it; local 1573 ValueInternalArray::IteratorState it; local 1581 ValueInternalMap::IteratorState it; local 1608 ValueInternalArray::IteratorState it; local 1616 ValueInternalMap::IteratorState it; local 1644 ValueInternalArray::IteratorState it; local 1652 ValueInternalMap::IteratorState it; local 1679 ValueInternalArray::IteratorState it; local 1687 ValueInternalMap::IteratorState it; local [all...] |
/external/llvm/examples/Kaleidoscope/Chapter4/ |
toy.cpp | 25 // The lexer returns tokens [0-255] if it is an unknown character, otherwise one 189 // Make sure it's a declared binop. 293 // consume it, otherwise we are done. 485 EngineVector::iterator it; local 486 for (it = begin; it != end; ++it) 487 delete *it; 493 ModuleVector::iterator it; local 494 for (it = begin; it != end; ++it) 537 EngineVector::iterator it; local 579 Module::iterator it; local 601 EngineVector::iterator it; local 614 ModuleVector::iterator it; local [all...] |