Home
last modified time | relevance | path

Searched refs:override (Results 1 – 25 of 120) sorted by relevance

12345

/frameworks/compile/mclinker/unittests/
DStaticResolverTest.cpp61 bool override = true; in TEST_F() local
62 bool result = m_pResolver->resolve(*old_sym, *new_sym, override); in TEST_F()
64 ASSERT_FALSE( override ); in TEST_F()
87 bool override = false; in TEST_F() local
88 bool result = m_pResolver->resolve(*old_sym, *new_sym, override); in TEST_F()
90 ASSERT_FALSE( override ); in TEST_F()
114 bool override = false; in TEST_F() local
115 bool result = m_pResolver->resolve(*old_sym, *new_sym, override); in TEST_F()
117 ASSERT_FALSE( override ); in TEST_F()
141 bool override = false; in TEST_F() local
[all …]
/frameworks/compile/mclinker/lib/LD/
DNamePool.cpp98 pOldInfo->override(*old_symbol); in insertSymbol()
103 bool override = false; in insertSymbol() local
105 if (m_pResolver->resolve(*old_symbol, *new_symbol, override)) { in insertSymbol()
108 pResult.overriden = override; in insertSymbol()
DStaticResolver.cpp92 old->override(pNew); in resolve()
98 old->override(pNew); in resolve()
123 old->override(pNew); in resolve()
DResolveInfo.cpp30 void ResolveInfo::override(const ResolveInfo& pFrom) in override() function in ResolveInfo
/frameworks/volley/tests/
Dproject.properties7 # "ant.properties", and override values to adapt the script to your
/frameworks/base/tests/HwAccelerationTest/
Ddefault.properties7 # "build.properties", and override values to adapt the script to your
/frameworks/volley/
Dproject.properties7 # "ant.properties", and override values to adapt the script to your
/frameworks/support/v7/appcompat/
Dproject.properties7 # "ant.properties", and override values to adapt the script to your
/frameworks/opt/calendar/
Dproject.properties7 # "ant.properties", and override values to adapt the script to your
/frameworks/opt/datetimepicker/
Dproject.properties7 # "ant.properties", and override values to adapt the script to your
/frameworks/opt/timezonepicker/
Dproject.properties7 # "ant.properties", and override values to adapt the script to your
/frameworks/support/v7/gridlayout/
Dproject.properties7 # "ant.properties", and override values to adapt the script to your
/frameworks/support/v7/mediarouter/
Dproject.properties7 # "ant.properties", and override values to adapt the script to your
/frameworks/opt/colorpicker/
Dproject.properties7 # "ant.properties", and override values to adapt the script to your
/frameworks/base/tools/preload/
Dsorttable.js83 if (mtch) { override = mtch[1]; }
84 if (mtch && typeof sorttable["sort_"+override] == 'function') {
85 headrow[i].sorttable_sortfunction = sorttable["sort_"+override];
/frameworks/base/docs/html/guide/topics/ui/
Dcustom-components.jd41 the widget or layout and override its methods.
62 You could override the way that an EditText component is rendered on the screen
88 to override start with '<code>on</code>', for
94 that you override for lifecycle and other functionality hooks.
141 You will almost certainly want to override <code>onMeasure()</code> and
142 are also likely to need to override <code>onDraw()</code> if you want
398 In the case of extending a Layout, you don't need to override the
401 you can still override them if you need to.
404 You might override other <code>on...</code> methods, like
422 you don't have to override them.
[all …]
/frameworks/base/docs/html/training/improving-layouts/
Dreusing-layouts.jd101 <p>You can also override all the layout parameters (any {@code android:layout_*} attributes) of the
112 <p>However, if you want to override layout attributes using
113 the <code>&lt;include&gt;</code> tag, you must override both
/frameworks/base/docs/html/tools/testing/
Dservice_testing.jd102 {@link android.test.ServiceTestCase#getSystemContext()}. If you override this method, you must
103 call <code>super.setUp()</code> as the first statement in the override.
122 instances and inject them into the Service. You can override this behavior by creating and
129 effectively you subclass it and override the methods you need. You then inject it into the
/frameworks/base/core/java/android/webkit/
DCallbackProxy.java259 boolean override = false; in uiOverrideUrlLoading()
261 override = mWebViewClient.shouldOverrideUrlLoading(mWebView.getWebView(), in uiOverrideUrlLoading()
274 override = true; in uiOverrideUrlLoading()
280 return override; in uiOverrideUrlLoading()
363 boolean override = uiOverrideUrlLoading(overrideUrl); in handleMessage()
367 result.setResult(override); in handleMessage()
/frameworks/compile/mclinker/include/mcld/LD/
DResolveInfo.h131 void override(const ResolveInfo& pForm);
/frameworks/base/docs/html/training/gestures/
Ddetector.jd87 <p><p>To intercept touch events in an Activity or View, override
160 <p>If you are creating a custom View, you can override
183 {@link android.view.GestureDetector} object to receive events, you override
290 for all of them. Thus you can override only the methods you care about.
/frameworks/base/tools/layoutlib/create/
DREADME.txt92 - specific methods to override (see method stubs details below).
162 methods to override. Instead it removes the original code and replaces it
206 This strategy is used to override method implementations.
/frameworks/base/docs/html/training/contacts-provider/
Ddisplay-contact-badge.jd372 override the following methods:
377 Inflates a new {@link android.view.View} object to hold the item layout. In the override
383 You must override this method so you can get handles to the individual child
391 {@link android.view.View} objects of the item layout. You must override this method so
404 constructor, and override
/frameworks/base/docs/html/guide/topics/ui/accessibility/
Dapps.jd300 <em>must</em> override this method and populate {@link
323 simple {@link android.widget.TextView} or {@link android.widget.Button}, you should override this
326 do override this method, you must call its super implementation and then only modify properties
334 android.widget.TextView} or {@link android.widget.Button}, you should override this method and set
351 <li>If your application targets Android 4.0 (API level 14) and higher, override and implement the
490 <p>The example code below shows how override these three methods by using
591 <p>In order to provide a virtual view hierarchy for a view, override the {@link
618 <p>To handle these requirements in an efficient way, your code should override the
/frameworks/wilhelm/src/
DAndroid.mk24 LOCAL_CFLAGS += -Wno-override-init

12345