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

1 2 3 4 5 6 7 891011>>

  /external/oprofile/libutil/
op_string.c 18 return xmemdup(s, len, len + 1);
27 return hash;
33 return strstr(str, prefix) == str;
41 return c;
49 return c;
55 return !*skip_ws(c);
61 return *skip_ws(c) == '#';
  /external/webkit/LayoutTests/http/tests/appcache/
disabled.html 18 return true;
20 return false;
24 return applicationCache.status == 0;
30 return false;
32 return true;
39 return false;
41 return true;
  /external/webkit/SunSpider/tests/sunspider-0.9/
controlflow-recursive.js 6 if (m==0) { return n+1; }
7 if (n==0) { return ack(m-1,1); }
8 return ack(m-1, ack(m,n-1) );
12 if (n < 2){ return 1; }
13 return fib(n-2) + fib(n-1);
17 if (y >= x) return z;
18 return tak(tak(x-1,y,z), tak(y-1,z,x), tak(z-1,x,y));
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
controlflow-recursive.js 6 if (m==0) { return n+1; }
7 if (n==0) { return ack(m-1,1); }
8 return ack(m-1, ack(m,n-1) );
12 if (n < 2){ return 1; }
13 return fib(n-2) + fib(n-1);
17 if (y >= x) return z;
18 return tak(tak(x-1,y,z), tak(y-1,z,x), tak(z-1,x,y));
  /external/webkit/WebCore/dom/
