| /external/python/google-api-python-client/docs/dyn/ |
| D | classroom_v1.courses.courseWork.studentSubmissions.html | 128 …"assignedGrade": 3.14, # Optional grade. If unset, no grade was set. This value must be … 163 …"draftGrade": 3.14, # Optional pending grade. If unset, no grade was set. This value mus… 173 …"submissionHistory": [ # The history of the submission (includes state and grade histori… 174 { # The history of the submission. This currently includes state and grade histories. 175 …"gradeHistory": { # The history of each grade on this submission. # The grade history in… 176 "actorUserId": "A String", # The teacher who made the grade change. 177 …angeType": "A String", # The type of grade change at this time in the submission gr… 178 … "gradeTimestamp": "A String", # When the grade of the submission was changed. 179 …"maxPoints": 3.14, # The denominator of the grade at this time in the submission grade h… 180 …"pointsEarned": 3.14, # The numerator of the grade at this time in the submission grade … [all …]
|
| D | vectortile_v1.featuretiles.html | 141 …hers. To render the basemap correctly, sort by z-plane, then z-grade, then z-within-grade. # The z… 171 …hers. To render the basemap correctly, sort by z-plane, then z-grade, then z-within-grade. # The z… 203 …hers. To render the basemap correctly, sort by z-plane, then z-grade, then z-within-grade. # The z…
|
| D | classroom_v1.courses.html | 189 … Optional heading for the description. For example, "Welcome to 10th Grade Biology." If … 193 …"name": "A String", # Name of the course. For example, "10th Grade Biolog… 253 … Optional heading for the description. For example, "Welcome to 10th Grade Biology." If … 257 …"name": "A String", # Name of the course. For example, "10th Grade Biolog… 342 … Optional heading for the description. For example, "Welcome to 10th Grade Biology." If … 346 …"name": "A String", # Name of the course. For example, "10th Grade Biolog… 426 … Optional heading for the description. For example, "Welcome to 10th Grade Biology." If … 430 …"name": "A String", # Name of the course. For example, "10th Grade Biolog… 509 … Optional heading for the description. For example, "Welcome to 10th Grade Biology." If … 513 …"name": "A String", # Name of the course. For example, "10th Grade Biolog… [all …]
|
| /external/python/cpython3/Doc/howto/ |
| D | sorting.rst | 85 ... def __init__(self, name, grade, age): 87 ... self.grade = grade 90 ... return repr((self.name, self.grade, self.age)) 121 sort by *grade* then by *age*: 128 >>> sorted(student_objects, key=attrgetter('grade', 'age')) 163 steps. For example, to sort the student data by descending *grade* and then 164 ascending *age*, do the *age* sort first and then sort again using *grade*: 169 >>> sorted(s, key=attrgetter('grade'), reverse=True) # now sort on primary key, descending 182 >>> multisort(list(student_objects), (('grade', True), ('age', False))) 201 For example, to sort the student data by *grade* using the DSU approach: [all …]
|
| /external/python/cpython2/Doc/howto/ |
| D | sorting.rst | 72 ... def __init__(self, name, grade, age): 74 ... self.grade = grade 77 ... return repr((self.name, self.grade, self.age)) 106 sort by *grade* then by *age*: 111 >>> sorted(student_objects, key=attrgetter('grade', 'age')) 152 steps. For example, to sort the student data by descending *grade* and then 153 ascending *age*, do the *age* sort first and then sort again using *grade*: 156 >>> sorted(s, key=attrgetter('grade'), reverse=True) # now sort on primary key, descending 175 For example, to sort the student data by *grade* using the DSU approach: 177 >>> decorated = [(student.grade, i, student) for i, student in enumerate(student_objects)] [all …]
|
| /external/libwebsockets/ |
| D | README.md | 1 …Grade/144fb195a83046e484a75c8b4c6cfc99)](https://www.codacy.com/app/lws-team/libwebsockets?utm_sou…
|
| /external/skia/gm/ |
| D | skbug_9819.cpp | 32 auto grade = [&](int x, int y){ in __anon056e509e0102() variable 52 grade(64, 64); 53 grade(64, 192);
|
| D | unpremul.cpp | 23 auto grade = [&](int x, int y){ in __anon2ebf70600102() variable 60 grade(50,50); 74 grade(50,150);
|
| /external/python/cpython2/Doc/library/ |
| D | bisect.rst | 121 example uses :func:`bisect` to look up a letter grade for an exam score (say) 125 >>> def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'): 129 >>> [grade(score) for score in [33, 99, 77, 70, 89, 90, 100]]
|
| /external/libxml2/test/ |
| D | intsubset2.xml | 83 <!ELEMENT misc (grade?, stroke_count+, variant*, freq*, rad_name*)> 84 <!ELEMENT grade (#PCDATA)> 86 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
|
| /external/libxml2/result/noent/ |
| D | intsubset2.xml | 72 --><!ELEMENT misc (grade? , stroke_count+ , variant* , freq* , rad_name*)> 73 <!ELEMENT grade (#PCDATA)> 75 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
|
| D | intsubset2.xml.sax2 | 85 SAX.elementDecl(grade, 3, ...) 87 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
|
| /external/libxml2/result/ |
| D | intsubset2.xml | 72 --><!ELEMENT misc (grade? , stroke_count+ , variant* , freq* , rad_name*)> 73 <!ELEMENT grade (#PCDATA)> 75 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
|
| D | intsubset2.xml.sax2 | 85 SAX.elementDecl(grade, 3, ...) 87 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
|
| D | intsubset2.xml.sax | 85 SAX.elementDecl(grade, 3, ...) 87 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
|
| /external/python/enum34/enum/ |
| D | test.py | 1649 class Grade(OrderedEnum): class 1656 self.assertEqual(list(Grade), [Grade.A, Grade.B, Grade.C, Grade.D, Grade.F]) 1657 self.assertTrue(Grade.A > Grade.B) 1658 self.assertTrue(Grade.F <= Grade.C) 1659 self.assertTrue(Grade.D < Grade.A) 1660 self.assertTrue(Grade.B >= Grade.B)
|
| /external/python/cpython3/Doc/library/ |
| D | bisect.rst | 186 example uses :func:`bisect` to look up a letter grade for an exam score (say) 190 >>> def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'): 194 >>> [grade(score) for score in [33, 99, 77, 70, 89, 90, 100]]
|
| /external/icu/icu4c/source/data/unit/ |
| D | ro.txt | 65 few{"{0} grade"} 67 other{"{0} de grade"} 70 dnam{"grade"} 71 few{"{0} grade"} 74 other{"{0} de grade"} 1407 few{"{0} grade Celsius"} 1409 other{"{0} de grade Celsius"} 1412 dnam{"grade Celsius"} 1413 few{"{0} grade Celsius"} 1416 other{"{0} de grade Celsius"} [all …]
|
| /external/perfetto/ |
| D | README.md | 3 Perfetto is a production-grade open-source stack for performance
|
| /external/perfetto/python/ |
| D | README.md | 3 Perfetto is a production-grade open-source stack for performance
|
| /external/python/cpython2/Lib/test/ |
| D | test_bisect.py | 327 This example uses bisect() to look up a letter grade for an exam total 334 >>> def grade(total): 337 >>> grade(66) 339 >>> map(grade, [33, 99, 77, 44, 12, 88])
|
| /external/flatbuffers/snap/ |
| D | snapcraft.yaml | 17 grade: stable
|
| /external/zstd/contrib/snap/ |
| D | snapcraft.yaml | 10 grade: devel # must be 'stable' to release into candidate/stable channels
|
| /external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
| D | classroom.v1.json | 2601 …n": "Optional heading for the description. For example, \"Welcome to 10th Grade Biology.\" If set,… 2617 …"description": "Name of the course. For example, \"10th Grade Biology\". The name is required. It … 2782 …"description": "Maximum grade for this course work. If zero or unspecified, this assignment is con… 3103 "description": "The history of each grade on this submission.", 3107 "description": "The teacher who made the grade change.", 3111 "description": "The type of grade change at this time in the submission grade history.", 3119 "No grade change type specified. This should never be returned.", 3120 "A change in the numerator of the draft grade.", 3121 "A change in the numerator of the assigned grade.", 3122 "A change in the denominator of the grade." [all …]
|
| /external/lz4/contrib/snap/ |
| D | snapcraft.yaml | 22 grade: stable
|