Searched refs:name (Results 226 - 250 of 7102) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/chromium/src/
H A DWebFormControlElement.cpp14 * * Neither the name of Google Inc. nor the names of its
53 return constUnwrap<HTMLFormControlElement>()->name();
68 String name = constUnwrap<HTMLFormControlElement>()->name(); local
69 String trimmedName = name.stripWhiteSpace();
72 name = constUnwrap<HTMLFormControlElement>()->getIdAttribute();
73 trimmedName = name.stripWhiteSpace();
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSNotificationCenterExtras.h13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
33 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object;
34 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
35 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wait;
/external/e2fsprogs/intl/
H A Dloadmsgcat.c459 file and the name space must not be polluted. */
502 get_sysdep_segment_value (const char *name) argument
510 if (name[0] == 'P' && name[1] == 'R' && name[2] == 'I')
512 if (name[3] == 'd' || name[3] == 'i' || name[3] == 'o' || name[3] == 'u'
513 || name[
1096 const char *name = local
[all...]
/external/chromium/base/debug/
H A Dtrace_event_win.h15 #define TRACE_EVENT_BEGIN(name, id, extra) \
17 name, \
22 #define TRACE_EVENT_END(name, id, extra) \
24 name, \
29 #define TRACE_EVENT_INSTANT(name, id, extra) \
31 name, \
59 // Allowing the use of std::string for name or extra is a convenience,
60 // whereas passing name or extra as a const char* avoids the construction
64 static void Trace(const char* name,
72 static void Trace(const char* name, argument
81 Trace(const char* name, EventType type, const void* id, const char* extra) argument
[all...]
/external/elfutils/libebl/
H A Dsparc_init.c34 eh->name = "SPARC v9";
36 eh->name = "SPARC v8+";
38 eh->name = "SPARC";
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DResourceLoader.java46 * @param name the name of the resource
50 Reader open(String name) throws IOException; argument
58 * @param name the name of the resource
63 Reader openOrFail(String name) throws JSilverTemplateNotFoundException, IOException; argument
75 * file name in the context of this ResourceLoader. (e.g. ordered list of directories + filename,
78 * @param filename the name we want to identify
91 * always return the same Object, e.g. the resource name. Null, however, should only be returned
94 * @param name th
98 getResourceVersionId(String name) argument
[all...]
/external/qemu/
H A Ddef-helper.h21 #define HELPER(name) glue(helper_, name)
111 #define DEF_HELPER_0(name, ret) \
112 DEF_HELPER_FLAGS_0(name, 0, ret)
113 #define DEF_HELPER_1(name, ret, t1) \
114 DEF_HELPER_FLAGS_1(name, 0, ret, t1)
115 #define DEF_HELPER_2(name, ret, t1, t2) \
116 DEF_HELPER_FLAGS_2(name, 0, ret, t1, t2)
117 #define DEF_HELPER_3(name, ret, t1, t2, t3) \
118 DEF_HELPER_FLAGS_3(name,
[all...]
/external/skia/include/xml/
H A DSkDOM.h63 bool findS32(const Node*, const char name[], int32_t* value) const;
64 bool findScalars(const Node*, const char name[], SkScalar value[], int count) const;
65 bool findHex(const Node*, const char name[], uint32_t* value) const;
66 bool findBool(const Node*, const char name[], bool*) const;
67 int findList(const Node*, const char name[], const char list[]) const;
69 bool findScalar(const Node* node, const char name[], SkScalar value[]) const argument
71 return this->findScalars(node, name, value, 1);
74 bool hasAttr(const Node*, const char name[], const char value[]) const;
75 bool hasS32(const Node*, const char name[], int32_t value) const;
76 bool hasScalar(const Node*, const char name[], SkScala
[all...]
/external/v8/test/mjsunit/
H A Dfuzz-natives.js12 // * Neither the name of Google Inc. nor the names of its
52 function makeFunction(name, argc) {
57 return new Function(args.join(", "), "return %" + name + "(" + argsStr + ");");
60 function testArgumentCount(name, argc) {
64 func = makeFunction(name, i);
82 function testArgumentTypes(name, argc) {
85 var func = makeFunction(name, argc);
198 var name = nativeInfo[0];
199 if (name in knownProblems || name i
[all...]
/external/webkit/LayoutTests/http/tests/cookies/resources/
H A Dcookie-utility.php4 function deleteCookie($value, $name)
6 setcookie($name, "deleted", time() - 86400, '/');
29 function echoCookie($value, $name)
31 echo "$name = $value\n";
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DataGridColumnListCustom.cpp14 * * Neither the name of Google Inc. nor the names of its
46 v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name);
51 if (info.Holder()->HasRealNamedCallbackProperty(name))
54 // Finally, look up a column by name.
56 DataGridColumn* result = imp->itemWithName(toWebCoreString(name));
H A DV8StyleSheetListCustom.cpp14 * * Neither the name of Google Inc. nor the names of its
42 v8::Handle<v8::Value> V8StyleSheetList::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) argument
46 if (info.Holder()->HasRealNamedProperty(name))
51 HTMLStyleElement* item = imp->getNamedItem(toWebCoreString(name));
/external/webkit/Source/WebCore/html/
H A DHTMLDocument.h74 void addNamedItem(const AtomicString& name);
75 void removeNamedItem(const AtomicString& name);
76 bool hasNamedItem(AtomicStringImpl* name);
78 void addExtraNamedItem(const AtomicString& name);
79 void removeExtraNamedItem(const AtomicString& name);
80 bool hasExtraNamedItem(AtomicStringImpl* name);
106 inline bool HTMLDocument::hasNamedItem(AtomicStringImpl* name) argument
108 ASSERT(name);
109 return m_namedItemCounts.contains(name);
112 inline bool HTMLDocument::hasExtraNamedItem(AtomicStringImpl* name) argument
[all...]
H A DHTMLNameCollection.h35 static PassRefPtr<HTMLNameCollection> create(PassRefPtr<Document> document, CollectionType type, const String& name) argument
37 return adoptRef(new HTMLNameCollection(document, type, name));
41 HTMLNameCollection(PassRefPtr<Document>, CollectionType, const String& name);
/external/wpa_supplicant/
H A Dconfig_none.c26 struct wpa_config * wpa_config_read(const char *name) argument
38 int wpa_config_write(const char *name, struct wpa_config *config) argument
43 wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
/external/wpa_supplicant_6/wpa_supplicant/
H A Dconfig_none.c26 struct wpa_config * wpa_config_read(const char *name) argument
38 int wpa_config_write(const char *name, struct wpa_config *config) argument
43 wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig_none.c26 struct wpa_config * wpa_config_read(const char *name) argument
38 int wpa_config_write(const char *name, struct wpa_config *config) argument
43 wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
/external/apache-http/src/org/apache/http/conn/scheme/
H A DSchemeRegistry.java68 * Obtains a scheme by name.
70 * @param name the name of the scheme to look up (in lowercase)
75 * if the scheme with the given name is not registered
77 public synchronized final Scheme getScheme(String name) { argument
78 Scheme found = get(name);
81 ("Scheme '"+name+"' not registered.");
96 * if a scheme with the respective name is not registered
107 * Obtains a scheme by name, if registered.
109 * @param name th
114 get(String name) argument
152 unregister(String name) argument
[all...]
/external/apache-http/src/org/apache/http/cookie/
H A DCookieSpecRegistry.java63 * If a specification with the given name already exists it will be overridden.
67 * @param name the identifier for this specification
72 public synchronized void register(final String name, final CookieSpecFactory factory) { argument
73 if (name == null) {
79 registeredSpecs.put(name.toLowerCase(Locale.ENGLISH), factory);
97 * @param name the {@link CookieSpec cookie specification} identifier
103 * @throws IllegalStateException if a policy with the given name cannot be found
105 public synchronized CookieSpec getCookieSpec(final String name, final HttpParams params) argument
108 if (name == null) {
111 CookieSpecFactory factory = registeredSpecs.get(name
128 getCookieSpec(final String name) argument
[all...]
/external/bluetooth/glib/tests/gobject/
H A Dtestcommon.h25 #define DEFINE_TYPE_FULL(name, prefix, \
37 sizeof (name ## Class), \
43 sizeof (name), \
49 # name, \
57 #define DEFINE_TYPE(name, prefix, \
60 DEFINE_TYPE_FULL(name, prefix, class_init, base_init, \
63 #define DEFINE_IFACE(name, prefix, base_init, dflt_init) \
73 sizeof (name ## Class), \
80 # name, \
/external/chromium/base/
H A Dnative_library_linux.cc44 const char* name) {
45 return dlsym(library, name);
49 string16 GetNativeLibraryName(const string16& name) { argument
50 return ASCIIToUTF16("lib") + name + ASCIIToUTF16(".so");
43 GetFunctionPointerFromNativeLibrary(NativeLibrary library, const char* name) argument
/external/chromium/chrome/browser/ui/webui/
H A Dsync_internals_ui.cc47 const std::string& name = params.name; local
49 VLOG(1) << "Received message: " << name << " with args "
53 if (name == "getAboutInfo") {
64 backend->ProcessMessage(name, args, this);
66 LOG(WARNING) << "No sync service; dropping message " << name
72 void SyncInternalsUI::HandleJsEvent(const std::string& name, argument
74 VLOG(1) << "Handling event: " << name << " with args " << args.ToString();
76 CallJavascriptFunction(name, arg_list);
/external/chromium/webkit/glue/
H A Dform_data.cc14 : name(data.name),
26 return (name == form.name &&
/external/clang/test/CodeGenCXX/
H A Dconstructor-conversion.cpp11 X(int) : iX(2), fX(2.3) , name("HELLO\n") { }
13 X(const char* arg, int ix=0) { iX = ix; fX = 6.0; name = arg+ix; }
17 const char *name; member in class:X
19 printf("iX = %d fX = %f name = %s\n", iX, fX, name);
/external/clang/test/Preprocessor/
H A Dassembler-with-cpp.c48 #define FOO(name) name ## $foo
53 #define FOO(name) name ## $foo

Completed in 694 milliseconds

1234567891011>>