HomeSort by relevance Sort by last modified time
    Searched full:return (Results 526 - 550 of 38332) sorted by null

<<21222324252627282930>>

  /external/icu4c/layout/
GlyphDefinitionTables.cpp 16 return (const GlyphClassDefinitionTable *) ((char *) this + SWAPW(glyphClassDefOffset));
21 return (const AttachmentListTable *) ((char *) this + SWAPW(attachListOffset));
26 return (const LigatureCaretListTable *) ((char *) this + SWAPW(ligCaretListOffset));
31 return (const MarkAttachClassDefinitionTable *) ((char *) this + SWAPW(MarkAttachClassDefOffset));
  /external/skia/bench/
SkBenchmark.cpp 15 return this->onGetName();
19 return this->onGetSize();
40 return value;
43 return NULL;
50 return true;
52 return false;
59 return true;
61 return false;
67 return SkIPoint::Make(640, 480);
  /external/skia/include/core/
SkReader32.h 41 uint32_t size() const { return fStop - fBase; }
42 uint32_t offset() const { return fCurr - fBase; }
43 bool eof() const { return fCurr >= fStop; }
44 const void* base() const { return fBase; }
45 const void* peek() const { return fCurr; }
54 bool readBool() { return this->readInt() != 0; }
61 return value;
69 return value;
73 return (const SkPoint*)this->skip(sizeof(SkPoint));
77 return (const SkRect*)this->skip(sizeof(SkRect))
    [all...]
  /external/stlport/src/
monetary.cpp 52 char moneypunct<char, true>::do_decimal_point() const {return ' ';}
53 char moneypunct<char, true>::do_thousands_sep() const {return ' ';}
54 string moneypunct<char, true>::do_grouping() const { return _S_empty_string; }
55 string moneypunct<char, true>::do_curr_symbol() const { return _S_empty_string; }
56 string moneypunct<char, true>::do_positive_sign() const { return _S_empty_string; }
57 string moneypunct<char, true>::do_negative_sign() const { return _S_empty_string; }
58 money_base::pattern moneypunct<char, true>::do_pos_format() const {return _M_pos_format;}
59 money_base::pattern moneypunct<char, true>::do_neg_format() const {return _M_neg_format;}
60 int moneypunct<char, true>::do_frac_digits() const {return 0;}
66 char moneypunct<char, false>::do_decimal_point() const {return ' ';}
    [all...]
  /external/v8/tools/
utils.py 43 return list
49 return 'linux'
51 return 'macos'
53 # On Windows Vista platform.system() can return 'Microsoft' with some
55 return 'win32'
57 return 'freebsd'
59 return 'openbsd'
61 return 'solaris'
63 return None
69 return 'arm
    [all...]
  /external/webkit/SunSpider/tests/ubench/
function-sum.js 3 return x + y + z;
  /external/webkit/WebCore/loader/icon/wince/
