Searched refs:name (Results 101 - 125 of 8214) sorted by relevance

1234567891011>>

/external/oprofile/libutil/
H A Dop_file.c78 inline static int is_dot_or_dotdot(char const * name) argument
80 return name[0] == '.' &&
81 (name[1] == '\0' ||
82 (name[1] == '.' && name[2] == '\0'));
93 char * name; local
95 name = xmalloc(name_len);
96 sprintf(name, "%s/%s", basedir, ent->d_name);
97 if (stat(name, st_buf) != 0)
101 if (lstat(name,
137 char * name = NULL; local
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DSoftLinking.h13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
83 #define SOFT_LINK_POINTER(framework, name, type) \
84 static type init##name(); \
85 static type (*get##name)() = init##name; \
86 static type pointer##name; \
88 static type name##Function() \
90 return pointer##name; \
93 static type init##name() \
95 void** pointer = static_cast<void**>(dlsym(framework##Library(), #name)); \
[all...]
/external/webkit/Tools/TestResultServer/model/
H A Ddashboardfile.py13 # * Neither the name of Google Inc. nor the names of its
41 name = db.StringProperty() variable in class:DashboardFile
46 def get_files(cls, name, limit=1):
48 if name:
49 query = query.filter("name =", name)
53 def add_file(cls, name, data):
55 file.name = name
59 logging.debug("Dashboard file saved, name
[all...]
/external/kernel-headers/original/linux/
H A Dmoduleparam.h9 module name. */
19 #define __MODULE_INFO(tag, name, info) \
20 static const char __module_cat(name,__LINE__)[] \
24 #define __MODULE_INFO(tag, name, info)
26 #define __MODULE_PARM_TYPE(name, _type) \
27 __MODULE_INFO(parmtype, name##type, #name ":" _type)
37 const char *name; member in struct:kernel_param
65 #define __module_param_call(prefix, name, set, get, arg, perm) \
66 static char __param_str_##name[]
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetKey.java16 * * Neither the name of 'jMonkeyEngine' nor the names of its contributors
46 protected String name; field in class:AssetKey
50 public AssetKey(String name){ argument
51 this.name = reducePath(name);
52 this.extension = getExtension(this.name);
58 protected static String getExtension(String name){ argument
59 int idx = name.lastIndexOf('.');
61 if (name.toLowerCase().endsWith(".xml")) {
62 idx = name
73 getFolder(String name) argument
[all...]
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_config.h52 int btif_config_exist(const char* section, const char* key, const char* name);
53 int btif_config_get_int(const char* section, const char* key, const char* name, int* value);
54 int btif_config_set_int(const char* section, const char* key, const char* name, int value);
55 int btif_config_get_str(const char* section, const char* key, const char* name, char* value, int* bytes);
56 int btif_config_set_str(const char* section, const char* key, const char* name, const char* value);
58 int btif_config_get(const char* section, const char* key, const char* name, char* value, int* bytes, int* type);
59 int btif_config_set(const char* section, const char* key, const char* name, const char* value, int bytes, int type);
61 int btif_config_remove(const char* section, const char* key, const char* name);
66 typedef void (*btif_config_enum_callback)(void* user_data, const char* section, const char* key, const char* name,
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstNat.java26 * {@code non-null;} the instance for name {@code TYPE} and descriptor
34 /** {@code non-null;} the name */
35 private final CstString name; field in class:CstNat
43 * @param name {@code non-null;} the name
46 public CstNat(CstString name, CstString descriptor) { argument
47 if (name == null) {
48 throw new NullPointerException("name == null");
55 this.name = name;
[all...]
/external/chromium/base/metrics/
H A Dstats_counters.h21 // Since StatsCounters can be created dynamically by name, there is
38 // a name (stored in the table metadata).
49 #define STATS_COUNTER(name, delta) do { \
50 base::StatsCounter counter(name); \
54 #define SIMPLE_STATS_COUNTER(name) STATS_COUNTER(name, 1)
56 #define RATE_COUNTER(name, duration) do { \
57 base::StatsRate hit_count(name); \
64 #define DSTATS_COUNTER(name, delta) STATS_COUNTER(name, delt
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_metrics_module.cc19 // Build the full name of a metrics for the given extension. Each metric
20 // is made up of the unique name within the extension followed by the
23 std::string BuildMetricName(const std::string& name, argument
25 std::string full_name(name);
56 std::string name; local
57 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &name));
59 name = BuildMetricName(name, GetExtension());
60 UserMetrics::RecordComputedAction(name, profile());
64 bool MetricsHistogramHelperFunction::GetNameAndSample(std::string* name, argument
71 RecordValue(const std::string& name, Histogram::ClassType type, int min, int max, size_t buckets, int sample) argument
105 std::string name; local
122 std::string name; local
129 std::string name; local
136 std::string name; local
143 std::string name; local
150 std::string name; local
158 std::string name; local
166 std::string name; local
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DRule.java14 3. The name of the author may not be used to endorse or promote products
42 private String name; field in class:Rule
44 public Rule(String name) { argument
45 this.name = name;
48 public String getName() { return name; }
56 return this.name;
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DIdentityStub.java46 * @param name
48 public IdentityStub(String name) { argument
49 super(name);
55 * @param name
59 public IdentityStub(String name, IdentityScope scope) argument
61 super(name, scope);
66 * @param name
71 public IdentityStub(String name, PublicKey key) throws KeyManagementException{ argument
72 this(name);
H A DMyBasicPermission.java26 public MyBasicPermission(String name) { argument
27 super(name);
/external/bison/lib/
H A Dbasename.c1 /* basename.c -- return the last element in a file name
31 Return the address of the last file name component of NAME. If
32 NAME has no file name components because it is all slashes, return
36 base_name (char const *name) argument
38 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name);
49 /* If the file name ends in slash, use the trailing slash as
71 base_len (char const *name) argument
75 for (len = strlen (name); 1 < len && ISSLASH (name[le
[all...]
/external/embunit/inc/
H A DTestCaller.h28 * Except as contained in this notice, the name of a copyright holder
42 char *name; member in struct:__TestFixture
46 #define new_TestFixture(name,test)\
48 name,\
57 char *name; member in struct:__TestCaller
66 #define new_TestCaller(name,sup,tdw,numberOfFixtuers,fixtuers)\
69 name,\
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DDataContext.java46 * @param name the name of the local variable to fetch or create.
49 void createLocalVariableByValue(String name, String value); argument
56 * @param name the name of the local variable to fetch or create.
63 void createLocalVariableByValue(String name, String value, EscapeMode mode); argument
71 * @param name the name of the local variable to fetch or create.
78 void createLocalVariableByValue(String name, String value, boolean isFirst, boolean isLast); argument
86 * @param name th
89 createLocalVariableByPath(String name, String path) argument
106 findVariable(String name, boolean create) argument
115 findVariableEscapeMode(String name) argument
[all...]
/external/proguard/src/proguard/classfile/visitor/
H A DNamedFieldVisitor.java28 * a name and descriptor pair.
34 private final String name; field in class:NamedFieldVisitor
39 public NamedFieldVisitor(String name, argument
43 this.name = name;
53 programClass.fieldAccept(name, descriptor, memberVisitor);
59 libraryClass.fieldAccept(name, descriptor, memberVisitor);
H A DNamedMethodVisitor.java28 * a name and descriptor pair.
34 private final String name; field in class:NamedMethodVisitor
39 public NamedMethodVisitor(String name, argument
43 this.name = name;
53 programClass.methodAccept(name, descriptor, memberVisitor);
59 libraryClass.methodAccept(name, descriptor, memberVisitor);
/external/proguard/src/proguard/io/
H A DRenamedDataEntry.java26 * This DataEntry wraps another data entry, returning a different name instead
27 * of the wrapped data entry's name.
34 private final String name; field in class:RenamedDataEntry
38 String name)
41 this.name = name;
49 return name;
81 return name + " == " + dataEntry;
37 RenamedDataEntry(DataEntry dataEntry, String name) argument
/external/protobuf/src/google/protobuf/testing/
H A Dfile.h15 // * Neither the name of Google Inc. nor the names of its
49 static bool Exists(const string& name);
53 static bool ReadFileToString(const string& name, string* output);
56 static void ReadFileToStringOrDie(const string& name, string* output);
60 const string& name);
63 static bool CreateDir(const string& name, int mode);
68 // If "name" is a file, we delete it. If it is a directory, we
73 static void DeleteRecursively(const string& name,
/external/webkit/Source/WebCore/html/
H A DDOMFormData.cpp14 * * Neither the name of Google Inc. nor the names of its
60 void DOMFormData::append(const String& name, const String& value) argument
62 if (!name.isEmpty())
63 appendData(name, value);
66 void DOMFormData::append(const String& name, Blob* blob) argument
68 if (!name.isEmpty())
69 appendBlob(name, blob);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Dplugin.properties21 javaLineBreakpoint.name=Java Line Breakpoints
22 javaClassLoadBreakpoint.name=Java Class Load Breakpoints
23 javaExceptionBreakpoint.name=Java Exception Breakpoints
24 javaWatchpoint.name=Java Watchpoints
25 javaMethodBreakpoint.name=Java Method Breakpoints
30 JavaBreakpoint.name = Java Breakpoint
31 JavaClassLoadBreakpoint.name = Java Class Load Breakpoint
32 CommonJavaLineBreakpoint.name = Common Java Line Breakpoint
33 JavaLineBreakpoint.name = Java Line Breakpoint
34 JavaPatternBreakpoint.name
[all...]
/external/icu4c/test/intltest/
H A Ditmajor.cpp42 name = #suite; \
50 void MajorTestLevel::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
53 case 0: name = "utility";
61 case 1: name = "normalize";
71 case 2: name = "collate";
81 case 3: name = "regex";
91 case 4: name = "format";
101 case 5: name = "translit";
111 case 6: name = "rbbi";
120 case 7: name
214 runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
[all...]
/external/chromium/chrome/common/
H A Dmulti_process_lock_unittest.cc22 ScopedEnvironmentVariable(const std::string &name, argument
24 : name_(name), environment_(base::Environment::Create()) {
38 void ExpectLockIsLocked(const std::string &name);
39 void ExpectLockIsUnlocked(const std::string &name);
51 void MultiProcessLockTest::ExpectLockIsLocked(const std::string &name) { argument
52 ScopedEnvironmentVariable var(kLockEnviromentVarName, name);
61 const std::string &name) {
62 ScopedEnvironmentVariable var(kLockEnviromentVarName, name);
73 std::string name = GenerateLockName(); local
74 scoped_ptr<MultiProcessLock> scoped(MultiProcessLock::Create(name));
60 ExpectLockIsUnlocked( const std::string &name) argument
92 std::string name = GenerateLockName(); local
101 std::string name = GenerateLockName(); local
120 std::string name = GenerateLockName(); local
130 std::string name; local
149 std::string name; local
[all...]
/external/apache-http/src/org/apache/http/
H A DHttpMessage.java57 * @param name the header name to check for.
58 * @return true if at least one header with this name is present.
60 boolean containsHeader(String name); argument
63 * Returns all the headers with a specified name of this message. Header values
67 * @param name the name of the headers to return.
68 * @return the headers whose name property equals <code>name</code>.
70 Header[] getHeaders(String name); argument
83 getFirstHeader(String name) argument
95 getLastHeader(String name) argument
120 addHeader(String name, String value) argument
137 setHeader(String name, String value) argument
158 removeHeaders(String name) argument
177 headerIterator(String name) argument
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DAbstractCookieSpec.java53 * Stores attribute name -> attribute handler mappings
66 final String name, final CookieAttributeHandler handler) {
67 if (name == null) {
68 throw new IllegalArgumentException("Attribute name may not be null");
73 this.attribHandlerMap.put(name, handler);
81 * @param name attribute name. e.g. Domain, Path, etc.
84 protected CookieAttributeHandler findAttribHandler(final String name) { argument
85 return this.attribHandlerMap.get(name);
92 * @param name attribut
65 registerAttribHandler( final String name, final CookieAttributeHandler handler) argument
96 getAttribHandler(final String name) argument
[all...]

Completed in 463 milliseconds

1234567891011>>