Searched defs:result (Results 176 - 200 of 804) sorted by relevance

1234567891011>>

/frameworks/base/tools/aapt2/flatten/
H A DTableFlattener_test.cpp220 ResourceTable result; local
221 ASSERT_TRUE(flatten(table.get(), &result));
223 Attribute* actualAttr = test::getValue<Attribute>(&result, u"@android:attr/foo");
/frameworks/base/tools/aapt2/test/
H A DCommon.h67 bool result = ResourceUtils::tryParseReference(str, &ref); local
68 assert(result && "invalid resource name");
74 bool result = ConfigDescription::parse(str, &config); local
75 assert(result && "invalid configuration");
83 Maybe<ResourceTable::SearchResult> result = table->findResource(parseNameOrDie(resName)); local
84 if (result) {
85 ResourceConfigValue* configValue = result.value().entry->findValue(config, product);
/frameworks/base/tools/preload2/src/com/android/preload/
H A DClientUtils.java93 private Client result; field in class:ClientUtils.WaitForClient
100 this.result = null;
108 if (result == null) {
109 result = searchForClient(device);
112 if (result == null) {
122 return result;
169 result = arg0;
/frameworks/base/tools/preload2/src/com/android/preload/actions/
H A DComputeThresholdAction.java89 Set<String> result = fromThreshold(uses, blacklist, threshold);
92 boolean ret = Main.getUI().showConfirmDialog("Computed a set with " + result.size()
99 saveSet(result, f);
140 private static void saveSet(Set<String> result, File f) { argument
143 for (String s : result) {
/frameworks/compile/libbcc/tools/bcc_compat/
H A DMain.cpp118 RSScript *result = nullptr; local
129 if (result != nullptr) {
130 if (!result->mergeSource(*source)) {
137 result = new (std::nothrow) RSScript(*source);
138 if (result == nullptr) {
147 return result;
205 Compiler::ErrorCode result = compiler->config(*config); local
207 if (result != Compiler::kSuccess) {
209 << Compiler::GetErrorString(result) << ")\n";
/frameworks/compile/mclinker/lib/Core/
H A DModule.cpp57 AliasList* result = gc_aliaslist_factory.allocate(); local
58 new (result) AliasList();
59 m_AliasLists.push_back(result);
60 result->push_back(&pSym);
/frameworks/compile/mclinker/lib/Fragment/
H A DFragmentRef.cpp70 FragmentRef* result = g_FragRefFactory->allocate();
71 new (result) FragmentRef(*frag, offset);
73 return result;
151 Offset result = 0; local
153 result = m_pFragment->getOffset();
154 return (result + m_Offset);
/frameworks/compile/mclinker/lib/LD/
H A DDiagnosticInfos.cpp88 const DiagStaticInfo* result = local
91 if (result == (static_info + info_size) || result->ID != pID)
94 return result;
H A DELFDynObjReader.cpp58 bool result = true; local
61 result = false;
64 result = false;
67 result = false;
70 result = false;
72 return result;
116 bool result = local
118 return result;
H A DLDSection.cpp72 LDSection* result = g_SectFactory->allocate(); local
73 new (result) LDSection(pName, pKind, pType, pFlag, pSize, pAddr);
74 return result;
H A DLDSymbol.cpp51 LDSymbol* result = g_LDSymbolFactory->allocate(); local
52 new (result) LDSymbol();
53 result->setResolveInfo(pResolveInfo);
54 return result;
/frameworks/compile/mclinker/lib/MC/
H A DAttribute.cpp98 Attribute* result = pParent.exists(*pCopy); local
99 if (result == NULL) { // can not find
104 pBase = result;
/frameworks/compile/mclinker/lib/Script/
H A DAssignment.cpp170 uint64_t result = 0; local
171 bool success = pEvaluator.eval(m_RpnExpr, result);
173 m_Symbol.setValue(result);
H A DRpnExpr.cpp55 RpnExpr* result = g_ExprFactory->allocate(); local
56 new (result) RpnExpr();
57 return result;
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.cpp119 uint64_t result = 0x0; local
123 result += ARMGOTEntry::EntrySize;
125 return result;
H A DARMToARMStub.cpp64 bool result = false; local
77 result = true;
85 return result;
H A DARMToTHMStub.cpp66 bool result = false; local
77 result = true;
86 result = true;
93 return result;
H A DTHMToARMStub.cpp73 bool result = false; local
85 result = true;
91 result = true;
99 result = true;
106 return result;
H A DTHMToTHMStub.cpp75 bool result = false; local
87 result = true;
93 result = true;
103 return result;
/frameworks/compile/mclinker/unittests/
H A DELFReaderTest.cpp114 bool result = m_pELFReader->readSymbols( local
116 ASSERT_TRUE(result);
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2CaptureCallbackForwarder.java42 final TotalCaptureResult result) {
46 mListener.onCaptureCompleted(session, request, result);
41 onCaptureCompleted(final CameraCaptureSession session, final CaptureRequest request, final TotalCaptureResult result) argument
H A DCamera2CaptureCallbackSplitter.java51 TotalCaptureResult result) {
53 target.onCaptureCompleted(session, request, result);
50 onCaptureCompleted(CameraCaptureSession session, CaptureRequest request, TotalCaptureResult result) argument
/frameworks/minikin/libs/minikin/
H A DFontLanguageListCache.cpp80 std::vector<FontLanguage> result; local
94 result.push_back(lang);
95 if (result.size() == FONT_LANGUAGES_LIMIT) {
101 if (result.size() < FONT_LANGUAGES_LIMIT) {
107 result.push_back(lang);
110 return result;
H A DMinikinFontFreeType.cpp76 GlyphBitmap *result) {
88 result->buffer = bitmap.buffer;
89 result->width = bitmap.width;
90 result->height = bitmap.rows;
91 result->left = mTypeface->glyph->bitmap_left;
92 result->top = mTypeface->glyph->bitmap_top;
75 Render(uint32_t glyph_id, const MinikinPaint& , GlyphBitmap *result) argument
/frameworks/native/libs/gui/
H A DIGraphicBufferAlloc.cpp58 status_t result = reply.readInt32(); local
59 if (result == NO_ERROR) {
61 result = reply.read(*graphicBuffer);
62 if (result != NO_ERROR) {
69 *error = result;
105 sp<GraphicBuffer> result = local
108 if (result != 0) {
109 reply->write(*result);
116 reply->writeStrongBinder( new BufferReference(result) );

Completed in 1251 milliseconds

1234567891011>>