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

<<21222324252627282930>>

  /sdk/emulator/qtools/
parse_options-inl.h 31 return false;
33 return false;
36 return false;
40 return false;
42 return true;
47 return false;
49 return false;
50 return true;
76 return sym;
82 return true
    [all...]
  /external/webkit/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 67 return 0;
69 return m_data->baseSurface();
75 return TransformationMatrix();
77 return m_data->transformationMatrix();
83 return;
91 return;
99 return;
107 return;
118 return;
126 return;
    [all...]
  /external/clearsilver/python/
neo_util.c 37 return NULL;
94 if (ho == NULL) return NULL;
100 return rv;
107 return ((HDFObject *)ho)->data;
109 return NULL;
118 if (err) return p_neo_error (err);
119 return p_hdf_to_object (hdf, 1);
130 return NULL;
134 return rv;
145 return NULL
    [all...]
  /external/icu4c/common/
uprops.c 43 return TRUE;
67 return NULL;
79 return gBdp;
160 return (u_getUnicodeProperties(c, column)&mask)!=0;
163 return ucase_hasBinaryProperty(c, which);
169 return unorm_internalIsFullCompositionExclusion(c);
174 return unorm_isNFSkippable(c, (UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD));
176 return unorm_isCanonSafeStart(c);
187 return ubidi_isMirrored(bdp, c);
189 return ubidi_isBidiControl(bdp, c)
    [all...]
  /external/libxml2/
globals.c 596 return(old);
611 return(old);
629 return(old);
644 return(old);
661 return(old);
679 return(old);
687 return (&docbDefaultSAXHandler);
689 return (&xmlGetGlobalState()->docbDefaultSAXHandler);
698 return (&htmlDefaultSAXHandler);
700 return (&xmlGetGlobalState()->htmlDefaultSAXHandler)
    [all...]
  /external/qemu/fpu/
softfloat-native.c 43 return ((long long) rintl(x));
48 return ((long) rintl(x));
53 return (scalbnl(x, n));
65 return x;
71 return y;
82 return (float32)v;
87 return (float32)v;
92 return (float64)v;
97 return (float64)v;
103 return (floatx80)v
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/
jsref.js 44 return ( testcases );
118 return passed;
123 return passed;
138 return passed;
192 return true;
219 return ( Math.floor(t/msPerDay ) );
223 return 365;
226 return 366;
229 return 365;
232 return 366
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Date/
shell.js 112 return ( testcases );
147 return passed;
160 return passed;
169 return passed;
247 return -((new Date(2000, 1, 1)).getTimezoneOffset())/60;
253 return ( Math.floor( t/msPerDay ) );
259 if ( y % 4 != 0 ) {return 365;}
261 if ( (y%4 == 0) && (y%100 != 0) ) {return 366;}
263 if ( (y%100 == 0) && (y%400 != 0) ) {return 365;}
265 if ( (y%400 == 0)){return 366;}
    [all...]
  /bionic/libc/bionic/
stubs.c 69 return s;
96 return s;
108 return pw;
119 return gr;
129 return android_iinfo_to_passwd(pw, iinfo + n);
132 return NULL;
142 return android_iinfo_to_passwd(pw, iinfo + n);
145 return NULL;
155 return android_iinfo_to_group(gr, iinfo + n);
158 return NULL
    [all...]
  /external/elfutils/src/
