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

1234567891011>>

/external/chromium_org/third_party/angle/src/compiler/translator/
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)
47 visit = it->visitBinary(PreVisit, this);
54 it->incrementDepth(this);
56 if (it->rightToLeft)
59 mRight->traverse(it);
93 traverse(TIntermTraverser *it) argument
113 traverse(TIntermTraverser *it) argument
163 traverse(TIntermTraverser *it) argument
199 traverse(TIntermTraverser *it) argument
249 traverse(TIntermTraverser *it) argument
266 traverse(TIntermTraverser *it) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/dh/
H A Ddh_asn1.c64 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
/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_org/chrome/browser/
H A Dfast_shutdown_browsertest.cc58 chrome::BrowserIterator it; local
59 it.Next();
60 chrome::CloseWindow(*it);
/external/chromium_org/components/language_usage_metrics/
H A Dlanguage_usage_metrics_unittest.cc13 std::set<int>::const_iterator it; local
51 it = language_set.begin();
52 EXPECT_EQ(ENGLISH, *it);
53 EXPECT_EQ(JAPANESE, *++it);
59 it = language_set.begin();
60 EXPECT_EQ(ENGLISH, *it);
61 EXPECT_EQ(SPANISH, *++it);
62 EXPECT_EQ(JAPANESE, *++it);
81 it = language_set.begin();
82 EXPECT_EQ(ENGLISH, *it);
[all...]
/external/chromium_org/net/quic/
H A Dquic_utils_chromium.h19 // Returns a const reference to the value associated with the given key if it
27 // * It is not thread-safe (even when it is not inserting, it can still
29 // * It invalidates iterators (when it chooses to resize)
30 // * It default constructs a value object even if it doesn't need to
32 // This version assumes the key is printable, and includes it in the fatal log
38 typename Collection::const_iterator it = collection.find(key); local
39 CHECK(it != collection.end()) << "Map key not found: " << key;
40 return it->second;
48 typename Collection::iterator it local
59 typename Collection::const_iterator it = collection.find(key); local
71 typename Collection::iterator it = collection.find(key); local
[all...]
/external/chromium_org/third_party/WebKit/Source/web/painting/
H A DContinuousPainter.cpp56 Vector<GraphicsLayer*>::const_iterator it; local
57 for (it = children.begin(); it != children.end(); ++it)
58 setNeedsDisplayRecursive(*it, pageOverlays);
/external/chromium_org/third_party/boringssl/src/crypto/pkcs8/
H A Dp8_pkey.c64 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx_pubkey.c10 * apply to all code found in this distribution, be it the RC4, RSA,
69 static int pubkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
H A Dx_req.c10 * apply to all code found in this distribution, be it the RC4, RSA,
65 * encode the attributes field if it is empty. This is in
66 * violation of PKCS#10 but we need to tolerate it. We do
68 * the callback to initialise it to an empty STACK.
75 * 1. If it is NULL then it's the invalid omission.
76 * 2. If it is empty it is the correct encoding.
77 * 3. If it is not empty then some attributes are present.
81 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,
87 static int x509_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
177 /* If certificate unreadable then forget it */
/external/chromium_org/ui/gfx/image/
H A Dimage_family_unittest.cc61 gfx::ImageFamily::const_iterator it = image_family_.begin(); local
66 EXPECT_TRUE(it != end);
67 EXPECT_EQ(gfx::Size(3, 12), it->Size());
68 ++it;
69 EXPECT_TRUE(it != end);
70 EXPECT_EQ(gfx::Size(12, 48), it->Size());
71 it++; // Test post-increment.
72 EXPECT_TRUE(it != end);
73 EXPECT_EQ(gfx::Size(16, 16), it->Size());
74 ++it;
[all...]
/external/libcxx/test/containers/associative/map/
H A Dcompare.pass.cpp29 std::map<Key, int>::iterator it = std::map<Key, int>().find(Key(0)); local
/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 */
/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/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_org/base/metrics/
H A Dsample_map_unittest.cc64 scoped_ptr<SampleCountIterator> it = samples.Iterator(); local
70 it->Get(&min, &max, &count);
74 EXPECT_FALSE(it->GetBucketIndex(NULL));
76 it->Next();
77 it->Get(&min, &max, &count);
82 it->Next();
83 it->Get(&min, &max, &count);
88 it->Next();
89 it->Get(&min, &max, &count);
94 it
103 scoped_ptr<SampleCountIterator> it = samples.Iterator(); local
[all...]

Completed in 517 milliseconds

1234567891011>>