HomeSort by relevance Sort by last modified time
    Searched refs:targetId (Results 1 - 25 of 33) sorted by null

1 2

  /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);
  /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...]
Transition.java 81 * of which lists a specific <code>targetId</code> which this transition acts upon.
512 * the Transition has no target/targetId list (the default, in which
515 * targetId list. If the target parameter is null, then the target list
519 boolean isValidTarget(View target, long targetId) {
520 if (mTargetIdExcludes != null && mTargetIdExcludes.contains(targetId)) {
540 if (mTargetIds.get(i) == targetId) {
    [all...]
  /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 + "\"") : "") + ">" +
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/
screenshot.js 12 var targetId = tab.id;
18 if (tabId != targetId || changedProps.status != "complete")
  /prebuilts/devtools/tools/lib/
sdkmanager.jar 
  /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")
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationDescription.java 193 String targetId = element.getAttribute(ATTR_TARGET);
194 if (!targetId.isEmpty()) {
195 IAndroidTarget target = Configuration.stringToTarget(targetId);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DependencyGraph.java 108 String targetId = BaseLayoutRule.stripIdPrefix(value);
109 ViewData target = mIdToView.get(targetId);
122 //System.out.println("Warning: no view data found for " + targetId);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestNode.java 311 private TestNode findById(String targetId) {
313 if (id != null && targetId.equals(BaseLayoutRule.stripIdPrefix(id))) {
318 TestNode result = child.findById(targetId);
  /dalvik/vm/compiler/codegen/x86/
CodegenInterface.cpp 273 LowOp* jumpToBasicBlock(char* instAddr, int targetId) {
277 int relativeNCG = targetId;
278 relativeNCG = getRelativeNCG(targetId, JmpCall_uncond, &unknown, &size);
283 LowOp* condJumpToBasicBlock(char* instAddr, ConditionCode cc, int targetId) {
287 int relativeNCG = targetId;
288 relativeNCG = getRelativeNCG(targetId, JmpCall_cond, &unknown, &size);
    [all...]
Lower.h     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 763 private static Element findCorresponding(@NonNull Element element, @NonNull String targetId) {
766 if (id.equals(targetId)) {
770 if (id.equals(targetId)) {
781 Element match = findCorresponding(child, targetId);
    [all...]
  /external/chromium_org/chrome/browser/resources/image_loader/
image_loader_client.js 152 var targetId = ImageLoaderClient.EXTENSION_ID;
155 'filesystem:chrome-extension://' + targetId);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate.js 934 * We append it to the element identified by targetId, which is hidden.
941 * @param {string} targetId The id of a DOM object under which to attach the
945 function jstLoadTemplate_(doc, html, targetId) {
946 var existing_target = domGetElementById(doc, targetId);
950 target.id = targetId;
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jstemplate.js 934 * We append it to the element identified by targetId, which is hidden.
941 * @param {string} targetId The id of a DOM object under which to attach the
945 function jstLoadTemplate_(doc, html, targetId) {
946 var existing_target = domGetElementById(doc, targetId);
950 target.id = targetId;
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate.js 934 * We append it to the element identified by targetId, which is hidden.
941 * @param {string} targetId The id of a DOM object under which to attach the
945 function jstLoadTemplate_(doc, html, targetId) {
946 var existing_target = domGetElementById(doc, targetId);
950 target.id = targetId;
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jstemplate.js 934 * We append it to the element identified by targetId, which is hidden.
941 * @param {string} targetId The id of a DOM object under which to attach the
945 function jstLoadTemplate_(doc, html, targetId) {
946 var existing_target = domGetElementById(doc, targetId);
950 target.id = targetId;
    [all...]
  /external/chromium_org/third_party/jstemplate/
jstemplate.js 901 * We append it to the element identified by targetId, which is hidden.
908 * @param {string} targetId The id of a DOM object under which to attach the
912 function jstLoadTemplate_(doc, html, targetId) {
913 var existing_target = domGetElementById(doc, targetId);
917 target.id = targetId;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGUseElement.cpp 651 AtomicString targetId = newTarget->getIdAttribute();
656 if (element->hasID() && element->getIdAttribute() == targetId && element->document() == newTarget->document())
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar 

Completed in 1046 milliseconds

1 2