HomeSort by relevance Sort by last modified time
    Searched defs:isSmall (Results 1 - 8 of 8) sorted by null

  /external/llvm/include/llvm/ADT/
SmallSet.h 48 return isSmall() ? Vector.size() : Set.size();
53 if (isSmall()) {
64 if (!isSmall())
91 if (!isSmall())
106 bool isSmall() const { return Set.empty(); }
SmallPtrSet.h 83 if (!isSmall() && NumElements*4 < CurArraySize && CurArraySize > 32)
112 if (isSmall()) {
126 bool isSmall() const { return CurArray == SmallArray; }
SmallBitVector.h 85 bool isSmall() const {
90 assert(!isSmall());
102 assert(!isSmall() && "Tried to use an unaligned pointer");
108 assert(isSmall());
113 assert(isSmall());
151 if (RHS.isSmall())
162 if (!isSmall())
168 return isSmall() ? getSmallSize() == 0 : getPointer()->empty();
173 return isSmall() ? getSmallSize() : getPointer()->size();
178 if (isSmall()) {
    [all...]
SmallVector.h 85 /// isSmall - Return true if this is a smallvector which has not had dynamic
87 bool isSmall() const {
263 if (!this->isSmall())
366 if (!this->isSmall())
681 if (!this->isSmall() && !RHS.isSmall()) {
769 if (!RHS.isSmall()) {
771 if (!this->isSmall()) free(this->begin());
  /external/chromium_org/third_party/skia/bench/
DisplacementBench.cpp 34 const int w = this->isSmall() ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE;
35 const int h = this->isSmall() ? FILTER_HEIGHT_LARGE : FILTER_HEIGHT_LARGE;
48 const int w = this->isSmall() ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE;
49 const int h = this->isSmall() ? FILTER_HEIGHT_LARGE : FILTER_HEIGHT_LARGE;
79 inline bool isSmall() const { return fIsSmall; }
95 return this->isSmall() ? "displacement_zero_small" : "displacement_zero_large";
122 return isSmall() ? "displacement_alpha_small" : "displacement_alpha_large";
148 return isSmall() ? "displacement_full_small" : "displacement_full_large";
ColorFilterBench.cpp 26 return isSmall() ? SkRect::MakeWH(FILTER_WIDTH_SMALL, FILTER_HEIGHT_SMALL) :
57 inline bool isSmall() const { return fIsSmall; }
72 return isSmall() ? "colorfilter_dim_bright_small" : "colorfilter_dim_bright_large";
102 return isSmall() ? "colorfilter_bright_gray_small" : "colorfilter_bright_gray_large";
129 return isSmall() ? "colorfilter_gray_bright_small" : "colorfilter_gray_bright_large";
156 return isSmall() ? "colorfilter_blue_bright_small" : "colorfilter_blue_bright_large";
183 return isSmall() ? "colorfilter_bright_blue_small" : "colorfilter_bright_blue_large";
210 return isSmall() ? "colorfilter_bright_small" : "colorfilter_bright_large";
236 return isSmall() ? "colorfilter_blue_small" : "colorfilter_blue_large";
262 return isSmall() ? "colorfilter_gray_small" : "colorfilter_gray_large"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 

Completed in 441 milliseconds