HomeSort by relevance Sort by last modified time
    Searched defs:name (Results 826 - 850 of 12087) sorted by null

<<31323334353637383940>>

  /external/proguard/src/proguard/obfuscate/
MemberNameCollector.java 50 * [new name - old name] maps.
66 String name = member.getName(clazz); local
67 if (ClassUtil.isInitializer(name))
72 // Get the member's new name.
89 // Put the [descriptor - new name] in the map,
90 // creating a new [new name - old name] map if necessary.
93 // Isn't there another original name for this new name, or shoul
    [all...]
  /external/protobuf/gtest/src/
gtest-typed-test.cc 14 // * Neither the name of Google Inc. nor the names of its
64 const String name = GetPrefixUntilComma(names); local
65 if (tests.count(name) != 0) {
66 errors << "Test " << name << " is listed more than once.\n"; local
74 if (name == *it) {
81 tests.insert(name);
83 errors << "No test named " << name local
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_extension.cc 15 // * Neither the name of Google Inc. nor the names of its
49 // Returns the fully-qualified class name of the message that this field
99 vars["name" ] = descriptor_->name();
120 " $name$;\n"
129 string name = scope + descriptor_->name(); local
134 vars["name" ] = name;
145 // replace :: with _ in the name and declare it as a global
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
zip_writer.h 15 // * Neither the name of Google Inc. nor the names of its
45 // * Neither the name of Google Inc. nor the names of its
81 string name; member in struct:google::protobuf::compiler::ZipWriter::FileInfo
  /external/regex-re2/re2/
unicode_groups.h 39 const char *name; member in struct:re2::UGroup
47 // Named by property or script name (e.g., "Nd", "N", "Han").
52 // Named by POSIX name (e.g., "[:alpha:]", "[:^lower:]").
57 // Named by Perl name (e.g., "\\d", "\\D").
  /external/regex-re2/util/
benchmark.h 10 const char* name; member in struct:testing::Benchmark
19 Benchmark(const char* name, void (*f)(int)) { Clear(name); fn = f; Register(); }
20 Benchmark(const char* name, void (*f)(int, int), int l, int h) { Clear(name); fnr = f; lo = l; hi = h; Register(); }
21 void Clear(const char* n) { name = n; fn = 0; fnr = 0; lo = 0; hi = 0; threadlo = 0; threadhi = 0; }
  /external/replicaisland/src/com/replica/replicaisland/
Texture.java 23 * name itself, as it may change at any time.
27 public int name; field in class:Texture
39 name = -1;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
XTagXmlResourceLoader.java 47 String name = node.getAttributes().getNamedItem( "name" ).getNodeValue(); local
48 processNode( node, name, isSystem );
54 * Convert file name to resource name.
58 * @return Resource name
69 protected abstract void processNode( Node node, String name, boolean isSystem );
XpathResourceXmlLoader.java 26 String name = node.getAttributes().getNamedItem("name").getNodeValue(); local
27 processNode(node, name, isSystem);
31 protected abstract void processNode(Node node, String name, boolean isSystem) throws XPathExpressionException;
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
ShadowFoo.java 13 String name; field in class:ShadowFoo
21 public void __constructor__(String name) {
22 super.__constructor__(name);
23 this.name = name;
29 return name;
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TestService.java 10 ComponentName name; field in class:TestService
20 public void onServiceConnected(ComponentName name, IBinder service) {
21 this.name = name;
26 public void onServiceDisconnected(ComponentName name) {
27 nameUnbound = name;
  /external/selinux/libsemanage/src/
booleans_file.c 27 const char *name = semanage_bool_get_name(boolean); local
30 if (fprintf(str, "%s=%d\n", name, value) < 0) {
31 ERR(handle, "could not print boolean %s to stream", name);
50 /* Extract name */
interfaces_file.c 28 const char *name = semanage_iface_get_name(iface); local
32 if (fprintf(str, "netifcon %s ", name) < 0)
52 ERR(handle, "could not print interface %s to stream", name);
75 /* Name */
modules.h 32 char *module_data, size_t data_len, const char *name, const char *ext_lang);
45 char *name; /* key, module name */ member in struct:semanage_module_info
73 int semanage_module_validate_name(const char *name);
81 char *name; /* module name */ member in struct:semanage_module_key
seusers_file.c 26 const char *name = semanage_seuser_get_name(seuser); local
30 if (fprintf(str, "%s:%s", name, sename) < 0)
40 ERR(handle, "could not print seuser %s to stream", name);
55 /* Extract name */
users_extra_file.c 27 const char *name = semanage_user_extra_get_name(user_extra); local
30 if (fprintf(str, "user %s prefix %s;\n", name, prefix) < 0)
37 "for %s to stream", name);
59 /* Extract name */
  /external/selinux/libsepol/src/
boolean_record.c 9 /* This boolean's name */
10 char *name; member in struct:sepol_bool
17 /* This boolean's name */
18 const char *name; member in struct:sepol_bool_key
22 const char *name, sepol_bool_key_t ** key_ptr)
33 tmp_key->name = name;
41 void sepol_bool_key_unpack(const sepol_bool_key_t * key, const char **name)
44 *name = key->name;
    [all...]
  /external/sfntly/cpp/src/sample/subtly/
stats.cc 47 char *name = TagToString(it->first); local
49 fprintf(out, "-- %s: %d (%lf%%) ", name, size,
51 delete[] name;
75 char *name = TagToString(it->first); local
77 fprintf(out, "-- %s: %d (%lf%%)\n", name, size,
79 delete[] name;
  /external/skia/bench/
BlurRectsBench.cpp 28 void setName(const SkString& name) {
29 fName = name;
68 SkString name; local
  /external/skia/tools/VisualBench/
VisualBenchmarkStream.cpp 25 "[~][^]substring[$] [...] of bench name to run.\n"
183 SkString name = SkOSPath::Basename(path.c_str()); local
186 return new VisualSKPBench(name.c_str(), pic.get());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
ParameterIterator.java 15 * * Neither the name of Google Inc. nor the names of its
65 @Nullable final String name; local
74 name = parameterNames.next();
76 name = null;
81 @Nullable @Override public String getName() { return name; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableAnnotationElement.java 15 * * Neither the name of Google Inc. nor the names of its
46 @Nonnull protected final String name; field in class:ImmutableAnnotationElement
49 public ImmutableAnnotationElement(@Nonnull String name,
51 this.name = name;
55 public ImmutableAnnotationElement(@Nonnull String name,
57 this.name = name;
70 @Nonnull @Override public String getName() { return name; }
ImmutableMethodParameter.java 15 * * Neither the name of Google Inc. nor the names of its
49 @Nullable protected final String name; field in class:ImmutableMethodParameter
53 @Nullable String name) {
56 this.name = name;
61 @Nullable String name) {
64 this.name = name;
79 @Nullable @Override public String getName() { return name; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
ImmutableEndLocal.java 15 * * Neither the name of Google Inc. nor the names of its
42 @Nullable protected final String name; field in class:ImmutableEndLocal
50 this.name = null;
57 @Nullable String name,
62 this.name = name;
81 @Nullable @Override public String getName() { return name; }
ImmutableRestartLocal.java 15 * * Neither the name of Google Inc. nor the names of its
42 @Nullable protected final String name; field in class:ImmutableRestartLocal
50 this.name = null;
57 @Nullable String name,
62 this.name = name;
81 @Nullable @Override public String getName() { return name; }

Completed in 1046 milliseconds

<<31323334353637383940>>