Home
last modified time | relevance | path

Searched refs:link (Results 1 – 25 of 262) sorted by relevance

1234567891011

/frameworks/ml/nn/tools/api/
Dtypes.spec21 %define or_1.2 or {@link ANEURALNETWORKS_%{1}}
51 * {@link PaddingCode} values.
104 %define or_1.2 or {@link OperandType::%{1}}
186 * types. Most used are {@link %{OperandTypeLinkPfx}TENSOR_FLOAT32},
187 * {@link %{OperandTypeLinkPfx}TENSOR_QUANT8_ASYMM},
188 * and {@link %{OperandTypeLinkPfx}INT32}.
236 * Takes two input tensors of identical {@link %{OperandType}} and compatible
255 * Supported tensor {@link %{OperandType}}:
257 * * {@link %{OperandTypeLinkPfx}TENSOR_FLOAT16} (since %{APILevel29})
259 * * {@link %{OperandTypeLinkPfx}TENSOR_FLOAT32}
[all …]
DNeuralNetworks.t179 * currently documented. Any value other than {@link ANEURALNETWORKS_NO_ERROR}
283 * For {@link ANeuralNetworksModel_setOperandValue}, values with a
292 * For {@link ANeuralNetworksCompilation_setCaching}, specify the size
315 // than with {@link ANeuralNetworksExecution_startComputeWithDependencies}), the
323 // than with {@link ANeuralNetworksExecution_startComputeWithDependencies}), the
349 * {@link ANeuralNetworksModel_setOperandValueFromMemory}. An application
351 * needed to define a model. {@link ANeuralNetworksMemory_createFromFd} can be used to
353 * {@link ANeuralNetworksMemory_createFromAHardwareBuffer} can be used to
357 * an execution. See {@link ANeuralNetworksExecution_setInputFromMemory}
358 * and {@link ANeuralNetworksExecution_setOutputFromMemory}.
[all …]
/frameworks/base/cmds/statsd/benchmark/
Dget_dimensions_for_condition_benchmark.cpp29 static void createLogEventAndLink(LogEvent* event, Metric2Condition *link) { in createLogEventAndLink() argument
41 link->conditionId = 1; in createLogEventAndLink()
50 translateFieldMatcher(field_matcher, &link->metricFields); in createLogEventAndLink()
52 translateFieldMatcher(field_matcher, &link->conditionFields); in createLogEventAndLink()
56 Metric2Condition link; in BM_GetDimensionInCondition() local
58 createLogEventAndLink(&event, &link); in BM_GetDimensionInCondition()
62 getDimensionForCondition(event.getValues(), link, &output); in BM_GetDimensionInCondition()
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
DStackOverflowXmlParser.java72 public final String link; field in StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) { in Entry() argument
78 this.link = link; in Entry()
89 String link = null; in readEntry() local
100 link = readLink(parser); in readEntry()
105 return new Entry(title, summary, link); in readEntry()
118 String link = ""; in readLink() local
124 link = parser.getAttributeValue(null, "href"); in readLink()
129 return link; in readLink()
/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/view/
DRichTextViewTest.java51 Annotation link = new Annotation("link", "foobar"); in testLinkAnnotation() local
53 ssb.setSpan(link, 1, 2, 0 /* flags */); in testLinkAnnotation()
76 Annotation link = new Annotation("link", "foobar"); in testOnLinkClickListener() local
78 ssb.setSpan(link, 1, 2, 0 /* flags */); in testOnLinkClickListener()
98 Annotation link = new Annotation("link", "foobar"); in testLegacyContextOnClickListener() local
100 ssb.setSpan(link, 1, 2, 0 /* flags */); in testLegacyContextOnClickListener()
116 Annotation link = new Annotation("link", "foobar"); in onTouchEvent_clickOnLinks_shouldReturnTrue() local
118 ssb.setSpan(link, 0, 2, 0 /* flags */); in onTouchEvent_clickOnLinks_shouldReturnTrue()
134 Annotation link = new Annotation("link", "foobar"); in onTouchEvent_clickOutsideLinks_shouldReturnFalse() local
136 ssb.setSpan(link, 0, 2, 0 /* flags */); in onTouchEvent_clickOutsideLinks_shouldReturnFalse()
[all …]
/frameworks/base/core/java/android/view/textclassifier/
DTextLinksParams.java125 for (TextLink link : textLinks.getLinks()) { in apply()
126 final TextLinkSpan span = mSpanFactory.apply(link); in apply()
129 link.getStart(), link.getEnd(), ClickableSpan.class); in apply()
135 text.setSpan(span, link.getStart(), link.getEnd(), in apply()
140 text.setSpan(span, link.getStart(), link.getEnd(), in apply()
DGenerateLinksLogger.java79 for (TextLinks.TextLink link : links.getLinks()) { in logGenerateLinks()
80 if (link.getEntityCount() == 0) continue; in logGenerateLinks()
81 final String entityType = link.getEntity(0); in logGenerateLinks()
87 totalStats.countLink(link); in logGenerateLinks()
88 perEntityTypeStats.computeIfAbsent(entityType, k -> new LinkifyStats()).countLink(link); in logGenerateLinks()
156 void countLink(TextLinks.TextLink link) { in countLink() argument
158 mNumLinksTextLength += link.getEnd() - link.getStart(); in countLink()
/frameworks/base/tools/aapt2/
DAndroid.bp108 "link/AutoVersioner.cpp",
109 "link/ManifestFixer.cpp",
110 "link/NoDefaultResourceRemover.cpp",
111 "link/ProductFilter.cpp",
112 "link/PrivateAttributeMover.cpp",
113 "link/ReferenceLinker.cpp",
114 "link/ResourceExcluder.cpp",
115 "link/TableMerger.cpp",
116 "link/XmlCompatVersioner.cpp",
117 "link/XmlNamespaceRemover.cpp",
[all …]
Dreadme.md45 ### `aapt2 link ...`
59 ### `aapt2 link ...`
74 - aapt2 optimize can now split a binary APK with the same --split parameters as the link
86 ### `aapt2 link ...`
93 ### `aapt2 link ...`
101 ### `aapt2 link ...`
111 `link` phase but this covers apps built with `aapt`).
116 ### `aapt2 link ...`
132 ### `aapt2 link ...`
137 ### `aapt2 link ...`
[all …]
/frameworks/base/core/java/android/text/method/
DLinkMovementMethod.java146 ClickableSpan link = links[0]; in action() local
147 if (link instanceof TextLinkSpan) { in action()
148 ((TextLinkSpan) link).onClick(widget, TextLinkSpan.INVOCATION_METHOD_KEYBOARD); in action()
150 link.onClick(widget); in action()
226 ClickableSpan link = links[0]; in onTouchEvent() local
228 if (link instanceof TextLinkSpan) { in onTouchEvent()
229 ((TextLinkSpan) link).onClick( in onTouchEvent()
232 link.onClick(widget); in onTouchEvent()
242 buffer.getSpanStart(link), in onTouchEvent()
243 buffer.getSpanEnd(link)); in onTouchEvent()
/frameworks/base/core/proto/android/telecomm/
Denums.proto31 * not expected to ever interact with NEW calls, but {@link android.telecom.InCallService}s will
38 * Common transitions are to {@link #DIALING} state for a successful call or
39 * {@link #DISCONNECTED} if it failed.
45 * {@link android.telecom.PhoneAccount} through which to place the call.
52 * state usually transition to {@link #ACTIVE} if the call was answered or {@link #DISCONNECTED}
60 * ringtone. Normal transitions are to {@link #ACTIVE} if answered or {@link #DISCONNECTED}
68 * {@link #DIALING} call or a {@link #RINGING} call being answered by the other party.
75 * to this state is by the user putting an {@link #ACTIVE} call on hold by explicitly performing
97 * to a {@link #DISCONNECTED} state.
109 * {@link android.telecom.Connection#PROPERTY_IS_EXTERNAL_CALL} and
[all …]
/frameworks/base/cmds/idmap2/tests/data/overlay/
Dbuild19 aapt2 link \
26 aapt2 link \
33 aapt2 link \
40 aapt2 link \
47 aapt2 link \
/frameworks/compile/mclinker/lib/LD/
DStaticResolver.cpp146 if (pNew.link() == NULL) { in resolve()
159 old->setLink(pNew.link()); in resolve()
165 if (old->link() == pNew.link()) { in resolve()
192 if (old->link() == NULL) { in resolve()
197 old = old->link(); in resolve()
/frameworks/base/tests/TouchLatency/
Dgradlew56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
/frameworks/layoutlib/bridge/tests/res/testApp/MyApplication/
Dgradlew56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
/frameworks/base/tools/processors/view_inspector/test/resources/android/processor/view/inspector/InspectionCompanionGeneratorTest/
DNestedClass.java.txt9 * Inspection companion for {@link Outer.Inner}.
11 * Generated by {@link android.processor.view.inspector.InspectionCompanionGenerator}
12 * on behalf of {@link android.processor.view.inspector.InspectionCompanionGeneratorTest}.
DNoAttributeId.java.txt9 * Inspection companion for {@link TestNode}.
11 * Generated by {@link android.processor.view.inspector.InspectionCompanionGenerator}
12 * on behalf of {@link android.processor.view.inspector.InspectionCompanionGeneratorTest}.
DSuppliedAttributeId.java.txt9 * Inspection companion for {@link TestNode}.
11 * Generated by {@link android.processor.view.inspector.InspectionCompanionGenerator}
12 * on behalf of {@link android.processor.view.inspector.InspectionCompanionGeneratorTest}.
DFieldProperty.java.txt10 * Inspection companion for {@link TestNode}.
12 * Generated by {@link android.processor.view.inspector.InspectionCompanionGenerator}
13 * on behalf of {@link android.processor.view.inspector.InspectionCompanionGeneratorTest}.
DIntEnum.java.txt12 * Inspection companion for {@link TestNode}.
14 * Generated by {@link android.processor.view.inspector.InspectionCompanionGenerator}
15 * on behalf of {@link android.processor.view.inspector.InspectionCompanionGeneratorTest}.
DIntFlag.java.txt10 * Inspection companion for {@link TestNode}.
12 * Generated by {@link android.processor.view.inspector.InspectionCompanionGenerator}
13 * on behalf of {@link android.processor.view.inspector.InspectionCompanionGeneratorTest}.
/frameworks/base/startop/apps/ColorChanging/
Dgradlew15 link=`expr "$ls" : '.*-> \(.*\)$'`
16 if expr "$link" : '/.*' > /dev/null; then
17 PRG="$link"
19 PRG=`dirname "$PRG"`"/$link"
/frameworks/base/cmds/statsd/tests/metrics/
DEventMetricProducer_test.cpp98 MetricConditionLink* link = metric.add_links(); in TEST() local
99 link->set_condition(StringToId("APP_IN_BACKGROUND_PER_UID")); in TEST()
100 buildSimpleAtomFieldMatcher(tagId, 1, link->mutable_fields_in_what()); in TEST()
101 buildSimpleAtomFieldMatcher(conditionTagId, 2, link->mutable_fields_in_condition()); in TEST()
/frameworks/multidex/
Dgradlew56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
/frameworks/base/cmds/statsd/tests/
DFieldValue_test.cpp215 Metric2Condition link; in TEST() local
217 translateFieldMatcher(whatMatcher, &link.metricFields); in TEST()
218 translateFieldMatcher(conditionMatcher, &link.conditionFields); in TEST()
220 EXPECT_EQ((size_t)1, link.metricFields.size()); in TEST()
221 EXPECT_EQ((int32_t)0x02010001, link.metricFields[0].mMatcher.getField()); in TEST()
222 EXPECT_EQ((int32_t)0xff7f007f, link.metricFields[0].mMask); in TEST()
223 EXPECT_EQ((int32_t)10, link.metricFields[0].mMatcher.getTag()); in TEST()
225 EXPECT_EQ((size_t)1, link.conditionFields.size()); in TEST()
226 EXPECT_EQ((int32_t)0x02028002, link.conditionFields[0].mMatcher.getField()); in TEST()
227 EXPECT_EQ((int32_t)0xff7f807f, link.conditionFields[0].mMask); in TEST()
[all …]

1234567891011