Home
last modified time | relevance | path

Searched refs:good (Results 1 – 25 of 38) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_robotparser.py5 def __init__(self, index, parser, url, good, agent): argument
7 if good:
13 self.good = good
22 if self.good:
53 good = ['/','/test.html'] variable
56 RobotTest(1, doc, good, bad)
71 good = ['/','/test.html',('cybermapper','/cyberworld/map/index.html')] variable
74 RobotTest(2, doc, good, bad)
83 good = [] variable
86 RobotTest(3, doc, good, bad)
[all …]
Dtest_sort.py30 for i, good in enumerate(expected):
32 if good is not maybe:
34 print "out of order at index", i, good, maybe
Dregrtest.py370 good = []
457 good.append(test)
592 omitted = set(selected) - set(good) - set(bad) - set(skipped)
595 if good and not quiet:
596 if not bad and not skipped and not interrupted and len(good) > 1:
598 print count(len(good), "test"), "OK."
/device/google/contexthub/util/nanoapp_postprocess/
Dpostprocess.c240 bool good = true; in finalizeAndWrite() local
270 good = fwrite(&outHeader, sizeof(outHeader), 1, out) == 1 && good; in finalizeAndWrite()
273 good = fwrite(&app, sizeof(app), 1, out) == 1 && good; in finalizeAndWrite()
276 good = fwrite(&bin[1], inf->codeAndDataSize, 1, out) == 1 && good; in finalizeAndWrite()
280 good = fwrite(inf->packedNanoReloc, inf->packedNanoRelocSize, 1, out) == 1 && good; in finalizeAndWrite()
284 if (!good) { in finalizeAndWrite()
301 return good ? 0 : 2; in finalizeAndWrite()
577 bool good = true; in handleKey() local
593 good = good && fwrite(&outHeader, sizeof(outHeader), 1, out) == 1; in handleKey()
594 good = good && fwrite(&ki, sizeof(ki), 1, out) == 1; in handleKey()
[all …]
Dpostprocess_elf.c835 bool good = true; in handleKey() local
851 good = good && fwrite(&outHeader, sizeof(outHeader), 1, out) == 1; in handleKey()
852 good = good && fwrite(&ki, sizeof(ki), 1, out) == 1; in handleKey()
853 good = good && fwrite(buf, bufUsed, 1, out) == 1; in handleKey()
855 return good ? 0 : 2; in handleKey()
861 bool good; in handleOs() local
883 good = fwrite(&outHeader, sizeof(outHeader), 1, out) == 1; in handleOs()
885 good = fwrite(&os, sizeof(os), 1, out) == 1; in handleOs()
886 good = good && fwrite(buf, bufUsed, 1, out) == 1; in handleOs()
888 return good ? 0 : 2; in handleOs()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
DREADME7 The Distutils-SIG web page is also a good starting point:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dbltinmodule.c304 PyObject *good; in builtin_filter() local
306 good = PyObject_Call(func, arg, NULL); in builtin_filter()
308 if (good == NULL) { in builtin_filter()
312 ok = PyObject_IsTrue(good); in builtin_filter()
313 Py_DECREF(good); in builtin_filter()
2753 PyObject *item, *good; in filtertuple() local
2767 good = item; in filtertuple()
2775 good = PyEval_CallObject(func, arg); in filtertuple()
2777 if (good == NULL) { in filtertuple()
2782 ok = PyObject_IsTrue(good); in filtertuple()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dbltinmodule.c307 PyObject *good; in builtin_filter() local
309 good = PyObject_Call(func, arg, NULL); in builtin_filter()
311 if (good == NULL) { in builtin_filter()
315 ok = PyObject_IsTrue(good); in builtin_filter()
316 Py_DECREF(good); in builtin_filter()
2764 PyObject *item, *good; in filtertuple() local
2778 good = item; in filtertuple()
2786 good = PyEval_CallObject(func, arg); in filtertuple()
2788 if (good == NULL) { in filtertuple()
2793 ok = PyObject_IsTrue(good); in filtertuple()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Ditertoolsmodule.c886 PyObject *item, *good; in dropwhile_next() local
899 good = PyObject_CallFunctionObjArgs(lz->func, item, NULL); in dropwhile_next()
900 if (good == NULL) { in dropwhile_next()
904 ok = PyObject_IsTrue(good); in dropwhile_next()
905 Py_DECREF(good); in dropwhile_next()
1028 PyObject *item, *good; in takewhile_next() local
1039 good = PyObject_CallFunctionObjArgs(lz->func, item, NULL); in takewhile_next()
1040 if (good == NULL) { in takewhile_next()
1044 ok = PyObject_IsTrue(good); in takewhile_next()
1045 Py_DECREF(good); in takewhile_next()
[all …]
Dgetaddrinfo.c408 goto good; in getaddrinfo()
444 goto good; in getaddrinfo()
456 goto good; in getaddrinfo()
469 good: in getaddrinfo()
Dgc_weakref.txt209 that's not good (a primary reason not to collect cycles with objects with
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Ditertoolsmodule.c905 PyObject *item, *good; in dropwhile_next() local
918 good = PyObject_CallFunctionObjArgs(lz->func, item, NULL); in dropwhile_next()
919 if (good == NULL) { in dropwhile_next()
923 ok = PyObject_IsTrue(good); in dropwhile_next()
924 Py_DECREF(good); in dropwhile_next()
1049 PyObject *item, *good; in takewhile_next() local
1060 good = PyObject_CallFunctionObjArgs(lz->func, item, NULL); in takewhile_next()
1061 if (good == NULL) { in takewhile_next()
1065 ok = PyObject_IsTrue(good); in takewhile_next()
1066 Py_DECREF(good); in takewhile_next()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/
DREADME9 can also be considered good examples of how to write Python code.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
Dnewslist.doc11 groups. There are some good ones out there, for example,
/device/google/contexthub/firmware/os/core/
DnanohubCommand.c223 bool good = true; in osSecretKeyDelete() local
234 good = eeDataEraseOldVersion(EE_DATA_NAME_ENCR_KEY, addr) && good; in osSecretKeyDelete()
239 return count == 0 ? APP_SEC_KEY_NOT_FOUND : good ? APP_SEC_NO_ERROR : APP_SEC_BAD; in osSecretKeyDelete()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlistsort.txt236 result. This has two primary good effects:
260 pick 32 as a good value in the sweet range; picking a value at the low end
265 that 32 isn't a good choice for the general case! Consider N=2112:
327 What turned out to be a good compromise maintains two invariants on the
375 OTOH, one reason this sort is so good for partly ordered data has to do
497 McIlroy paper in particular has good analysis of a mergesort that's
589 ~sort is a good example of when balanced runs could benefit from a better
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/
Dsoftfloat-source.txt189 good speed. Even if inlining cannot be forced with a language keyword,
345 In order to get good speed with SoftFloat, it is important that the compiler
353 will not be as good on processors for which this is not the case (such as
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DCHANGES_FROM_131.txt184 be changed; or you can rerun genmk). This is a good move,
244 if AST is defined in a separate file, such as AST.h, it's a good idea
317 Anthony Green <green vizbiz.com> suggested a bunch of good general
DNOTES.msvc48 Seidel and an explanation of flags etc.. by John Hall; good luck,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dlistsort.txt239 result. This has two primary good effects:
263 pick 32 as a good value in the sweet range; picking a value at the low end
268 that 32 isn't a good choice for the general case! Consider N=2112:
330 What turned out to be a good compromise maintains two invariants on the
378 OTOH, one reason this sort is so good for partly ordered data has to do
500 McIlroy paper in particular has good analysis of a mergesort that's
592 ~sort is a good example of when balanced runs could benefit from a better
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
DREADME35 It is usually a good idea to run pybench.py multiple times to see
44 system that is good for doing benchmark testings. Of you get random
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/faqwiz/
Dfaqwiz.py330 def good(self, file): member in FaqDir
334 m = self.good(file)
/device/linaro/bootloader/edk2/OvmfPkg/VirtioNetDxe/
DTechNotes.txt21 normative. They are made in good faith. Corrections are most welcome on the
347 well). Additionally, there's no good way to report a short transmit via
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dgetaddrinfo.c496 goto good; in getaddrinfo()
544 good: in getaddrinfo()
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/
Dlzma.txt214 Algorithms from hc* group doesn't provide good compression

12