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

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue21879.go 16 // Used to erroneously print "main.call.name" instead of
18 println(caller().name())
35 func (c call) name() string { func
  /prebuilts/go/linux-x86/misc/cgo/test/
issue4339.h 4 char *name; member in struct:Issue4339
  /prebuilts/go/linux-x86/test/fixedbugs/
issue21879.go 16 // Used to erroneously print "main.call.name" instead of
18 println(caller().name())
35 func (c call) name() string { func
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
compquery.py 30 name = CriteriaDescriptor("name_regex") variable in class:ComponentQuery
34 """Match the object to the name criteria."""
35 if not self.name:
39 return self._match_regex(obj, self.name, self.name_regex)
  /system/libvintf/include/vintf/
Named.h 24 std::string name; member in struct:Named
28 Named(const std::string& n, const T& o) : name(n), object(o) {}
29 Named(std::string&& n, T&& o) : name(std::move(n)), object(std::move(o)) {}
  /system/sepolicy/tools/sepolicy-analyze/
booleans.c 11 const char *name = k; local
12 printf("%s\n", name);
  /toolchain/binutils/binutils-2.27/binutils/
arsup.h 22 char *name; member in struct:list
  /toolchain/binutils/binutils-2.27/libiberty/
putenv.c 25 @samp{name=value} the string is added; if no @samp{=} is present the
26 name is unset/removed.
68 /* Put STRING, which is of the form "NAME=VALUE", in the environment. */
76 char *name = (char *) alloca (name_end - string + 1); local
77 memcpy (name, string, name_end - string);
78 name[name_end - string] = '\0';
79 return setenv (name, name_end + 1, 1);
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
FlagTests.java 37 String name = flag.name(); local
38 assertEquals(name.toUpperCase(), name); local
  /bionic/libc/arch-x86_64/string/
sse2-strcat-slm.S 15 * Neither the name of Intel Corporation nor the names of its contributors
48 # define ENTRY(name) \
49 .type name, @function; \
50 .globl name; \
52 name: \ label
57 # define END(name) \
59 .size name, .-name
sse2-strcpy-slm.S 15 * Neither the name of Intel Corporation nor the names of its contributors
50 # define ENTRY(name) \
51 .type name, @function; \
52 .globl name; \
54 name: \ label
59 # define END(name) \
61 .size name, .-name
    [all...]
sse4-memcmp-slm.S 15 * Neither the name of Intel Corporation nor the names of its contributors
54 # define ENTRY(name) \
55 .type name, @function; \
56 .globl name; \
58 name: \ label
63 # define END(name) \
65 .size name, .-name
    [all...]
ssse3-strcmp-slm.S 15 * Neither the name of Intel Corporation nor the names of its contributors
63 # define ENTRY(name) \
64 .type name, @function; \
65 .globl name; \
67 name: \ label
72 # define END(name) \
74 .size name, .-name
    [all...]
  /bionic/libc/kernel/uapi/linux/
uleds.h 5 *** of the same name, to make information necessary for userspace to
23 char name[LED_MAX_NAME_SIZE]; member in struct:uleds_user_dev
  /bionic/libc/upstream-netbsd/lib/libc/regex/
cclass.h 18 * 3. Neither the name of the University nor the names of its contributors
55 * 4. Neither the name of the University nor the names of its contributors
76 const char *name; member in struct:cclass
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 11 const char *name; member in struct:cclass
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
tempnam.c 14 * 3. Neither the name of the University nor the names of its contributors
46 char *f, *name; local
48 if (!(name = malloc(PATH_MAX)))
55 len = snprintf(name, PATH_MAX, "%s%s%sXXXXXXXXXX", f,
61 if ((f = _mktemp(name)))
67 len = snprintf(name, PATH_MAX, "%s%s%sXXXXXXXXXX", f,
73 if ((f = _mktemp(name)))
78 len = snprintf(name, PATH_MAX, "%s%sXXXXXXXXX", f, pfx);
83 if ((f = _mktemp(name)))
87 len = snprintf(name, PATH_MAX, "%s%sXXXXXXXXX", f, pfx)
    [all...]
  /cts/tests/tests/os/jni/
android_os_cts_HardwareName.cpp 23 char name[PROP_VALUE_MAX]; local
25 if (__system_property_get("ro.boot.hardware", name) <= 0) {
29 return env->NewStringUTF(name);
  /dalvik/dx/tests/108-string-annotation/
Frotz.class 
  /device/generic/goldfish-opengl/system/egl/
egl_ftable.h 17 const char *name; member in struct:_egl_funcs_by_name
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
egl_ftable.h 17 const char *name; member in struct:_egl_funcs_by_name
gles_ftable.h 17 const char *name; member in struct:_gles_funcs_by_name
  /device/linaro/bootloader/arm-trusted-firmware/drivers/partition/
gpt.c 16 uint8_t *name = (uint8_t *)str_in; local
19 assert((str_in != NULL) && (str_out != NULL) && (name[0] != '\0'));
23 if (name[i] != '\0')
28 str_out[i >> 1] = name[i];
29 if (name[i] == '\0')
46 result = unicode_to_ascii(gpt_entry->name, (uint8_t *)entry->name);
  /external/annotation-tools/annotation-file-utilities/tests/
Package.java 1 package pkg.name.here;
  /external/autotest/client/cros/cellular/mbim_compliance/sequences/
sequence.py 23 logging.info('---- Sequence (%s) begin ----', self.name())
25 logging.info('---- Sequence (%s) end ----', self.name())
37 def name(self): member in class:Sequence
38 """ Return str name. """

Completed in 2934 milliseconds

1 2 34 5 6 7 8 91011>>