PositionIterator.cpp 41 return positionInParentBeforeNode(m_nodeAfterPositionInAnchor);
44 return lastDeepEditingPositionForNode(m_anchorNode);
45 return Position(m_anchorNode, m_offsetInAnchor);
51 return;
57 return;
73 return;
85 return;
105 return true;
107 return false;
108 return (!m_anchorNode->hasChildNodes() && !m_offsetInAnchor) || (m_nodeAfterPositionInAnchor && !m_nodeAf (…)
    [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsTypes.cpp 57 return true;
59 return false;
66 return compositeOperatorNames[op];
73 return true;
77 return true;
81 return true;
83 return false;
91 return names[cap];
98 return true;
102 return true
    [all...]
  /frameworks/base/tools/localize/
Configuration.h 22 inline bool operator<(const Configuration& that) const { return Compare(that) < 0; }
23 inline bool operator<=(const Configuration& that) const { return Compare(that) <= 0; }
24 inline bool operator==(const Configuration& that) const { return Compare(that) == 0; }
25 inline bool operator!=(const Configuration& that) const { return Compare(that) != 0; }
26 inline bool operator>=(const Configuration& that) const { return Compare(that) >= 0; }
27 inline bool operator>(const Configuration& that) const { return Compare(that) > 0; }
29 // Parse a directory name, like "values-en-rUS". Return the first segment in resType.
  /system/wlan/ti/wilink_6_1/utils/
rate.c 50 return DRV_RATE_1M;
54 return DRV_RATE_2M;
58 return DRV_RATE_5_5M;
62 return DRV_RATE_11M;
66 return DRV_RATE_22M;
70 return DRV_RATE_6M;
74 return DRV_RATE_9M;
78 return DRV_RATE_12M;
82 return DRV_RATE_18M;
86 return DRV_RATE_24M
    [all...]
  /external/opencore/fileformats/mp4/parser/include/
assetinfoatoms.h 51 return _dataPriorToString;
56 return _infoNotice;
64 return _success;
86 return _pAssetInfoBaseParser->getLangCode();
88 return 0;
94 return _pAssetInfoBaseParser->getInfoNotice(charType);
96 return _defaultTitle;
118 return _pAssetInfoBaseParser->getLangCode();
120 return 0;
126 return _pAssetInfoBaseParser->getInfoNotice(charType)
    [all...]
  /external/webkit/WebCore/rendering/style/
FillLayer.h 51 return type == o.type && size == o.size;
55 return !(*this == o);
67 StyleImage* image() const { return m_image.get(); }
68 Length xPosition() const { return m_xPosition; }
69 Length yPosition() const { return m_yPosition; }
70 EFillAttachment attachment() const { return static_cast<EFillAttachment>(m_attachment); }
71 EFillBox clip() const { return static_cast<EFillBox>(m_clip); }
72 EFillBox origin() const { return static_cast<EFillBox>(m_origin); }
73 EFillRepeat repeatX() const { return static_cast<EFillRepeat>(m_repeatX); }
74 EFillRepeat repeatY() const { return static_cast<EFillRepeat>(m_repeatY);
    [all...]
  /frameworks/base/core/java/android/database/
CursorWrapper.java 49 return mCursor.isClosed();
57 return mCursor.commitUpdates();
66 return mCursor.commitUpdates(values);
70 return mCursor.getCount();
82 return mCursor.deleteRow();
86 return mCursor.moveToFirst();
90 return mCursor.getColumnCount();
94 return mCursor.getColumnIndex(columnName);
99 return mCursor.getColumnIndexOrThrow(columnName);
103 return mCursor.getColumnName(columnIndex)
    [all...]
  /cts/tools/host/src/com/android/cts/
TestController.java 40 * @return The jar file path of the controller.
43 return mJarPath;
49 * @return The package name.
52 return mPackageName;
58 * @return The class name.
61 return mClassName;
67 * @return The method name.
70 return mMethodName;
76 * @return The case name of this test.
79 return mPackageName + "." + mClassName + Test.METHOD_SEPARATOR + mMethodName
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERInteger.java 12 * return an integer from the passed in object
21 return (DERInteger)obj;
26 return new DERInteger(((ASN1OctetString)obj).getOctets());
31 return getInstance(((ASN1TaggedObject)obj).getObject());
38 * return an Integer from a tagged object.
50 return getInstance(obj.getObject());
73 return new BigInteger(bytes);
82 return new BigInteger(1, bytes);
101 return value;
109 return false
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
X509CertificateStructure.java 34 return getInstance(ASN1Sequence.getInstance(obj, explicit));
42 return (X509CertificateStructure)obj;
46 return new X509CertificateStructure((ASN1Sequence)obj);
75 return tbsCert;
80 return tbsCert.getVersion();
85 return tbsCert.getSerialNumber();
90 return tbsCert.getIssuer();
95 return tbsCert.getStartDate();
100 return tbsCert.getEndDate();
105 return tbsCert.getSubject()
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
DHParameters.java 51 return p;
56 return g;
61 return q;
65 * Return the private value length in bits - if set, zero otherwise (use bitLength(P) - 1).
67 * @return the private value length in bits, zero otherwise.
71 return j;
76 return validation;
84 return false;
93 return false;
100 return false
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Expressions/
StrictEquality-001.js 20 // 1. If Type(x) is different from Type(y) return false
29 // 3. If x is NaN, return false
33 // 4. If y is NaN, return false.
36 // 5. if x is the same number value as y, return true
38 // 6. If x is +0 and y is -0, return true
40 // 7. If x is -0 and y is +0, return true
42 // 8. Return false.
45 // 9. If Type(x) is String, then return true if x and y are exactly
47 // in corresponding positions.) Otherwise return false.
49 // 10. If Type(x) is Boolean, return true if x and y are both true o
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
CommandException.java 51 case RILConstants.SUCCESS: return null;
53 return new CommandException(Error.INVALID_RESPONSE);
55 return new CommandException(Error.RADIO_NOT_AVAILABLE);
57 return new CommandException(Error.GENERIC_FAILURE);
59 return new CommandException(Error.PASSWORD_INCORRECT);
61 return new CommandException(Error.SIM_PIN2);
63 return new CommandException(Error.SIM_PUK2);
65 return new CommandException(Error.REQUEST_NOT_SUPPORTED);
67 return new CommandException(Error.OP_NOT_ALLOWED_DURING_VOICE_CALL);
69 return new CommandException(Error.OP_NOT_ALLOWED_BEFORE_REG_NW)
    [all...]
  /build/tools/droiddoc/src/
MemberInfo.java 49 return mName + mSignature;
51 return mName;
56 return mContainingClass.htmlPage() + "#" + anchor();
60 return this.htmlPage().compareTo(((MemberInfo)that).htmlPage());
65 return mName;
70 return mSignature;
75 return mRealContainingClass;
80 return mContainingClass;
85 return mIsPublic;
90 return mIsProtected
    [all...]
  /dalvik/dx/tests/072-dex-switch-edge-cases/
Blort.java 27 return 0;
33 case 0: return 0;
36 return 1;
42 case Integer.MIN_VALUE: return 0;
45 return 1;
51 case Integer.MAX_VALUE: return 0;
54 return 1;
60 case 0: return 0;
61 case Integer.MIN_VALUE: return 1;
64 return 2
    [all...]
  /dalvik/libcore/json/src/main/java/org/json/
JSON.java 27 return d;
32 return (Boolean) value;
34 return Boolean.valueOf(((String) value));
36 return null;
42 return (Double) value;
44 return ((Number) value).doubleValue();
47 return Double.valueOf((String) value);
51 return null;
56 return (Integer) value;
58 return ((Number) value).intValue()
    [all...]
  /external/e2fsprogs/intl/
eval-plural.h 23 /* Evaluate the plural expression and return an index value. */
35 return n;
37 return pexp->val.num;
47 return ! arg;
53 return leftarg || plural_eval (pexp->val.args[1], n);
55 return leftarg && plural_eval (pexp->val.args[1], n);
63 return leftarg * rightarg;
69 return leftarg / rightarg;
75 return leftarg % rightarg;
77 return leftarg + rightarg
    [all...]
  /external/webkit/WebCore/page/
DOMSelection.cpp 48 return 0;
51 return 0;
52 return shadowAncestor;
62 return m_frame;
73 return m_frame->selection()->selection();
79 return rangeCompliantEquivalent(anchor);
85 return rangeCompliantEquivalent(focus);
90 return rangeCompliantEquivalent(selection.base());
95 return rangeCompliantEquivalent(selection.extent());
101 return 0
    [all...]
  /packages/apps/IM/src/com/android/im/app/
PresenceUtils.java 31 return Imps.Presence.AVAILABLE;
34 return Imps.Presence.AWAY;
37 return Imps.Presence.DO_NOT_DISTURB;
40 return Imps.Presence.IDLE;
43 return Imps.Presence.OFFLINE;
47 return Imps.Presence.AVAILABLE;
54 return BrandingResourceIDs.STRING_PRESENCE_AVAILABLE;
57 return BrandingResourceIDs.STRING_PRESENCE_AWAY;
60 return BrandingResourceIDs.STRING_PRESENCE_BUSY;
63 return BrandingResourceIDs.STRING_PRESENCE_IDLE
    [all...]
  /external/webkit/WebKit/win/
DOMEventsClasses.h 49 virtual ULONG STDMETHODCALLTYPE AddRef(void) { return DOMObject::AddRef(); }
50 virtual ULONG STDMETHODCALLTYPE Release(void) { return DOMObject::Release(); }
55 /* [retval][out] */ BOOL* result) { return DOMObject::throwException(exceptionMessage, result); }
61 /* [retval][out] */ VARIANT* result) { return DOMObject::callWebScriptMethod(name, args, cArgs, result); }
65 /* [retval][out] */ VARIANT* result) { return DOMObject::evaluateWebScript(script, result); }
68 /* [in] */ BSTR name) { return DOMObject::removeWebScriptKey(name); }
71 /* [retval][out] */ BSTR* stringRepresentation) { return DOMObject::stringRepresentation(stringRepresentation); }
75 /* [retval][out] */ VARIANT* result) { return DOMObject::webScriptValueAtIndex(index, result); }
79 /* [in] */ VARIANT val) { return DOMObject::setWebScriptValueAtIndex(index, val); }
82 /* [in] */ BSTR description) { return DOMObject::setException(description);
    [all...]
AccessibleBase.cpp 75 return new AccessibleImage(obj);
77 return new AccessibleBase(obj);
84 return E_INVALIDARG;
86 return QueryInterface(riid, ppvObject);
106 return E_NOINTERFACE;
109 return S_OK;
116 return m_refCount;
118 return 0;
127 return E_FAIL;
133 return S_OK
    [all...]

Completed in 202 milliseconds

1 2 3 4 5 6 7 891011>>