/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.mortbay.jetty.util_6.1.23.v201004211559.jar | |
org.mortbay.jetty.server_6.1.23.v201004211559.jar | |
/external/gtest/include/gtest/ |
gtest-param-test.h | 140 // Please also note that generator expressions (including parameters to the 142 // This allows the user on one hand, to adjust generator parameters in order 203 // with a particular generator, Google Test creates and runs tests 204 // for each element in the sequence produced by the generator. 222 // - returns a generator producing a sequence of values {start, start+1, 225 // - returns a generator producing a sequence of values {start, start+step, 229 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) 230 // returns a generator producing {1, 3, 5, 7}. 257 // - returns a generator producing sequences with elements from 260 // - returns a generator producing sequences with elements fro [all...] |
/external/llvm/utils/unittest/googletest/include/gtest/ |
gtest-param-test.h | 140 // Please also note that generator expressions (including parameters to the 142 // This allows the user on one hand, to adjust generator parameters in order 202 // with a particular generator, Google Test creates and runs tests 203 // for each element in the sequence produced by the generator. 221 // - returns a generator producing a sequence of values {start, start+1, 224 // - returns a generator producing a sequence of values {start, start+step, 228 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) 229 // returns a generator producing {1, 3, 5, 7}. 256 // - returns a generator producing sequences with elements from 259 // - returns a generator producing sequences with elements fro [all...] |
/external/mesa3d/src/gtest/include/gtest/ |
gtest-param-test.h | 140 // Please also note that generator expressions (including parameters to the 142 // This allows the user on one hand, to adjust generator parameters in order 203 // with a particular generator, Google Test creates and runs tests 204 // for each element in the sequence produced by the generator. 222 // - returns a generator producing a sequence of values {start, start+1, 225 // - returns a generator producing a sequence of values {start, start+step, 229 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) 230 // returns a generator producing {1, 3, 5, 7}. 257 // - returns a generator producing sequences with elements from 260 // - returns a generator producing sequences with elements fro [all...] |
/external/protobuf/gtest/include/gtest/ |
gtest-param-test.h | 136 // Please also note that generator expressions are evaluated in 167 // with a particular generator, Google Test creates and runs tests 168 // for each element in the sequence produced by the generator. 186 // - returns a generator producing a sequence of values {start, start+1, 189 // - returns a generator producing a sequence of values {start, start+step, 193 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) 194 // returns a generator producing {1, 3, 5, 7}. 221 // - returns a generator producing sequences with elements from 224 // - returns a generator producing sequences with elements from 227 // - returns a generator producing sequences with elements fro [all...] |
/ndk/sources/third_party/googletest/googletest/include/gtest/ |
gtest-param-test.h | 140 // Please also note that generator expressions (including parameters to the 142 // This allows the user on one hand, to adjust generator parameters in order 203 // with a particular generator, Google Test creates and runs tests 204 // for each element in the sequence produced by the generator. 222 // - returns a generator producing a sequence of values {start, start+1, 225 // - returns a generator producing a sequence of values {start, start+step, 229 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) 230 // returns a generator producing {1, 3, 5, 7}. 257 // - returns a generator producing sequences with elements from 260 // - returns a generator producing sequences with elements fro [all...] |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-core/0.20.0/ |
tycho-core-0.20.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder/0.10.0/ |
builder-0.10.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder/0.11.2/ |
builder-0.11.2.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder/0.12.1/ |
builder-0.12.1.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder/0.12.2/ |
builder-0.12.2.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder/0.9.1/ |
builder-0.9.1.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder/0.9.3/ |
builder-0.9.3.jar | |
/prebuilts/tools/common/builder/ |
builder-0.10.0.jar | |
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-core/0.18.1/ |
tycho-core-0.18.1.jar | |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | 2 topics = {'assert': '\nThe ``assert`` statement\n************************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, ``assert expression``, is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, ``assert expression1, expression2``, is equivalent\nto\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that ``__debug__`` and ``AssertionError``\nrefer to the built-in variables with those names. In the current\nimplementation, the built-in variable ``__debug__`` is ``True`` under\nnormal circumstances, ``False`` when optimization is requested\n(command line option -O). The current code generator emits no code\nfor an assert statement when optimization is requested at compile\ntime. Note that it is unnecessary to include the source code for the\nexpression that failed in the error message; it will be displayed as\npart of the stack trace.\n\nAssignments to ``__debug__`` are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n', [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | 2 topics = {'assert': '\nThe ``assert`` statement\n************************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, ``assert expression``, is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, ``assert expression1, expression2``, is equivalent\nto\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that ``__debug__`` and ``AssertionError``\nrefer to the built-in variables with those names. In the current\nimplementation, the built-in variable ``__debug__`` is ``True`` under\nnormal circumstances, ``False`` when optimization is requested\n(command line option -O). The current code generator emits no code\nfor an assert statement when optimization is requested at compile\ntime. Note that it is unnecessary to include the source code for the\nexpression that failed in the error message; it will be displayed as\npart of the stack trace.\n\nAssignments to ``__debug__`` are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n', [all...] |
/external/chromium_org/third_party/closure_compiler/compiler/ |
compiler.jar | |
/external/emma/lib/ |
emma.jar | |
/external/owasp/sanitizer/tools/emma/lib/ |
emma.jar | |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/ |
test_email_renamed.py | 19 from email.generator import Generator, DecodedGenerator 246 # BAW 30-Mar-2009 Evil be here. So, the generator is broken with 547 g = Generator(sfp) 588 g = Generator(sfp) 645 g = Generator(sfp) 663 g = Generator(sfp) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/ |
test_email_renamed.py | 19 from email.generator import Generator, DecodedGenerator 246 # BAW 30-Mar-2009 Evil be here. So, the generator is broken with 547 g = Generator(sfp) 588 g = Generator(sfp) 645 g = Generator(sfp) 663 g = Generator(sfp) [all...] |
/prebuilts/sdk/tools/lib/ |
signapk.jar | |
/prebuilts/tools/common/google-api-java-client/1.8.0-rc/ |
google-api-java-client-min-repackaged.jar | |