ldlex.l 83 return kVERSION_SCRIPT;
121 ALIGN { return kALIGN; }
122 ENTRY { return kENTRY; }
123 EXCLUDE_FILE { return kEXCLUDE_FILE; }
124 "global:" { return kGLOBAL; }
125 GROUP { return kGROUP; }
126 INPUT { return kINPUT; }
127 INTERP { return kINTERP; }
128 KEEP { return kKEEP; }
129 "local:" { return kLOCAL;
    [all...]
  /external/webkit/JavaScriptCore/wtf/
MathExtras.h 67 // Work around a bug in the Mac OS X libc where ceil(-0.1) return +0.
68 inline double wtf_ceil(double x) { return copysign(ceil(x), x); }
77 inline bool isfinite(double x) { return finite(x) && !isnand(x); }
80 inline bool isinf(double x) { return !finite(x) && !isnand(x); }
83 inline bool signbit(double x) { return x < 0.0; } // FIXME: Wrong for negative 0.
91 inline bool isfinite(double x) { return finite(x); }
94 inline bool signbit(double x) { struct ieee_double *p = (struct ieee_double *)&x; return p->dbl_sign; }
106 return integer - num > 0.5 ? integer - 1.0 : integer;
107 return integer - num >= 0.5 ? integer - 1.0 : integer;
113 return integer - num > 0.5f ? integer - 1.0f : integer
    [all...]
  /external/webkit/WebCore/svg/
SVGTransformDistance.cpp 62 return;
65 return;
72 return;
78 return;
85 return;
90 return;
98 return SVGTransformDistance();
100 return SVGTransformDistance(m_type, m_angle * scaleFactor, m_cx * scaleFactor, m_cy * scaleFactor, AffineTransform());
103 return SVGTransformDistance(m_type, m_angle * scaleFactor, m_cx * scaleFactor, m_cy * scaleFactor, AffineTransform(m_transform).scale(scaleFactor));
109 return SVGTransformDistance(m_type, 0, 0, 0, newTransform)
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebelement.h 175 append(other); return *this;
182 inline QWebElement operator[](int i) const { return at(i); }
184 inline QWebElement first() const { return at(0); }
185 inline QWebElement last() const { return at(count() - 1); }
194 inline const QWebElement operator*() const { return collection->at(i); }
196 inline bool operator==(const const_iterator& o) const { return i == o.i && collection == o.collection; }
197 inline bool operator!=(const const_iterator& o) const { return i != o.i || collection != o.collection; }
198 inline bool operator<(const const_iterator& o) const { return i < o.i; }
199 inline bool operator<=(const const_iterator& o) const { return i <= o.i; }
200 inline bool operator>(const const_iterator& o) const { return i > o.i;
    [all...]
  /frameworks/base/tools/aapt/
Bundle.h 55 Command getCommand(void) const { return mCmd; }
62 bool getVerbose(void) const { return mVerbose; }
64 bool getAndroidList(void) const { return mAndroidList; }
66 bool getForce(void) const { return mForce; }
69 int getGrayscaleTolerance() { return mGrayscaleTolerance; }
70 bool getMakePackageDirs(void) const { return mMakePackageDirs; }
72 bool getUpdate(void) const { return mUpdate; }
74 bool getExtending(void) const { return mExtending; }
76 bool getRequireLocalization(void) const { return mRequireLocalization; }
78 bool getPseudolocalize(void) const { return mPseudolocalize;
    [all...]
  /external/webkit/WebCore/xml/
XPathParser.cpp 64 return NameStart;
67 return NameCont;
70 return NameStart;
72 return NameCont;
73 return NotPartOfName;
110 return false;
112 return true;
124 return nodeTypeNames.contains(name);
134 return false;
141 return false
    [all...]
  /bionic/libstdc++/src/
one_time_construction.cpp 20 // 0 -> 2, return 1
21 // 2 -> 6, wait and return 0
22 // 6 untouched, wait and return 0
23 // 1 untouched, return 0
26 return 1;
30 if(*gv != 1) // __cxa_guard_abort was called, let every thread try since there is no return code for this condition
32 return 0;
40 return;
  /cts/tests/src/android/app/cts/
InstrumentationTestActivity.java 75 return super.onTouchEvent(event);
80 return super.onTrackballEvent(event);
130 return super.onTouchEvent(event);
167 return super.onMenuOpened(featureId, menu);
178 return true;
183 return super.onCreatePanelMenu(featureId, menu);
189 return super.onMenuItemSelected(featureId, item);
204 return super.onOptionsItemSelected(item);
211 return super.onKeyDown(keyCode, event);
217 return super.onTrackballEvent(event)
    [all...]
  /cts/tools/signature-tools/src/signature/model/impl/
SigArrayType.java 33 return componentType;
38 return SigArrayType.hashCode(this);
42 return type.getComponentType().hashCode();
47 return SigArrayType.equals(this, obj);
52 return false;
55 return thiz.getComponentType().equals(other.getComponentType());
60 return SigArrayType.toString(this);
67 return builder.toString();
SigClassReference.java 34 return definition;
39 return SigClassReference.equals(this, obj);
44 return thiz.getClassDefinition().equals(
47 return false;
52 return SigClassReference.hashCode(this);
56 return thiz.getClassDefinition().hashCode();
61 return SigClassReference.toString(this);
65 return "-> " + thiz.getClassDefinition().getQualifiedName();
  /dalvik/dx/tests/032-bb-live-code/
blort.j 23 return
36 return
38 return
40 return
55 return
57 return
59 return
82 return
84 return
86 return
    [all...]
  /dalvik/dx/tests/062-dex-synch-method/
Blort.java 29 return 1;
31 return 2;
37 return 1;
39 return 2;
57 return 1;
59 return 2;
65 return 1;
67 return 2;
  /dalvik/libcore/icu/src/main/native/
UCharacter.cpp 24 return u_digit(codePoint, radix);
28 return u_charType(codePoint);
32 return u_charDirection(codePoint);
36 return u_isMirrored(codePoint);
48 return codePoint - 0x37;
51 return codePoint - 0x57;
54 return codePoint - 0xFF17;
57 return codePoint - 0xFF37;
63 return -1;
65 return -2
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/
BufferFactory.java 35 * @return A new byte buffer based on the specified byte array.
38 return new ReadWriteHeapByteBuffer(array);
46 * @return A new array based byte buffer with the specified capacity.
49 return new ReadWriteHeapByteBuffer(capacity);
57 * @return A new char buffer based on the specified char array.
60 return new ReadWriteCharArrayBuffer(array);
68 * @return A new readonly char buffer based on the specified char sequence.
71 return new CharSequenceAdapter(chseq);
79 * @return A new array based char buffer with the specified capacity.
82 return new ReadWriteCharArrayBuffer(capacity)
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERUnknownTag.java 28 return tag;
33 return data;
48 return false;
55 return false;
60 return false;
67 return false;
71 return true;
84 return value ^ this.getTag();
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ocsp/
ResponderID.java 36 return (ResponderID)obj;
40 return new ResponderID((DEROctetString)obj);
48 return new ResponderID(X509Name.getInstance(o, true));
52 return new ResponderID(ASN1OctetString.getInstance(o, true));
56 return new ResponderID(X509Name.getInstance(obj));
63 return getInstance(obj.getObject()); // must be explicitly tagged
78 return new DERTaggedObject(true, 2, value);
81 return new DERTaggedObject(true, 1, value);

Completed in 552 milliseconds

<<21222324252627282930>>