/aosp_15_r20/external/sdk-platform-java/java-common-protos/proto-google-common-protos/src/main/java/com/google/api/ |
H A D | SourceInfo.java | 28 * Protobuf type {@code google.api.SourceInfo} 30 public final class SourceInfo extends com.google.protobuf.GeneratedMessageV3 class 32 // @@protoc_insertion_point(message_implements:google.api.SourceInfo) 35 // Use SourceInfo.newBuilder() to construct. 36 private SourceInfo(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in SourceInfo() method in SourceInfo 40 private SourceInfo() { in SourceInfo() method in SourceInfo 47 return new SourceInfo(); in newInstance() 64 com.google.api.SourceInfo.class, com.google.api.SourceInfo.Builder.class); in internalGetFieldAccessorTable() 176 if (!(obj instanceof com.google.api.SourceInfo)) { in equals() 179 com.google.api.SourceInfo other = (com.google.api.SourceInfo) obj; in equals() [all …]
|
/aosp_15_r20/external/intel-media-driver/media_softlet/agnostic/common/vp/hal/utils/ |
H A D | vp_debug.cpp | 154 void VphalOcaDumper::InitSourceInfo(VPHAL_OCA_SOURCE_INFO &sourceInfo, VPHAL_SURFACE &source) in InitSourceInfo() argument 156 InitSurfInfo(sourceInfo.surfInfo, source); in InitSourceInfo() 157 sourceInfo.Rotation = source.Rotation; in InitSourceInfo() 158 sourceInfo.iPalette = source.iPalette; in InitSourceInfo() 159 sourceInfo.PaletteParams = source.Palette; in InitSourceInfo() 163 sourceInfo.BlendingParams.params = *source.pBlendingParams; in InitSourceInfo() 164 sourceInfo.BlendingParams.bValid = true; in InitSourceInfo() 169 sourceInfo.LumaKeyParams.params = *source.pLumaKeyParams; in InitSourceInfo() 170 sourceInfo.LumaKeyParams.bValid = true; in InitSourceInfo() 175 sourceInfo.ProcampParams.params = *source.pProcampParams; in InitSourceInfo() [all …]
|
/aosp_15_r20/cts/tests/tests/packageinstaller/install/src/android/packageinstaller/install/cts/ |
H A D | UpdateOwnershipEnforcementMultiUserTest.kt | 80 var sourceInfo = pm.getInstallSourceInfo(TEST_APK_PACKAGE_NAME) in installWithoutRequestingUpdateOwnership_hasNoUpdateOwner() variable 81 assertEquals(TEST_INSTALLER_APK_PACKAGE_NAME, sourceInfo.updateOwnerPackageName) in installWithoutRequestingUpdateOwnership_hasNoUpdateOwner() 84 sourceInfo = pm.getInstallSourceInfo(TEST_APK_PACKAGE_NAME) in installWithoutRequestingUpdateOwnership_hasNoUpdateOwner() 85 assertEquals(null, sourceInfo.updateOwnerPackageName) in installWithoutRequestingUpdateOwnership_hasNoUpdateOwner() 98 var sourceInfo = pm.getInstallSourceInfo(TEST_APK_PACKAGE_NAME) in installWithRequestingUpdateOwnership_updateOwnerIsTheSame_ownerRetained() variable 99 assertEquals(TEST_INSTALLER_APK_PACKAGE_NAME, sourceInfo.updateOwnerPackageName) in installWithRequestingUpdateOwnership_updateOwnerIsTheSame_ownerRetained() 104 sourceInfo = pm.getInstallSourceInfo(TEST_APK_PACKAGE_NAME) in installWithRequestingUpdateOwnership_updateOwnerIsTheSame_ownerRetained() 105 assertEquals(TEST_INSTALLER_APK_PACKAGE_NAME, sourceInfo.updateOwnerPackageName) in installWithRequestingUpdateOwnership_updateOwnerIsTheSame_ownerRetained() 118 var sourceInfo = pm.getInstallSourceInfo(TEST_APK_PACKAGE_NAME) in installWithRequestingUpdateOwnership_updateOwnerIsNotTheSame_hasNoUpdateOwner() variable 119 assertEquals(TEST_INSTALLER_APK_PACKAGE_NAME, sourceInfo.updateOwnerPackageName) in installWithRequestingUpdateOwnership_updateOwnerIsNotTheSame_hasNoUpdateOwner() [all …]
|
H A D | UpdateOwnershipEnforcementTest.kt | 116 val sourceInfo = pm.getInstallSourceInfo(TEST_APK_PACKAGE_NAME) in setRequestUpdateOwnership_whenInitialInstall_hasUpdateOwner() constant 118 assertEquals(context.opPackageName, sourceInfo.updateOwnerPackageName) in setRequestUpdateOwnership_whenInitialInstall_hasUpdateOwner() 138 val sourceInfo = pm.getInstallSourceInfo(TEST_APK_PACKAGE_NAME) in setRequestUpdateOwnership_whenUpdate_hasNoUpdateOwner() constant 141 assertEquals(null, sourceInfo.updateOwnerPackageName) in setRequestUpdateOwnership_whenUpdate_hasNoUpdateOwner() 151 var sourceInfo = pm.getInstallSourceInfo(TEST_APK_PACKAGE_NAME) in uninstallUpdateOwner_hasNoUpdateOwner() variable 152 assertEquals(TEST_INSTALLER_APK_PACKAGE_NAME, sourceInfo.updateOwnerPackageName) in uninstallUpdateOwner_hasNoUpdateOwner() 156 sourceInfo = pm.getInstallSourceInfo(TEST_APK_PACKAGE_NAME) in uninstallUpdateOwner_hasNoUpdateOwner() 157 assertEquals(null, sourceInfo.updateOwnerPackageName) in uninstallUpdateOwner_hasNoUpdateOwner() 167 val sourceInfo = pm.getInstallSourceInfo(TEST_APK_PACKAGE_NAME) in installViaShellCommand_enableUpdateOwnership() constant 168 assertEquals(TEST_INSTALLER_APK_PACKAGE_NAME, sourceInfo.updateOwnerPackageName) in installViaShellCommand_enableUpdateOwnership() [all …]
|
/aosp_15_r20/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/ |
H A D | AtomicFUTransformerBase.kt | 35 data class SourceInfo( in isClassFile() dataClass 48 private fun format(message: String, sourceInfo: SourceInfo? = null): String { in format() 49 var loc = if (sourceInfo == null) "" else sourceInfo.toString() + ": " in format() 50 if (verbose && sourceInfo != null && sourceInfo.i != null) in format() 51 loc += sourceInfo.i.atIndex(sourceInfo.insnList) in format() 55 protected fun info(message: String, sourceInfo: SourceInfo? = null) { in info() 56 logger.info(format(message, sourceInfo)) in info() 59 protected fun debug(message: String, sourceInfo: SourceInfo? = null) { in debug() 60 logger.debug(format(message, sourceInfo)) in debug() 63 protected fun error(message: String, sourceInfo: SourceInfo? = null) { in error() [all …]
|
H A D | AtomicFUTransformer.kt | 257 error("Failed to analyze: $e", cv.sourceInfo) in analyzeFileForRefs() 273 error("Failed to transform: $e", cv.sourceInfo) in transformFile() 500 var sourceInfo: SourceInfo? = null in FieldId() variable 650 val sourceInfo = SourceInfo(methodId, source) in FieldId() constant 663 sourceInfo, access, name, desc, signature, exceptions, superMV, in FieldId() 666 this.sourceInfo = mv.sourceInfo in FieldId() 714 sourceInfo: SourceInfo, 725 val sourceInfo = sourceInfo.copy(insnList = instructions) constant 758 error(e.message!!, sourceInfo.copy(i = e.i)) in visitEnd() 1067 debug("invoke $f.${operation.name}", sourceInfo.copy(i = operation)) in fixupOperationOnAtomicVar()
|
/aosp_15_r20/bootable/deprecated-ota/tests/unit/ |
H A D | commands_test.cpp | 52 SourceInfo source; in TEST() 60 ASSERT_EQ(SourceInfo("1d74d1a60332fd38cf9405f1bae67917888da6cb", in TEST() 74 SourceInfo source; in TEST() 83 SourceInfo("1c25ba04d3278d6b65a1b9f17abac78425ec8b8d", {}, {}, in TEST() 100 SourceInfo source; in TEST() 108 ASSERT_EQ(SourceInfo( in TEST() 128 SourceInfo source; in TEST() 152 SourceInfo source; in TEST() 176 ASSERT_EQ(SourceInfo(), command.source()); in TEST() 206 ASSERT_EQ(SourceInfo("f201a4e04bd3860da6ad47b957ef424d58a58f8c", in TEST() [all …]
|
/aosp_15_r20/frameworks/av/media/libstagefright/ |
H A D | MPEG2TSWriter.cpp | 37 struct MPEG2TSWriter::SourceInfo : public AHandler { struct in android::MPEG2TSWriter 38 explicit SourceInfo(const sp<MediaSource> &source); 64 virtual ~SourceInfo(); 91 DISALLOW_EVIL_CONSTRUCTORS(SourceInfo); 94 MPEG2TSWriter::SourceInfo::SourceInfo(const sp<MediaSource> &source) in SourceInfo() function in android::MPEG2TSWriter::SourceInfo 115 MPEG2TSWriter::SourceInfo::~SourceInfo() { in ~SourceInfo() 118 unsigned MPEG2TSWriter::SourceInfo::streamType() const { in streamType() 122 unsigned MPEG2TSWriter::SourceInfo::incrementContinuityCounter() { in incrementContinuityCounter() 130 void MPEG2TSWriter::SourceInfo::start(const sp<AMessage> ¬ify, const sp<MetaData> ¶ms) { in start() 140 void MPEG2TSWriter::SourceInfo::stop() { in stop() [all …]
|
/aosp_15_r20/external/cronet/components/metrics/ |
H A D | file_metrics_provider.cc | 102 struct FileMetricsProvider::SourceInfo { struct in metrics::FileMetricsProvider 103 explicit SourceInfo(const Params& params) in SourceInfo() function 124 SourceInfo(const SourceInfo&) = delete; 125 SourceInfo& operator=(const SourceInfo&) = delete; 127 ~SourceInfo() {} in ~SourceInfo() argument 200 std::unique_ptr<SourceInfo> source(new SourceInfo(params)); in RegisterSource() 243 bool FileMetricsProvider::LocateNextFileInDirectory(SourceInfo* source) { in LocateNextFileInDirectory() 256 source->found_files = std::make_unique<SourceInfo::FoundFiles>(); in LocateNextFileInDirectory() 259 SourceInfo::FoundFile found_file; in LocateNextFileInDirectory() 307 SourceInfo::FoundFile found = in LocateNextFileInDirectory() [all …]
|
H A D | file_metrics_provider.h | 250 struct SourceInfo; 251 using SourceInfoList = std::list<std::unique_ptr<SourceInfo>>; 260 static bool LocateNextFileInDirectory(SourceInfo* source); 263 static void FinishedWithSource(SourceInfo* source, AccessResult result); 273 static AccessResult CheckAndMapMetricSource(SourceInfo* source); 277 static size_t MergeHistogramDeltasFromSource(SourceInfo* source); 283 SourceInfo* source, 287 static AccessResult HandleFilterSource(SourceInfo* source, 292 SourceInfo* source, 299 static size_t CollectFileMetadataFromSource(SourceInfo* source); [all …]
|
/aosp_15_r20/bootable/deprecated-ota/updater/include/private/ |
H A D | commands.h | 102 class SourceInfo { 104 SourceInfo() = default; 106 SourceInfo(std::string hash, RangeSet ranges, RangeSet location, std::vector<StashInfo> stashes) in SourceInfo() function 117 // Reads all the data specified by this SourceInfo object into the given 'buffer', by calling the 127 // Whether this SourceInfo overlaps with the given TargetInfo object. 130 // Dumps the hashes in hex for the given buffer that's loaded from this SourceInfo object 142 bool operator==(const SourceInfo& other) const { 148 friend std::ostream& operator<<(std::ostream& os, const SourceInfo& source); 164 std::ostream& operator<<(std::ostream& os, const SourceInfo& source); 234 // command consists of one or several args, namely TargetInfo, SourceInfo, StashInfo and PatchInfo. [all …]
|
/aosp_15_r20/packages/modules/IntentResolver/java/src/com/android/intentresolver/chooser/ |
D | SelectableTargetInfo.java | 107 @Nullable DisplayResolveInfo sourceInfo, in newSelectableTargetInfo() 116 sourceInfo, in newSelectableTargetInfo() 141 @Nullable DisplayResolveInfo sourceInfo, in newSelectableTargetInfo() 153 sourceInfo, in newSelectableTargetInfo() 168 @Nullable DisplayResolveInfo sourceInfo, in SelectableTargetInfo() 180 mSourceInfo = sourceInfo; in SelectableTargetInfo() 204 mAllSourceIntents = getAllSourceIntents(sourceInfo, mBaseIntentToSend); in SelectableTargetInfo() 401 @Nullable DisplayResolveInfo sourceInfo, Intent fallbackSourceIntent) { in getAllSourceIntents() 403 if (sourceInfo != null) { in getAllSourceIntents() 404 results.addAll(sourceInfo.getAllSourceIntents()); in getAllSourceIntents() [all …]
|
/aosp_15_r20/tools/treble/hacksaw/workspace/ |
H A D | copier.go | 143 func (f FileCopier) CopyNode(sourceInfo os.FileInfo, codebaseDir, sourcePath, workspaceDir string) … 149 case sourceInfo.Mode()&os.ModeSymlink == os.ModeSymlink: 151 case sourceInfo.Mode().IsDir(): 152 return f.CopyDirOnly(sourceInfo, destPath) 154 return f.CopyFile(sourceInfo, sourcePath, destPath) 175 func (f FileCopier) CopyDirOnly(sourceInfo os.FileInfo, destPath string) error { 181 return os.Mkdir(destPath, sourceInfo.Mode()) 188 func (f FileCopier) CopyFile(sourceInfo os.FileInfo, sourcePath, destPath string) error { 211 return os.Chmod(destPath, sourceInfo.Mode()) 214 func (f FileCopier) CopyDirRecursive(sourceInfo os.FileInfo, sourcePath, destPath string) error { [all …]
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/cuda/ |
H A D | Indexing.cu | 896 selfInfo, sourceInfo, indexInfo, \ in index_add_cuda_impl() 906 selfInfo, sourceInfo, indexInfo, \ in index_add_cuda_impl() 928 auto sourceInfo = in index_add_cuda_impl() local 930 const int sourceAddDim = sourceInfo.collapseDims(dim); in index_add_cuda_impl() 931 sourceInfo.reduceDim(sourceAddDim); in index_add_cuda_impl() 940 if (selfInfo.dims == 1 && sourceInfo.dims == 1 && indContig) { in index_add_cuda_impl() 942 } else if (selfInfo.dims == 2 && sourceInfo.dims == 2 && indContig) { in index_add_cuda_impl() 944 } else if (selfInfo.dims == 3 && sourceInfo.dims == 3 && indContig) { in index_add_cuda_impl() 952 if (selfInfo.dims == 1 && sourceInfo.dims == 1 && indContig) { in index_add_cuda_impl() 954 } else if (selfInfo.dims == 2 && sourceInfo.dims == 2 && indContig) { in index_add_cuda_impl() [all …]
|
/aosp_15_r20/external/kotlinx.atomicfu/atomicfu-transformer/api/ |
H A D | atomicfu-transformer.api | 46 …al fun debug (Ljava/lang/String;Lkotlinx/atomicfu/transformer/AtomicFUTransformerBase$SourceInfo;)V 47 …java/lang/String;Lkotlinx/atomicfu/transformer/AtomicFUTransformerBase$SourceInfo;ILjava/lang/Obje… 49 …al fun error (Ljava/lang/String;Lkotlinx/atomicfu/transformer/AtomicFUTransformerBase$SourceInfo;)V 50 …java/lang/String;Lkotlinx/atomicfu/transformer/AtomicFUTransformerBase$SourceInfo;ILjava/lang/Obje… 56 …nal fun info (Ljava/lang/String;Lkotlinx/atomicfu/transformer/AtomicFUTransformerBase$SourceInfo;)V 57 …java/lang/String;Lkotlinx/atomicfu/transformer/AtomicFUTransformerBase$SourceInfo;ILjava/lang/Obje… 69 public final class kotlinx/atomicfu/transformer/AtomicFUTransformerBase$SourceInfo { 76 …Lorg/objectweb/asm/tree/InsnList;)Lkotlinx/atomicfu/transformer/AtomicFUTransformerBase$SourceInfo; 77 …SourceInfo;Lkotlinx/atomicfu/transformer/MethodId;Ljava/lang/String;Lorg/objectweb/asm/tree/Abstra…
|
/aosp_15_r20/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/v2/model/ |
H A D | InstallRepository.kt | 154 val sourceInfo: ApplicationInfo? = getSourceInfo(callingPackage) in <lambda>() constant 155 if (callingUid == Process.INVALID_UID && sourceInfo == null) { in <lambda>() 157 Log.e(LOG_TAG, "Cannot determine caller since UID is invalid and sourceInfo is null") in <lambda>() 187 "sourceInfo: $sourceInfo" in <lambda>() 204 isTrustedSource = isInstallRequestFromTrustedSource(sourceInfo, this.intent, callingUid) in <lambda>() 236 sourceInfo: ApplicationInfo?, in <lambda>() 240 val isPrivilegedAndKnown = sourceInfo != null && sourceInfo.isPrivilegedApp && in <lambda>() 700 val sourceInfo = packageManager.getInstallSourceInfo(packageName) in <lambda>() constant 701 sourceInfo.updateOwnerPackageName in <lambda>() 807 val sourceInfo = in <lambda>() constant [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/ProfileData/ |
H A D | GCOV.cpp | 63 struct SourceInfo { struct 69 SourceInfo(StringRef filename) : filename(filename) {} in SourceInfo() function 86 void collectSourceLine(SourceInfo &si, Summary *summary, LineInfo &line, 88 void collectSource(SourceInfo &si, Summary &summary) const; 89 void annotateSource(SourceInfo &si, const GCOVFile &file, StringRef gcno, 91 void printSourceToIntermediate(const SourceInfo &si, raw_ostream &os) const; 94 std::vector<SourceInfo> sources; 663 SourceInfo &si = sources[f.srcIdx]; in collectFunction() 688 void Context::collectSourceLine(SourceInfo &si, Summary *summary, in collectSourceLine() 737 void Context::collectSource(SourceInfo &si, Summary &summary) const { in collectSource() [all …]
|
/aosp_15_r20/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/sideloaded/ |
D | SideLoadedAppDetectorTest.java | 112 InstallSourceInfo sourceInfo = new InstallSourceInfo(SAFE_VENDOR, in isSafe_nonSystemApp_withSafeSource_returnsTrue() local 124 when(mPackageManager.getInstallSourceInfo(APP_PACKAGE_NAME)).thenReturn(sourceInfo); in isSafe_nonSystemApp_withSafeSource_returnsTrue() 131 InstallSourceInfo sourceInfo = new InstallSourceInfo(UNSAFE_VENDOR, in isSafe_nonSystemApp_withUnsafeSource_returnsFalse() local 143 when(mPackageManager.getInstallSourceInfo(APP_PACKAGE_NAME)).thenReturn(sourceInfo); in isSafe_nonSystemApp_withUnsafeSource_returnsFalse() 150 InstallSourceInfo sourceInfo = new InstallSourceInfo(null, in isSafe_nonSystemApp_withoutSource_returnsFalse() local 162 when(mPackageManager.getInstallSourceInfo(APP_PACKAGE_NAME)).thenReturn(sourceInfo); in isSafe_nonSystemApp_withoutSource_returnsFalse()
|
/aosp_15_r20/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/ |
H A D | InstallStart.java | 117 final ApplicationInfo sourceInfo = getSourceInfo(callingPackage); in onCreate() local 119 if (callingUid == Process.INVALID_UID && sourceInfo == null) { in onCreate() 120 Log.e(TAG, "Cannot determine caller since UID is invalid and sourceInfo is null"); in onCreate() 129 boolean isPrivilegedAndKnown = (sourceInfo != null && sourceInfo.isPrivilegedApp()) && in onCreate() 187 // set the originating UID and sourceInfo explicitly in onCreate() 191 nextActivity.putExtra(PackageInstallerActivity.EXTRA_ORIGINAL_SOURCE_INFO, sourceInfo); in onCreate()
|
/aosp_15_r20/bootable/deprecated-ota/updater/ |
H A D | commands.cpp | 79 const std::string& src_hash, SourceInfo* source, in ParseTargetInfoAndSourceInfo() 129 SourceInfo result(src_hash, src_ranges, {}, {}); in ParseTargetInfoAndSourceInfo() 167 SourceInfo result(src_hash, src_ranges, src_ranges_location, stashes); in ParseTargetInfoAndSourceInfo() 190 SourceInfo source_info; in Parse() 311 bool SourceInfo::Overlaps(const TargetInfo& target) const { in Overlaps() 330 bool SourceInfo::ReadAll( in ReadAll() 359 void SourceInfo::DumpBuffer(const std::vector<uint8_t>& buffer, size_t block_size) const { in DumpBuffer() 390 std::ostream& operator<<(std::ostream& os, const SourceInfo& source) { in operator <<()
|
/aosp_15_r20/external/clang/lib/CodeGen/ |
H A D | CoverageMappingGen.h | 54 CoverageSourceInfo &SourceInfo; variable 62 CoverageMappingModuleGen(CodeGenModule &CGM, CoverageSourceInfo &SourceInfo) in CoverageMappingModuleGen() argument 63 : CGM(CGM), SourceInfo(SourceInfo), FunctionRecordTy(nullptr) {} in CoverageMappingModuleGen() 66 return SourceInfo; in getSourceInfo()
|
/aosp_15_r20/frameworks/base/core/java/com/android/internal/app/chooser/ |
H A D | SelectableTargetInfo.java | 75 public SelectableTargetInfo(Context context, DisplayResolveInfo sourceInfo, in SelectableTargetInfo() argument 80 mSourceInfo = sourceInfo; in SelectableTargetInfo() 87 if (sourceInfo != null) { in SelectableTargetInfo() 88 final ResolveInfo ri = sourceInfo.getResolveInfo(); in SelectableTargetInfo() 101 if (sourceInfo != null) { in SelectableTargetInfo() 326 // We only queried the service for the first one in our sourceinfo. in getAllSourceIntents()
|
/aosp_15_r20/external/google-cloud-java/java-service-management/proto-google-cloud-service-management-v1/src/main/java/com/google/api/servicemanagement/v1/ |
H A D | GetServiceConfigRequest.java | 78 * Server response includes all fields except SourceInfo. 88 * Server response includes all fields including SourceInfo. 104 * Server response includes all fields except SourceInfo. 114 * Server response includes all fields including SourceInfo. 272 * `SourceInfo`. 297 * `SourceInfo`. 872 * `SourceInfo`. 896 * `SourceInfo`. 920 * `SourceInfo`. 943 * `SourceInfo`. [all …]
|
/aosp_15_r20/frameworks/base/core/java/android/app/ |
H A D | ActivityOptions.java | 442 /** See {@link SourceInfo}. */ 443 private static final String KEY_SOURCE_INFO = "android.activity.sourceInfo"; 571 private SourceInfo mSourceInfo; 1431 … mSourceInfo = opts.getParcelable(KEY_SOURCE_INFO, android.app.ActivityOptions.SourceInfo.class); in ActivityOptions() 2634 public @Nullable SourceInfo getSourceInfo() { in getSourceInfo() 2645 * @see SourceInfo 2648 public void setSourceInfo(@SourceInfo.SourceType int type, long uptimeMillis) { in setSourceInfo() 2649 mSourceInfo = new SourceInfo(type, uptimeMillis); in setSourceInfo() 2775 public static class SourceInfo implements Parcelable { class in ActivityOptions 2802 SourceInfo(@SourceType int srcType, long uptimeMillis) { in SourceInfo() method in ActivityOptions.SourceInfo [all …]
|
/aosp_15_r20/external/grpc-grpc/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/ |
H A D | syntax.upbdefs.h | 73 return upb_DefPool_FindMessageByName(s, "google.api.expr.v1alpha1.SourceInfo"); in google_api_expr_v1alpha1_SourceInfo_getmsgdef() 78 return upb_DefPool_FindMessageByName(s, "google.api.expr.v1alpha1.SourceInfo.PositionsEntry"); in google_api_expr_v1alpha1_SourceInfo_PositionsEntry_getmsgdef() 83 return upb_DefPool_FindMessageByName(s, "google.api.expr.v1alpha1.SourceInfo.MacroCallsEntry"); in google_api_expr_v1alpha1_SourceInfo_MacroCallsEntry_getmsgdef()
|