Searched refs:reference (Results 1 - 25 of 81) sorted by relevance

1234

/frameworks/support/navigation/safe-args-generator/src/tests/test-data/expected/
H A DMainFragmentArgs.java12 private int reference = a.b.R.drawable.background; field in class:MainFragmentArgs
31 if (bundle.containsKey("reference")) {
32 result.reference = bundle.getInt("reference");
52 return reference;
67 __outBundle.putInt("reference", this.reference);
78 private int reference = a.b.R.drawable.background; field in class:MainFragmentArgs.Builder
87 this.reference = original.reference;
116 setReference(int reference) argument
[all...]
/frameworks/base/tools/aapt2/link/
H A DReferenceLinker.h39 // package if the reference has no package name defined (implicit).
41 static const SymbolTable::Symbol* ResolveSymbol(const Reference& reference,
45 // visible by the reference at the callsite, nullptr is returned.
47 static const SymbolTable::Symbol* ResolveSymbolCheckVisibility(const Reference& reference,
54 static const SymbolTable::Symbol* ResolveAttributeCheckVisibility(const Reference& reference,
59 // Resolves the attribute reference and returns an xml::AaptAttribute if successful.
61 static Maybe<xml::AaptAttribute> CompileXmlAttribute(const Reference& reference,
75 // Transforms the package name of the reference to the fully qualified package name using
77 // to the reference at the callsite, the reference i
[all...]
H A DReferenceLinker.cpp43 // to the reference object.
75 // Transform the attribute reference so that it is using the fully qualified package
76 // name. This will also mark the reference as being able to see private resources if
77 // there was a '*' in the reference or if the package came from the private namespace.
92 // Link/resolve the final value (mostly if it's a reference).
175 // The symbol is visible if it is public, or if the reference to it is requesting private access
191 // The symbol is visible if the reference is local to the same package it is defined in.
203 const SymbolTable::Symbol* ReferenceLinker::ResolveSymbol(const Reference& reference, argument
206 if (reference.name) {
207 const ResourceName& name = reference
220 ResolveSymbolCheckVisibility(const Reference& reference, const CallSite& callsite, SymbolTable* symbols, std::string* out_error) argument
237 ResolveAttributeCheckVisibility( const Reference& reference, const CallSite& callsite, SymbolTable* symbols, std::string* out_error) argument
253 CompileXmlAttribute(const Reference& reference, const CallSite& callsite, SymbolTable* symbols, std::string* out_error) argument
323 LinkReference(const CallSite& callsite, Reference* reference, IAaptContext* context, SymbolTable* symbols, const xml::IPackageDeclStack* decls) argument
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DTypeTraits.h23 typedef const DataType& reference; typedef in struct:mcld::ConstTraits
33 typedef DataType& reference; typedef in struct:mcld::NonConstTraits
43 typedef const DataType& reference; typedef in struct:mcld::ConstIteratorTraits
54 typedef DataType& reference; typedef in struct:mcld::NonConstIteratorTraits
/frameworks/compile/mclinker/include/mcld/Script/
H A DSectionsCmd.h32 typedef SectionCommands::reference reference; typedef in class:mcld::SectionsCmd
44 reference front() { return m_SectionCommands.front(); }
46 reference back() { return m_SectionCommands.back(); }
H A DStringList.h31 typedef Tokens::reference reference; typedef in class:mcld::StringList
46 reference front() { return m_Tokens.front(); }
48 reference back() { return m_Tokens.back(); }
H A DOutputSectDesc.h157 typedef OutputSectCmds::reference reference; typedef in class:mcld::OutputSectDesc
169 reference front() { return m_OutputSectCmds.front(); }
171 reference back() { return m_OutputSectCmds.back(); }
H A DScriptFile.h52 typedef CommandQueue::reference reference; typedef in class:mcld::ScriptFile
64 reference front() { return m_CommandQueue.front(); }
66 reference back() { return m_CommandQueue.back(); }
/frameworks/data-binding/compilerCommon/
H A DXMLParser.g439 ((element | reference | CDATA | PI | COMMENT) chardata?)* ;
45 reference : EntityRef | CharRef ;
/frameworks/base/core/tests/coretests/src/android/view/textclassifier/
H A DTextSelectionTest.java40 final TextSelection reference = new TextSelection.Builder(startIndex, endIndex)
49 reference.writeToParcel(parcel, reference.describeContents());
69 final TextSelection.Request reference =
76 reference.writeToParcel(parcel, reference.describeContents());
H A DTextLinksTest.java59 final TextLinks reference = new TextLinks.Builder(fullText)
66 reference.writeToParcel(parcel, reference.describeContents());
94 final TextLinks.Request reference = new TextLinks.Request.Builder("text")
101 reference.writeToParcel(parcel, reference.describeContents());
H A DTextClassificationTest.java85 final TextClassification reference = new TextClassification.Builder()
96 reference.writeToParcel(parcel, reference.describeContents());
150 final TextClassification reference = new TextClassification.Builder()
160 reference.writeToParcel(parcel, reference.describeContents());
181 final TextClassification.Request reference =
189 reference.writeToParcel(parcel, reference.describeContents());
/frameworks/support/textclassifier/src/androidTest/java/androidx/textclassifier/
H A DTextSelectionTest.java39 final TextSelection reference = new TextSelection.Builder(startIndex, endIndex)
47 reference.writeToParcel(parcel, reference.describeContents());
67 TextSelection.Options reference = new TextSelection.Options()
73 reference.writeToParcel(parcel, reference.describeContents());
/frameworks/compile/mclinker/include/mcld/LD/
H A DRelocData.h47 typedef RelocationListType::reference reference; typedef in class:mcld::RelocData
77 reference front() { return m_Relocations.front(); }
79 reference back() { return m_Relocations.back(); }
H A DSectionData.h38 typedef FragmentListType::reference reference; typedef in class:mcld::SectionData
68 reference front() { return m_Fragments.front(); }
70 reference back() { return m_Fragments.back(); }
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DDelegateManager.java45 * The Android java classes that use native code uses an int (Java side) to reference native
50 * Since we cannot use the Java object reference as the int directly, DelegateManager manages the
60 * the Java object needs to count as a reference (even though it only holds an int), we use the
64 * the delegate to/from a set. This set holds the reference and prevents the GC from reclaiming
79 /** Set used to store delegates when their main object holds a reference to them.
147 * Removes the main reference on the given delegate.
164 for (Object reference : sJavaReferences) {
165 int idx = sDelegates.indexOfValue(reference);
166 out.printf("[%d] %s\n", sDelegates.keyAt(idx), reference.getClass().getSimpleName());
/frameworks/rs/script_api/
H A Dgenerate.sh54 rm -f "$DOC_DIR"/reference/*.html
55 mv docs/*.html "$DOC_DIR"/reference
H A Drs_object_info.spec34 See the <a href='http://developer.android.com/reference/android/renderscript/Allocation.html'>android.renderscript.Allocation</a> for details on to create Allocations.
58 Elements like <a href='http://developer.android.com/reference/android/renderscript/Element.html#F32_2(android.renderscript.RenderScript)'>F32_2</a>.
60 To create complex Elements, use the <a href='http://developer.android.com/reference/android/renderscript/Element.Builder.html'>Element.Builder</a> Java class.
65 See <a href='http://developer.android.com/reference/android/renderscript/Sampler.html'>android.renderscript.S</a>.
156 Returns true if the handle contains a non-null reference.
318 See <a href='http://developer.android.com/reference/android/renderscript/Sampler.html'>android.renderscript.S</a>.
330 See <a href='http://developer.android.com/reference/android/renderscript/Sampler.html'>android.renderscript.S</a>.
342 See <a href='http://developer.android.com/reference/android/renderscript/Sampler.html'>android.renderscript.S</a>.
354 See <a href='http://developer.android.com/reference/android/renderscript/Sampler.html'>android.renderscript.S</a>.
366 See <a href='http://developer.android.com/reference/androi
[all...]
H A Drs_core.spec23 This reference documentation describes the RenderScript runtime APIs, which you can utilize
29 APIs, see the <a target="_parent" href="http://developer.android.com/reference/android/renderscript/package-summary.html">android.renderscript</a> package reference.
/frameworks/base/core/java/com/android/internal/util/
H A DPreconditions.java69 * Ensures that an string reference passed as a parameter to the calling
72 * @param string an string reference
73 * @return the string reference that was validated
84 * Ensures that an string reference passed as a parameter to the calling
87 * @param string an string reference
90 * @return the string reference that was validated
102 * Ensures that an object reference passed as a parameter to the calling
105 * @param reference an object reference
106 * @return the non-null reference tha
109 checkNotNull(final T reference) argument
126 checkNotNull(final T reference, final Object errorMessage) argument
144 checkNotNull(final T reference, final String messageTemplate, final Object... messageArgs) argument
[all...]
/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h68 typedef InputList::reference reference; typedef in class:mcld::SectionMap::Output
102 reference front() { return m_InputList.front(); }
104 reference back() { return m_InputList.back(); }
152 typedef OutputDescList::reference reference; typedef in class:mcld::SectionMap
183 reference front() { return m_OutputDescList.front(); }
185 reference back() { return m_OutputDescList.back(); }
/frameworks/base/nfc-extras/
H A DAndroid.mk13 # This is to reference SdkConstant annotation; not part of this lib.
26 # This is to reference SdkConstant annotation; not part of this lib.
/frameworks/base/test-runner/src/android/test/
H A DViewAsserts.java28 * <a href="{@docRoot}reference/android/support/test/espresso/matcher/ViewMatchers.html">Espresso
285 * with respect to the <code>reference</code> view.
287 * @param reference The reference view
288 * @param test The view that should be center aligned with the reference view
290 static public void assertHorizontalCenterAligned(View reference, View test) { argument
292 reference.getLocationOnScreen(xy);
298 int center = (reference.getMeasuredWidth() - test.getMeasuredWidth()) / 2;
306 * with respect to the <code>reference</code> view.
308 * @param reference Th
311 assertVerticalCenterAligned(View reference, View test) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsBroadcastUndelivered.java177 SmsReferenceKey reference = new SmsReferenceKey(tracker);
178 Integer receivedCount = multiPartReceivedCount.get(reference);
180 multiPartReceivedCount.put(reference, 1); // first segment seen
185 oldMultiPartMessages.add(reference);
195 oldMultiPartMessages.remove(reference);
197 multiPartReceivedCount.put(reference, newCount);
/frameworks/support/compat/src/main/java/androidx/core/util/
H A DPreconditions.java57 * Ensures that an string reference passed as a parameter to the calling
60 * @param string an string reference
61 * @return the string reference that was validated
72 * Ensures that an string reference passed as a parameter to the calling
75 * @param string an string reference
78 * @return the string reference that was validated
90 * Ensures that an object reference passed as a parameter to the calling
93 * @param reference an object reference
94 * @return the non-null reference tha
97 checkNotNull(final T reference) argument
114 checkNotNull(final T reference, final Object errorMessage) argument
[all...]

Completed in 393 milliseconds

1234