Searched refs:name (Results 401 - 425 of 3167) sorted by relevance

<<11121314151617181920>>

/frameworks/base/tests/UiBench/src/com/android/test/uibench/
H A DActivityTransitionDetails.java47 String name = getIntent().getStringExtra(KEY_ID);
48 if (name != null) {
49 mName = name;
50 mImageResourceId = ActivityTransition.getDrawableIdForKey(name);
/frameworks/base/tools/aapt2/cmd/
H A DUtil_test.cpp32 EXPECT_EQ(root->name, "manifest");
/frameworks/base/tools/aapt2/link/
H A DNoDefaultResourceRemover.cpp63 const ResourceName name(pkg->name, type->type, (*iter)->name);
65 diag->Warn(DiagMessage() << "removing resource " << name
/frameworks/base/tools/aapt2/test/
H A DBuilders.h42 ResourceTableBuilder& AddSimple(const android::StringPiece& name, const ResourceId& id = {});
43 ResourceTableBuilder& AddSimple(const android::StringPiece& name, const ConfigDescription& config,
45 ResourceTableBuilder& AddReference(const android::StringPiece& name,
47 ResourceTableBuilder& AddReference(const android::StringPiece& name, const ResourceId& id,
49 ResourceTableBuilder& AddString(const android::StringPiece& name,
51 ResourceTableBuilder& AddString(const android::StringPiece& name, const ResourceId& id,
53 ResourceTableBuilder& AddString(const android::StringPiece& name, const ResourceId& id,
55 ResourceTableBuilder& AddFileReference(const android::StringPiece& name,
58 ResourceTableBuilder& AddFileReference(const android::StringPiece& name, const ResourceId& id,
61 ResourceTableBuilder& AddFileReference(const android::StringPiece& name,
[all...]
/frameworks/base/tools/aapt2/xml/
H A DXmlActionExecutor.h56 // name `name`.
57 XmlNodeAction& operator[](const std::string& name) { argument
58 return map_[name];
81 // name `name`.
82 XmlNodeAction& operator[](const std::string& name) { argument
83 return map_[name];
/frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
H A Dfile_wrapper_output.h30 explicit FileWrapperOutput(const char* name);
38 // The name of the file
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/ext/
H A Dext.kt54 if (name.startsWith('[')) {
55 val numArray = name.lastIndexOf('[') + 1;
57 when (name[numArray]) {
61 'L' -> componentType = name.substring(numArray + 1, name.length - 1).replace('$', '.');
67 else -> componentType = name.substring(numArray)
69 val arrayComp = name.substring(0, numArray).replace("[", "[]");
72 return name.replace("$", ".")
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContentResolver.java42 public IContentProvider acquireProvider(Context c, String name) { argument
51 public IContentProvider acquireExistingProvider(Context c, String name) { argument
66 protected IContentProvider acquireUnstableProvider(Context c, String name) { argument
67 return acquireProvider(c, name);
/frameworks/ml/nn/common/include/
H A DGraphDump.h47 void graphDump(const char* name, const ::android::hardware::neuralnetworks::V1_1::Model& model,
/frameworks/native/cmds/flatland/
H A DGLHelper.h32 const char* name; member in struct:android::ShaderDesc
55 GLuint* name);
64 bool getShaderProgram(const char* name, GLuint* outPgm);
70 bool createNamedSurfaceTexture(GLuint name, uint32_t w, uint32_t h,
/frameworks/native/include/input/
H A DKeyboard.h71 bool probeKeyMap(const InputDeviceIdentifier& deviceIdentifier, const String8& name);
72 status_t loadKeyLayout(const InputDeviceIdentifier& deviceIdentifier, const String8& name);
74 const String8& name);
76 const String8& name, InputDeviceConfigurationFileType type);
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dtrace.h45 ScopedTrace(uint64_t tag, bool enabled, const char* name) argument
48 atrace_begin(tag_, name);
77 #define PDX_TRACE_NAME(name) \
79 ATRACE_TAG, PDX_LIB_TRACE_ENABLED, name \
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioCodec.h25 const char *name; member in class:AudioCodec
/frameworks/opt/setupwizard/tools/gradle/
H A Ddist-library-instrumentation-tests.gradle7 * 2. It dist the test APKs using the original output file name instead of hard coding
25 dist.file output.outputFile.canonicalPath, output.outputFile.name
31 dist.file output.outputFile.canonicalPath, output.outputFile.name
/frameworks/rs/rsov/compiler/spirit/
H A Dbuilder.h31 const char *name);
/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DBlasTestList.java43 private final String name; field in class:BlasTestList.TestName
47 name = s;
51 name = s;
55 // return quoted string as displayed test name
57 return name;
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DLayoutInflaterFactory.java39 * @param name Tag name to be inflated.
46 View onCreateView(View parent, String name, Context context, AttributeSet attrs); argument
/frameworks/support/persistence/db-framework/src/main/java/androidx/sqlite/db/framework/
H A DFrameworkSQLiteOpenHelperFactory.java30 configuration.context, configuration.name, configuration.callback);
/frameworks/support/room/common/src/main/java/androidx/room/
H A DIndex.java59 * prefixed by "index_${tableName}". So if you have a table with name "Foo" and with an index
60 * of {"bar", "baz"}, generated index name will be "index_Foo_bar_baz". If you need to specify
61 * the index in a query, you should never rely on this name, instead, specify a name for your
64 * @return The name of the index.
66 String name() default "";
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/
H A DFieldSetter.kt23 data class FieldSetter(val name: String, val type: TypeMirror, val callType: CallType) {
31 builder.addStatement(stmt, ownerVar, name, inVar)
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
H A DUserIdAndPetNames.java25 * Same as Pet class but only keeps name and user id
28 @ColumnInfo(name = "mId")
/frameworks/support/room/runtime/src/main/java/androidx/room/
H A DDatabaseConfiguration.java45 * The name of the database file or null if it is an in-memory database.
48 public final String name; field in class:DatabaseConfiguration
83 * @param name Name of the database, can be null if it is in memory.
97 public DatabaseConfiguration(@NonNull Context context, @Nullable String name, argument
107 this.name = name;
/frameworks/base/core/java/com/android/internal/app/
H A DIBatteryStats.aidl67 void noteEvent(int code, String name, int uid);
69 void noteSyncStart(String name, int uid);
70 void noteSyncFinish(String name, int uid);
71 void noteJobStart(String name, int uid);
72 void noteJobFinish(String name, int uid, int stopReason);
74 void noteStartWakelock(int uid, int pid, String name, String historyName,
76 void noteStopWakelock(int uid, int pid, String name, String historyName, int type);
78 void noteStartWakelockFromSource(in WorkSource ws, int pid, String name, String historyName,
80 void noteChangeWakelockFromSource(in WorkSource ws, int pid, String name, String histyoryName,
83 void noteStopWakelockFromSource(in WorkSource ws, int pid, String name, Strin
[all...]
/frameworks/native/services/vr/performanced/
H A Dcpu_set.h26 std::string name() const { return name_; } function in class:android::dvr::CpuSet
39 CpuSet(CpuSet* parent, const std::string& name, base::unique_fd&& cpuset_fd);
43 base::unique_fd OpenPropertyFile(const std::string& name) const;
44 UniqueFile OpenPropertyFilePointer(const std::string& name) const;
46 base::unique_fd OpenFile(const std::string& name, int flags = O_RDONLY) const;
47 UniqueFile OpenFilePointer(const std::string& name,
95 const std::string& name, CpuSet* parent);
/frameworks/native/vulkan/libvulkan/
H A Dstubhal.cpp109 const char* name) {
110 if (strcmp(name, "vkCreateInstance") == 0)
112 if (strcmp(name, "vkDestroyInstance") == 0)
114 if (strcmp(name, "vkEnumerateInstanceExtensionProperties") == 0)
117 if (strcmp(name, "vkEnumeratePhysicalDevices") == 0)
119 if (strcmp(name, "vkEnumeratePhysicalDeviceGroups") == 0)
122 if (strcmp(name, "vkGetInstanceProcAddr") == 0)
108 GetInstanceProcAddr(VkInstance instance, const char* name) argument

Completed in 1110 milliseconds

<<11121314151617181920>>