/external/proguard/src/proguard/obfuscate/ |
package.html | 2 This package contains classes to perform obfuscation of class files.
|
/external/proguard/src/proguard/optimize/peephole/ |
package.html | 2 This package contains visitors that perform various peephole optimizations.
|
/external/proguard/src/proguard/shrink/ |
package.html | 2 This package contains classes to perform shrinking of class files.
|
/external/proguard/src/proguard/optimize/evaluation/ |
package.html | 2 This package contains visitors that perform partial evaluation and subsequent
|
/external/icu4c/test/intltest/ |
itrbnfrt.h | 25 * Perform an exhaustive round-trip test on the English spellout rules 30 * Perform an exhaustive round-trip test on the duration-formatting rules 35 * Perform an exhaustive round-trip test on the Spanish spellout rules 40 * Perform an exhaustive round-trip test on the French spellout rules 45 * Perform an exhaustive round-trip test on the Swiss French spellout rules 50 * Perform an exhaustive round-trip test on the Italian spellout rules 55 * Perform an exhaustive round-trip test on the German spellout rules 60 * Perform an exhaustive round-trip test on the Swedish spellout rules 65 * Perform an exhaustive round-trip test on the Dutch spellout rules 70 * Perform an exhaustive round-trip test on the Japanese spellout rule [all...] |
itrbnf.h | 27 * Perform an API test 32 * Perform a simple spot check on the FractionalRuleSet logic 38 * Perform API tests on llong 46 * Perform a simple spot check on the English spellout rules 51 * Perform a simple spot check on the English ordinal-abbreviation rules 56 * Perform a simple spot check on the duration-formatting rules 61 * Perform a simple spot check on the Spanish spellout rules 66 * Perform a simple spot check on the French spellout rules 71 * Perform a simple spot check on the Swiss French spellout rules 81 * Perform a simple spot check on the Italian spellout rule [all...] |
allcoll.h | 33 // perform test with strength PRIMARY 36 // perform test with strength SECONDARY 39 // perform test with strength tertiary 42 // perform extra tests
|
rbbitst.h | 85 * Perform tests of BreakIterator forward and backward functionality 93 * Internal method to perform iteration and test the first() and next() functions 97 * Internal method to perform iteration and test the last() and previous() functions 101 * Internal method to perform iteration and test the following() function 105 * Internal method to perform iteration and test the preceding() function 109 * Internal method to perform iteration and test the isBoundary() function 113 * Internal method to perform tests of BreakIterator multiple selection functionality
|
decoll.h | 31 // perform test with strength PRIMARY 34 // perform test with strength SECONDARY 37 // perform tests with strength TERTIARY
|
frcoll.h | 31 // perform tests with strength SECONDARY 34 // perform tests with strength TERTIARY 37 // perform extra tests
|
itrbnfrt.cpp | 58 * Perform an exhaustive round-trip test on the English spellout rules 76 * Perform an exhaustive round-trip test on the duration-formatting rules 94 * Perform an exhaustive round-trip test on the Spanish spellout rules 112 * Perform an exhaustive round-trip test on the French spellout rules 130 * Perform an exhaustive round-trip test on the Swiss French spellout rules 148 * Perform an exhaustive round-trip test on the Italian spellout rules 166 * Perform an exhaustive round-trip test on the German spellout rules 184 * Perform an exhaustive round-trip test on the Swedish spellout rules 202 * Perform an exhaustive round-trip test on the Dutch spellout rules 220 * Perform an exhaustive round-trip test on the Japanese spellout rule [all...] |
/external/sepolicy/ |
drmserver.te | 8 # Perform Binder IPC to system server. 14 # Perform Binder IPC to mediaserver
|
/external/chromium/chrome/common/extensions/docs/examples/ |
README.txt | 5 * howto/ - simple extensions showing how to perform a particular task
|
/external/iptables/include/linux/netfilter/ |
xt_TPROXY.h | 4 /* TPROXY target is capable of marking the packet to perform
|
/external/srec/ |
Android.mk | 11 # perform sub-makes
|
/external/chromium/testing/gmock/test/ |
gmock-more-actions_test.cc | 235 EXPECT_EQ(1, a.Perform(make_tuple())); 241 EXPECT_FALSE(a.Perform(make_tuple(1))); 242 EXPECT_TRUE(a.Perform(make_tuple(-1))); 249 EXPECT_EQ(p + 2, a.Perform(make_tuple(p, Short(2)))); 255 EXPECT_EQ(6, a.Perform(make_tuple(1, '\2', Short(3)))); 261 EXPECT_EQ(1234, a.Perform(make_tuple(1000, 200, 30, 4))); 267 EXPECT_EQ(12345, a.Perform(make_tuple(10000, 2000, 300, 40, 5))); 273 EXPECT_EQ(123456, a.Perform(make_tuple(100000, 20000, 3000, 400, 50, 6))); 286 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), 297 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3") [all...] |
gmock-generated-actions_test.cc | 172 EXPECT_EQ(1, a.Perform(make_tuple(2, &Nullary))); 178 EXPECT_EQ(1, a.Perform(make_tuple(UnaryFunctor()))); 185 EXPECT_EQ(12345, a.Perform(make_tuple(&SumOf5))); 192 EXPECT_EQ(12345, a.Perform(make_tuple(SumOf5Functor()))); 199 EXPECT_EQ(123456, a.Perform(make_tuple(&SumOf6))); 206 EXPECT_EQ(123456, a.Perform(make_tuple(SumOf6Functor()))); 215 EXPECT_EQ("1234567", a.Perform(make_tuple(&Concat7))); 224 EXPECT_EQ("12345678", a.Perform(make_tuple(&Concat8))); 233 EXPECT_EQ("123456789", a.Perform(make_tuple(&Concat9))); 243 EXPECT_EQ("1234567890", a.Perform(make_tuple(&Concat10))) [all...] |
gmock-actions_test.cc | 324 // Perform method. 330 virtual int Perform(const tuple<bool, int>& args) { 343 // When exercising the Perform() method of Action<F>, we must pass 345 // types. For example, if F is int(), then Perform() takes a 346 // 0-tuple; if F is void(bool, int), then Perform() takes a 348 EXPECT_EQ(5, action.Perform(make_tuple(true, 5))); 361 EXPECT_EQ(5, action.Perform(make_tuple(true, 5))); 362 EXPECT_EQ(0, action.Perform(make_tuple(false, 1))); 371 EXPECT_EQ(5, a1.Perform(make_tuple(true, 5))); 372 EXPECT_EQ(0, a1.Perform(make_tuple(false, 1))) [all...] |
/external/icu4c/test/cintltst/ |
cestst.h | 34 /* perform test with strength SECONDARY */ 37 /* perform test with strength TERTIARY */
|
cfintst.h | 34 /* perform test with strength SECONDARY*/ 37 /* perform test with strength TERTIARY */
|
cfrtst.h | 35 /* perform test with strength SECONDARY*/ 38 /*perform test with strength TERTIARY*/
|
cturtst.h | 33 /*perform test with strength PRIMARY */ 35 /* perform test with strength TERTIARY */
|
encoll.h | 35 /* perform test with strength SECONDARY */ 38 /* perform test with strength TERTIARY */
|
ccurrtst.h | 30 /* Perform Collation Currency Test */
|
cg7coll.h | 52 /* perform test for G7 locales */ 55 /* perform test with added rules " & Z < p, P" */ 61 /* perform test with added rules */ 65 /* perform test with added rules */
|