HomeSort by relevance Sort by last modified time
    Searched defs:name (Results 276 - 300 of 13238) sorted by null

<<11121314151617181920>>

  /test/vti/test_serving/gae/webapp/src/endpoint/
build_info.py 30 @endpoints.api(name="build_info", version="v1")
39 name="set") variable in class:BuildInfoApi
lab_info.py 32 @endpoints.api(name='lab_info', version='v1')
41 name="clear") variable in class:LabInfoApi
56 name="set")
61 lab.name = request.name
  /toolchain/binutils/binutils-2.27/gprof/
utils.c 13 * 3. Neither the name of the University nor the names of its contributors
40 * Print name of symbol. Return number of characters printed.
45 const char *name = self->name; local
51 if (name)
55 demangled = bfd_demangle (core_bfd, name, DMGL_ANSI | DMGL_PARAMS);
57 name = demangled;
59 printf ("%s", name);
60 size = strlen (name);
63 filename = self->file->name;
    [all...]
  /toolchain/binutils/binutils-2.27/include/vms/
esrf.h 31 unsigned char name[31]; member in struct:vms_esrf
  /toolchain/binutils/binutils-2.27/ld/
ldfile.h 35 /* Name of directory. */
36 const char *name; member in struct:search_dirs
48 (const char *name);
50 (const char *name);
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
LimitTest.java 46 limit.setValue(CounterValue.TOTALCOUNT.name());
56 limit.setValue(CounterValue.MISSEDCOUNT.name());
66 limit.setValue(CounterValue.COVEREDCOUNT.name());
76 limit.setValue(CounterValue.MISSEDRATIO.name());
90 limit.setValue(CounterValue.COVEREDRATIO.name());
104 limit.setValue(CounterValue.TOTALCOUNT.name());
105 limit.setCounter(CounterEntity.INSTRUCTION.name());
115 limit.setValue(CounterValue.TOTALCOUNT.name());
116 limit.setCounter(CounterEntity.BRANCH.name());
125 limit.setValue(CounterValue.TOTALCOUNT.name());
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/name/
DeviceNameSetCustomFragment.java 17 package com.android.tv.settings.name;
34 import com.android.tv.settings.name.setup.DeviceNameFlowStartActivity;
40 * Fragment responsible for adding new device name.
100 final CharSequence name = action.getEditTitle(); local
101 if (TextUtils.isGraphic(name)) {
102 DeviceManager.setDeviceName(getActivity(), name.toString());
  /art/test/667-jit-jni-stub/
jit_jni_stub_test.cc 43 std::string name = soa.Decode<mirror::String>(methodName)->ToModifiedUtf8(); local
44 jmethodID method = env->GetStaticMethodID(klass, name.c_str(), "()V");
45 CHECK(method != nullptr) << soa.Decode<mirror::Class>(klass)->PrettyDescriptor() << "." << name;
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
FieldValue.java 24 * The name of the field.
26 public final String name; field in class:FieldValue
41 * @param name name of the field
45 public FieldValue(String name, Type type, Value value) {
46 this.name = name;
  /bionic/libc/arch-x86/atom/string/
sse2-wcschr-atom.S 15 * Neither the name of Intel Corporation nor the names of its contributors
56 # define ENTRY(name) \
57 .type name, @function; \
58 .globl name; \
60 name: \ label
65 # define END(name) \
67 .size name, .-name
ssse3-memcpy-atom.S 15 * Neither the name of Intel Corporation nor the names of its contributors
62 # define ENTRY(name) \
63 .type name, @function; \
64 .globl name; \
66 name: \ label
71 # define END(name) \
73 .size name, .-name
    [all...]
  /bionic/libc/arch-x86/silvermont/string/
sse2-strcpy-slm.S 15 * Neither the name of Intel Corporation nor the names of its contributors
56 # define ENTRY(name) \
57 .type name, @function; \
58 .globl name; \
60 name: \ label
65 # define END(name) \
67 .size name, .-name
    [all...]
  /bionic/libc/arch-x86_64/string/
sse2-memcpy-slm.S 15 * Neither the name of Intel Corporation nor the names of its contributors
62 # define ENTRY(name) \
63 .type name, @function; \
64 .globl name; \
66 name: \ label
71 # define END(name) \
73 .size name, .-name
sse2-memmove-slm.S 15 * Neither the name of Intel Corporation nor the names of its contributors
62 # define ENTRY(name) \
63 .type name, @function; \
64 .globl name; \
66 name: \ label
71 # define END(name) \
73 .size name, .-name
  /bionic/libc/bionic/
malloc_info.cpp 24 // name must be valid throughout lifetime of the object.
25 explicit Elem(FILE* fp, const char* name,
28 this->name = name;
30 fprintf(fp, "<%s", name);
42 fprintf(fp, "</%s>", name);
54 const char* name; member in class:Elem
  /bionic/libc/include/
getopt.h 48 /* name of long option */
49 const char *name; member in struct:option
  /bionic/libc/kernel/uapi/linux/
reiserfs_xattr.h 5 *** of the same name, to make information necessary for userspace to
28 const char * name; member in struct:reiserfs_security_handle
  /bionic/tests/
net_if_test.cpp 30 char* name = if_indextoname(index, buf); local
31 ASSERT_STREQ("lo", name);
  /cts/apps/CameraITS/
Android.mk 16 its-dir-name := CameraITS
17 its-dir := $(HOST_OUT)/$(its-dir-name)
29 $(ACP) -rfp cts/apps/$(its-dir-name)/* $(its-dir)
  /cts/suite/audio_quality/lib/src/task/
TaskBatch.cpp 22 static const android::String8 STR_NAME("name");
55 android::String8 name; local
58 if (!findStringAttribute(STR_NAME, name) || !findStringAttribute(STR_VERSION, version)) {
59 LOGW("TaskBatch::run no name or version information");
61 MSG("= Test batch %s version %s started. =", name.string(),
  /cts/tests/tests/os/src/android/os/cts/
HardwareNameTest.java 30 String name = HardwareName.getName(); local
31 assertNotNull("androidboot.hardware must be passed on the kernel command line", name);
  /cts/tests/tests/view/src/android/view/cts/
SurfaceHolder_BadSurfaceTypeExceptionTest.java 48 String name = "SurfaceHolder_BadSurfaceTypeExceptionTest"; local
52 ne = new BadSurfaceTypeException(name);
  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseAttribute.java 23 * the attribute name but leaves the rest up to subclasses.
26 /** {@code non-null;} attribute name */
27 private final String name; field in class:BaseAttribute
32 * @param name {@code non-null;} attribute name
34 public BaseAttribute(String name) {
35 if (name == null) {
36 throw new NullPointerException("name == null");
39 this.name = name;
    [all...]
  /developers/build/prebuilts/gradle/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/
OpenGLWatchFaceConfigActivity.java 37 ComponentName name = local
40 label.setText(label.getText() + " (" + name.getClassName() + ")");
  /developers/samples/android/wearable/wear/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/
OpenGLWatchFaceConfigActivity.java 37 ComponentName name = local
40 label.setText(label.getText() + " (" + name.getClassName() + ")");

Completed in 489 milliseconds

<<11121314151617181920>>