/frameworks/base/tests/TransitionTests/res/transition/ |
colorizer_transition.xml | 3 <target android:targetId="@id/password"/> 4 <target android:targetId="@id/passwordEdit"/>
|
my_transition.xml | 6 <target android:targetId="@id/container"/> 7 <target android:targetId="@id/resultsList"/> 12 <target android:targetId="@id/container"/> 13 <target android:targetId="@id/resultsList"/>
|
login_slider_transition.xml | 4 <target android:targetId="@id/retype"/> 5 <target android:targetId="@id/retypeEdit"/> 10 <target android:targetId="@id/password"/> 11 <target android:targetId="@id/passwordEdit"/>
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
messaging_utils.js | 30 // it should bind to targetId, and the second argument should bind to 32 // only bind options when the first argument cannot bind to targetId. 41 // targetId (first argument, extensionId in the manifest) is optional. 42 var targetId = null; 44 targetId = args[lastArg--]; 49 return [targetId, request, options, responseCallback]; 50 return [targetId, request, responseCallback];
|
runtime_custom_bindings.js | 108 function(targetId, message, options, responseCallback) { 113 var port = runtime.connect(targetId || runtime.id, connectOptions); 118 function(targetId, message, responseCallback) { 119 var port = runtime.connectNative(targetId); 130 // targetId (first argument) is optional. 131 var targetId = null; 133 targetId = arguments[nextArg++]; 142 return [targetId, connectInfo]; 153 apiFunctions.setHandleRequest('connect', function(targetId, connectInfo) { 157 throw new Error('Error connecting to extension ' + targetId); [all...] |
extension_custom_bindings.js | 93 function(targetId, request, responseCallback) { 96 var port = chrome.runtime.connect(targetId || extensionId,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LayoutMetadataTest.java | 75 private Pair<IDocument, UiElementNode> getNode(String filename, String targetId) 85 UiElementNode node = findById(root, targetId); 91 private static UiElementNode findById(UiElementNode node, String targetId) { 92 assertFalse(targetId.startsWith(NEW_ID_PREFIX)); 93 assertFalse(targetId.startsWith(ID_PREFIX)); 96 if (id != null && targetId.equals(BaseLayoutRule.stripIdPrefix(id))) { 101 UiElementNode result = findById(child, targetId);
|
/development/samples/ApiDemos/res/transition/ |
changebounds_fadein_together.xml | 20 <target android:targetId="@id/grayscaleContainer" />
|
changebounds_fadeout_sequential.xml | 22 <target android:targetId="@id/grayscaleContainer" />
|
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/ |
screenshot.js | 12 var targetId = tab.id; 18 if (tabId != targetId || changedProps.status != "complete")
|
/external/chromium_org/third_party/skia/include/views/ |
SkEvent.h | 65 * the eventsink matching the targetID (if not 0), or the target proc is 75 * the eventsink matching the targetID (if not 0), or the target proc is 78 SkEvent* setTargetID(SkEventSinkID targetID) { 80 fTargetID = targetID; 88 * the eventsink matching the targetID (if not 0), or the target proc is 95 * automatically clear the targetID to 0. 98 * the eventsink matching the targetID (if not 0), or the target proc is 188 * Post to the event queue using the event's targetID or target-proc. 198 * Post to the event queue using the event's targetID or target-proc and 207 * Post to the event queue using the event's targetID or target-proc [all...] |
/external/skia/include/views/ |
SkEvent.h | 65 * the eventsink matching the targetID (if not 0), or the target proc is 75 * the eventsink matching the targetID (if not 0), or the target proc is 78 SkEvent* setTargetID(SkEventSinkID targetID) { 80 fTargetID = targetID; 88 * the eventsink matching the targetID (if not 0), or the target proc is 95 * automatically clear the targetID to 0. 98 * the eventsink matching the targetID (if not 0), or the target proc is 188 * Post to the event queue using the event's targetID or target-proc. 198 * Post to the event queue using the event's targetID or target-proc and 207 * Post to the event queue using the event's targetID or target-proc [all...] |
/frameworks/base/core/java/android/transition/ |
TransitionSet.java | 174 public TransitionSet addTarget(int targetId) { 175 return (TransitionSet) super.addTarget(targetId); 184 public TransitionSet removeTarget(int targetId) { 185 return (TransitionSet) super.removeTarget(targetId); 296 int targetId = transitionValues.view.getId(); 297 if (isValidTarget(transitionValues.view, targetId)) { 299 if (childTransition.isValidTarget(transitionValues.view, targetId)) { 308 int targetId = transitionValues.view.getId(); 309 if (isValidTarget(transitionValues.view, targetId)) { 311 if (childTransition.isValidTarget(transitionValues.view, targetId)) { [all...] |
/external/llvm/lib/CodeGen/ |
Passes.cpp | 104 /// flags with ternary conditions. TargetID is passed through by default. The 107 static IdentifyingPassPtr applyOverride(IdentifyingPassPtr TargetID, 112 return TargetID; 114 if (TargetID.isValid()) 115 return TargetID; 132 /// TargetID is the pass that the target has configured to override StandardID. 134 /// StandardID may be a pseudo ID. In that case TargetID is the name of the real 138 IdentifyingPassPtr TargetID) { 140 return applyDisable(TargetID, DisablePostRA); 143 return applyDisable(TargetID, DisableBranchFold) [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayPost.cpp | 209 SkEventSinkID targetID = fSinkID; 212 if (targetID == 0) { 215 targetID = anim->getSinkID(); 217 targetID = maker.fHostEventSinkID; 226 anim->onEventPost(new SkEvent(fEvent), targetID); 228 anim->onEventPostTime(new SkEvent(fEvent), targetID, futureTime);
|
/external/skia/src/animator/ |
SkDisplayPost.cpp | 209 SkEventSinkID targetID = fSinkID; 212 if (targetID == 0) { 215 targetID = anim->getSinkID(); 217 targetID = maker.fHostEventSinkID; 226 anim->onEventPost(new SkEvent(fEvent), targetID); 228 anim->onEventPostTime(new SkEvent(fEvent), targetID, futureTime);
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/screenshot/ |
background.js | 18 var targetId = tab.id; 24 if (tabId != targetId || changedProps.status != "complete")
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
resource_loader.js | 26 * each of which has a 'url' property and a 'targetID' property that 34 * html: [{ url: '//foo.com/tmpls.html' targetID: 'tmpls'}] 119 * @param {string} html.targetID The element ID to which the retrieved 127 moveNodes(this.responseXML.body, $(html.targetID));
|
/external/chromium_org/chrome/renderer/extensions/ |
messaging_utils_unittest.cc | 91 // mapped to it rather than to the optional targetId argument. 129 // optional targetId argument. 151 // targetId. 167 // targetId must be a string.
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
NuPlayerStreamListener.h | 32 ALooper::handler_id targetID);
|
/external/chromium_org/third_party/skia/src/views/ |
SkEvent.cpp | 13 SkEventSinkID targetID) { 17 fTargetID = targetID; 37 SkEvent::SkEvent(const SkString& type, SkEventSinkID targetID) 39 initialize(type.c_str(), type.size(), targetID); 42 SkEvent::SkEvent(const char type[], SkEventSinkID targetID) 45 initialize(type, strlen(type), targetID);
|
/external/skia/src/views/ |
SkEvent.cpp | 13 SkEventSinkID targetID) { 17 fTargetID = targetID; 37 SkEvent::SkEvent(const SkString& type, SkEventSinkID targetID) 39 initialize(type.c_str(), type.size(), targetID); 42 SkEvent::SkEvent(const char type[], SkEventSinkID targetID) 45 initialize(type, strlen(type), targetID);
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
ContentViewPopupZoomerTest.java | 57 private String generateTestUrl(int totalUrls, int targetIdAt, String targetId) { 64 (isTargeted ? (" id=\"" + targetId + "\"") : "") + ">" +
|
/frameworks/base/docs/html/tools/help/ |
android.jd | 92 <td><code>-t <targetID></code></td> 131 the target referenced in the <code>-t <targetID></code> argument. For example, <code>-s 208 <td><code>-t <targetID></code></td> 275 <td><code>-t <targetID></code></td> 345 <td><code>-t <targetID></code></td>
|
/frameworks/base/core/java/com/android/internal/widget/ |
SlidingTab.java | 188 * @param targetId drawable for the target 190 Slider(ViewGroup parent, int tabId, int barId, int targetId) { 208 target.setImageResource(targetId); 322 void setTarget(int targetId) { 323 target.setImageResource(targetId); 754 * @param targetId the resource of the target drawable 758 public void setLeftTabResources(int iconId, int targetId, int barId, int tabId) { 760 mLeftSlider.setTarget(targetId); 784 * @param targetId the resource of the target drawable 788 public void setRightTabResources(int iconId, int targetId, int barId, int tabId) [all...] |