IconDatabaseWince.cpp 35 IconDatabase* iconDatabase() { return 0; }
42 bool IconDatabase::open(const String& path) { return false; }
47 Image* IconDatabase::iconForPageURL(const String&, const IntSize&) { return 0; }
49 String IconDatabase::iconURLForPageURL(const String&) { return String(); }
50 Image* IconDatabase::defaultIcon(const IntSize&) { return 0;}
58 IconLoadDecision IconDatabase::loadDecisionForIconURL(const String&, DocumentLoader*) { return IconLoadNo; }
59 bool IconDatabase::iconDataKnownForIconURL(const String&) { return false; }
62 bool IconDatabase::isEnabled() const { return false; }
65 bool IconDatabase::isPrivateBrowsingEnabled() const { return false; }
72 size_t IconDatabase::pageURLMappingCount() { return 0;
    [all...]
  /external/webkit/WebCore/manual-tests/inspector/resources/
loop-statements.js 11 return !i;
script-error.js 5 return 42;
  /external/webkit/WebCore/platform/graphics/
FontDescription.cpp 37 // FIXME: Should actually return the CSS weight corresponding to next lightest
42 return FontWeight100;
45 return FontWeight200;
49 return FontWeight300;
53 return FontWeight400;
56 return FontWeight500;
59 return FontWeight700;
62 return FontWeightNormal;
67 // FIXME: Should actually return the CSS weight corresponding to next heaviest
72 return FontWeight300
    [all...]
  /external/webkit/WebCore/platform/text/wince/
TextBreakIteratorWince.cpp 37 return charCategory != Mark_NonSpacing && (charCategory != Other_Surrogate || (c < 0xd800 || c >= 0xdc00));
42 return category(c) != Separator_Line;
47 return isPunct(c);
64 return next();
69 return previous();
104 return currentPos;
111 return currentPos;
121 return currentPos;
128 return currentPos;
138 return currentPos
    [all...]
  /external/webkit/WebCore/svg/
PatternAttributes.h 46 SVGLength x() const { return m_x; }
47 SVGLength y() const { return m_y; }
48 SVGLength width() const { return m_width; }
49 SVGLength height() const { return m_height; }
50 bool boundingBoxMode() const { return m_boundingBoxMode; }
51 bool boundingBoxModeContent() const { return m_boundingBoxModeContent; }
52 AffineTransform patternTransform() const { return m_patternTransform; }
53 const SVGPatternElement* patternContentElement() const { return m_patternContentElement; }
64 bool hasX() const { return m_xSet; }
65 bool hasY() const { return m_ySet;
    [all...]
SVGAnimatedPropertyTraits.h 46 static ReturnType null() { return SVGAngle(); }
47 static ReturnType toReturnType(const StoredType& type) { return type; }
48 static String toString(PassType type) { return type.valueAsString(); }
58 static ReturnType null() { return false; }
59 static ReturnType toReturnType(const StoredType& type) { return type; }
60 static String toString(PassType type) { return type ? "true" : "false"; }
70 static ReturnType null() { return 0; }
71 static ReturnType toReturnType(const StoredType& type) { return type; }
72 static String toString(PassType type) { return String::number(type); }
82 static ReturnType null() { return 0l;
    [all...]
  /frameworks/base/location/java/com/android/internal/location/
PassiveProvider.java 48 return LocationManager.PASSIVE_PROVIDER;
52 return false;
56 return false;
60 return false;
64 return false;
68 return false;
72 return false;
76 return false;
80 return -1;
84 return -1
    [all...]
  /frameworks/base/opengl/tools/glgen/stubs/jsr239/
glGetString.java-impl 14 return returnValue;
  /frameworks/base/test-runner/src/junit/runner/
Version.java 12 return "3.8.1";
  /packages/apps/Camera/tests/src/com/android/camera/gallery/
MockImageList.java 21 return null;
25 return mList.size();
29 return mList.get(i);
33 return null;
37 return mList.indexOf(image);
41 return mList.isEmpty();
45 return mList.remove(image);
49 return mList.remove(i) != null;
68 return 0;
  /packages/apps/Email/src/com/android/exchange/adapter/
AccountSyncAdapter.java 21 return null;
26 return false;
31 return false;
36 return true;
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
MockImageList.java 21 return null;
25 return mList.size();
29 return mList.get(i);
33 return null;
37 return mList.indexOf(image);
41 return mList.isEmpty();
45 return mList.remove(image);
49 return mList.remove(i) != null;
68 return 0;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SingleSourceCorpus.java 43 return mContext;
47 return mSource.getSourceIcon();
51 return mSource.getSourceIconUri();
55 return mSource.getLabel();
59 return mSource.getHint();
63 return mSource.getSettingsDescription();
70 return new SingleSourceCorpusResult(this, query, sourceResult, latency);
74 return mSource.getName();
78 return mSource.queryAfterZeroResults();
82 return mSource.getQueryThreshold()
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndcommon.c 32 return 0;
37 return 0;
43 return 0;
49 return 0;
57 return 0;
62 return 0;
68 return 0;
74 return 0;
79 return 1;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/
PixelDensityQualifier.java 62 * @return the enum for the qualifier value or null if no matching was found.
67 return orient;
71 return null;
83 return orient;
91 return null;
95 return mValue;
99 return mDensity.getValue();
104 return String.format("%1$ddpi", getDpiValue());
107 return "";
111 return mDisplayValue
    [all...]
  /system/core/toolbox/
ln.c 9 return -1;
16 if(argc < 2) return usage();
24 if(argc < 3) return usage();
33 return ret;
lsmod.c 8 return cat_main(2, cat_argv);
  /system/extras/tests/bionic/libc/bionic/
test_netinet_icmp.c 6 return 0;

Completed in 206 milliseconds

<<21222324252627282930>>