OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:orderable
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/skia/src/pathops/
SkOpAngle.h
115
bool
orderable
(const SkOpAngle& rh) const; // false == this < rh ; true == this > rh
137
mutable bool fUnorderable; // this is editable by
orderable
()
SkOpAngle.cpp
118
lrOrder = (int) lh.
orderable
(rh);
126
ltOrder = (int) lh.
orderable
(*this);
133
trOrder = (int)
orderable
(rh);
570
bool
orderable
= best->
orderable
(*angle); // note: may return an unorderable angle
local
571
if (
orderable
== 0) {
805
bool SkOpAngle::
orderable
(const SkOpAngle& rh) const {
function in class:SkOpAngle
[
all
...]
/external/chromium_org/tools/relocation_packer/src/
elf_file.cc
487
std::vector<ELF::Phdr*>
orderable
;
local
489
// Collect together
orderable
program headers. These are all the LOAD
497
orderable
.push_back(program_header);
504
for (size_t i = 1; i <
orderable
.size(); ++i) {
506
ELF::Phdr* first =
orderable
[j - 1];
507
ELF::Phdr* second =
orderable
[j];
[
all
...]
/external/chromium_org/third_party/skia/tests/
PathOpsAngleTest.cpp
202
static int
Orderable
(const SkOpAngle& lh, const SkOpAngle& rh) {
203
return lh.
orderable
(rh);
267
PathOpsAngleTester::
Orderable
(*segment[0].debugLastAngle(), *segment[1].debugLastAngle());
Completed in 73 milliseconds