Searched defs:it (Results 1 - 25 of 644) sorted by relevance

1234567891011>>

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DIntermTraverse.cpp26 void TIntermSymbol::traverse(TIntermTraverser* it) argument
28 it->visitSymbol(this);
31 void TIntermConstantUnion::traverse(TIntermTraverser* it) argument
33 it->visitConstantUnion(this);
39 void TIntermBinary::traverse(TIntermTraverser* it) argument
46 if(it->preVisit)
48 visit = it->visitBinary(PreVisit, this);
56 it->incrementDepth();
58 if(it->rightToLeft)
62 right->traverse(it);
109 traverse(TIntermTraverser* it) argument
129 traverse(TIntermTraverser* it) argument
185 traverse(TIntermTraverser* it) argument
217 traverse(TIntermTraverser* it) argument
277 traverse(TIntermTraverser* it) argument
[all...]
/external/openssl/crypto/dh/
H A Ddh_asn1.c67 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
/external/openssl/crypto/rsa/
H A Drsa_asn1.c67 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
/external/chromium/chrome/browser/parsers/
H A Dmetadata_parser_filebase.h53 PropertyMap::iterator it; member in class:FileMetadataPropertyIterator
/external/chromium/chrome/browser/
H A Dresources_util.cc29 StringIntMap::const_iterator it = id_map_.find(resource_name); local
30 if (it == id_map_.end())
32 return it->second;
/external/openssl/crypto/asn1/
H A Dnsseq.c65 static int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
H A Dp8_pkey.c65 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
H A Dx_pubkey.c11 * apply to all code found in this distribution, be it the RC4, RSA,
72 static int pubkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
H A Dx_req.c11 * apply to all code found in this distribution, be it the RC4, RSA,
66 * encode the attributes field if it is empty. This is in
67 * violation of PKCS#10 but we need to tolerate it. We do
69 * the callback to initialise it to an empty STACK.
76 * 1. If it is NULL then it's the invalid omission.
77 * 2. If it is empty it is the correct encoding.
78 * 3. If it is not empty then some attributes are present.
82 static int rinf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
[all...]
H A Dx_x509.c11 * apply to all code found in this distribution, be it the RC4, RSA,
84 static int x509_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
176 /* If certificate unreadable then forget it */
H A Dx_crl.c11 * apply to all code found in this distribution, be it the RC4, RSA,
94 static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
208 static int crl_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
/external/openssl/crypto/dsa/
H A Ddsa_asn1.c67 static int sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
94 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
/external/webp/src/enc/
H A Dlayer.c31 void VP8EncCodeLayerBlock(VP8EncIterator* it) { argument
32 (void)it; // remove a warning
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCommonTreeNodeStream.h42 /** If this tree (root) was created from a token stream, track it. */
49 ANTLRTreeIterator *it; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCommonTreeNodeStream.h42 /** If this tree (root) was created from a token stream, track it. */
49 ANTLRTreeIterator *it; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCommonTreeNodeStream.h42 /** If this tree (root) was created from a token stream, track it. */
49 ANTLRTreeIterator *it; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonTreeNodeStream.h42 /** If this tree (root) was created from a token stream, track it. */
49 __strong ANTLRTreeIterator *it; variable
117 @property (retain) ANTLRTreeIterator *it; variable
/external/chromium/chrome/browser/sync/sessions/
H A Dsync_session_context.cc26 std::vector<SyncEngineEventListener*>::const_iterator it; local
27 for (it = listeners.begin(); it != listeners.end(); ++it)
28 listeners_.AddObserver(*it);
/external/chromium/chrome/browser/ui/views/frame/
H A Dbrowser_bubble_host.cc31 BubbleSet::iterator it = browser_bubbles_.find(bubble); local
32 DCHECK(it != browser_bubbles_.end()) <<
34 if (it != browser_bubbles_.end())
35 browser_bubbles_.erase(it);
/external/openssl/crypto/pkcs7/
H A Dpk7_asn1.c81 static int pk7_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
130 static int si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
173 static int ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
239 * we use SEQUENCE OF and tag it to SET OF
/external/stlport/test/eh/
H A Dtest.cpp8 typename T::const_iterator it; local
10 for(it = coll.begin(); it != coll.end(); ++it) {
11 std::cout << *it << ' '; local
/external/webkit/Source/WebCore/dom/
H A DCheckedRadioButtons.cpp4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
9 * This library is distributed in the hope that it will be useful,
76 NameToInputMap::iterator it = m_nameToCheckedRadioButtonMap->find(element->name().impl()); local
77 if (it == m_nameToCheckedRadioButtonMap->end() || it->second != element)
85 m_nameToCheckedRadioButtonMap->remove(it);
/external/webkit/Source/WebCore/storage/chromium/
H A DQuotaTracker.cpp52 HashMap<String, SizeMap>::const_iterator it = m_databaseSizes.find(originIdentifier); local
53 ASSERT(it->second.contains(databaseName));
54 *databaseSize = it->second.get(databaseName);
66 HashMap<String, SizeMap>::iterator it = m_databaseSizes.add(originIdentifier, SizeMap()).first; local
67 it->second.set(databaseName, databaseSize);
/external/webkit/Source/WebKit2/Shared/
H A DImmutableDictionary.cpp55 MapType::const_iterator::Keys it = m_map.begin().keys(); local
57 for (; it != end; ++it)
58 vector.uncheckedAppend(WebString::create(*it));
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestTreeIterator.java44 TreeIterator it = new TreeIterator(t);
45 StringBuffer buf = toString(it);
55 TreeIterator it = new TreeIterator(t);
56 StringBuffer buf = toString(it);
66 TreeIterator it = new TreeIterator(t);
67 StringBuffer buf = toString(it);
77 TreeIterator it = new TreeIterator(t);
78 StringBuffer buf = toString(it);
88 TreeIterator it = new TreeIterator(t);
89 StringBuffer buf = toString(it);
123 toString(TreeIterator it) argument
[all...]

Completed in 743 milliseconds

1234567891011>>