HomeSort by relevance Sort by last modified time
    Searched refs:name (Results 251 - 275 of 7455) sorted by null

<<11121314151617181920>>

  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
ReverbType.java 22 protected ReverbType(String name, int earlyReflectionDelay,
25 this.name = name;
33 private String name; field in class:ReverbType
46 return this.name;
78 return name + ", early reflection delay " + earlyReflectionDelay //$NON-NLS-1$
  /development/tools/apkcheck/src/com/android/apkcheck/
ApiList.java 80 public PackageInfo getPackage(String name) {
81 return mPackageList.get(name);
88 public PackageInfo getOrCreatePackage(String name) {
89 PackageInfo pkgInfo = mPackageList.get(name);
91 pkgInfo = new PackageInfo(name);
92 mPackageList.put(name, pkgInfo);
  /external/apache-http/src/org/apache/http/message/
BasicHeader.java 43 * of a name followed by a colon (":") and the field value. Field names
48 * message-header = field-name ":" [ field-value ]
49 * field-name = token
69 * Header name.
71 private final String name; field in class:BasicHeader
79 * Constructor with name and value
81 * @param name the header name
84 public BasicHeader(final String name, final String value) {
86 if (name == null)
    [all...]
  /external/clearsilver/ruby/lib/
neo.rb 16 def push name
18 @cpos+=name+"."
30 def put name, value
32 self.set_value(@cpos+(name.to_s),value)
35 def get name
36 self.get_value(@cpos+name)
  /external/embunit/inc/
HelperMacro.h 28 * Except as contained in this notice, the name of a copyright holder
38 #define EMB_UNIT_TESTCASE(ca,name,sup,tdw,run) \
39 static const TestCase ca = new_TestCase(name,sup,tdw,run)
41 #define EMB_UNIT_TESTSUITE(su,name,array) \
42 static const TestSuite su = new_TestSuite(name,(Test**)array,sizeof(array)/sizeof(array[0]))
50 #define EMB_UNIT_TESTCALLER(caller,name,sup,tdw,fixtures) \
51 static const TestCaller caller = new_TestCaller(name,sup,tdw,sizeof(fixtures)/sizeof(fixtures[0]),(TestFixture*)fixtures)
  /external/kernel-headers/original/asm-arm/
glue.h 20 #define ____glue(name,fn) name##fn
22 #define ____glue(name,fn) name/**/fn
24 #define __glue(name,fn) ____glue(name,fn)
  /external/srec/shared/include/
ESR_SessionType.h 48 * @param name Property name
53 ESR_ReturnCode(*getProperty)(struct ESR_SessionType_t* self, const LCHAR* name, void** value, VariableTypes type);
58 * @param name Property name
62 ESR_ReturnCode(*getPropertyType)(struct ESR_SessionType_t* self, const LCHAR* name, VariableTypes* type);
67 * @param name Property name
71 ESR_ReturnCode(*getInt)(struct ESR_SessionType_t* self, const LCHAR* name, int* value);
75 * @param name Property nam
    [all...]
ESR_SessionTypeImpl.h 67 const LCHAR* name,
74 const LCHAR* name,
80 const LCHAR* name,
86 const LCHAR* name,
92 const LCHAR* name,
98 const LCHAR* name,
104 const LCHAR* name,
110 const LCHAR* name,
116 const LCHAR* name,
122 const LCHAR* name,
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 18 An element type has a name, a content model vector, a member-of vector,
25 private String theName; // element type name (Qname)
26 private String theNamespace; // element type namespace name
27 private String theLocalName; // element type local name
39 @param name The element type name
50 public ElementType(String name, int model, int memberOf, int flags, Schema schema) {
51 theName = name;
57 theNamespace = namespace(name, false);
58 theLocalName = localName(name);
103 public String name() { return theName; } method in class:ElementType
    [all...]
  /external/webkit/WebCore/inspector/front-end/
ResourceCategory.js 13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
29 WebInspector.ResourceCategory = function(name, title, color)
31 WebInspector.AbstractTimelineCategory.call(this, name, title, color);
46 else if (a.name && b.name)
47 if (a.name < b.name)
  /external/webkit/WebKit/mac/Misc/
WebNSNotificationCenterExtras.h 13 * 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;
  /frameworks/base/opengl/libs/tools/
glapigen 34 my $name = $3;
40 if ($name eq "glEGLImageTargetTexture2DOES") {
43 if ($name eq "glEGLImageTargetRenderbufferStorageOES") {
47 printf("%s API_ENTRY(%s%s)(%s)", $type, $prefix, $name, $args);
51 printf(" CALL_GL_API(%s", $name);
53 printf(" CALL_GL_API_RETURN(%s", $name);
61 # extract the name from the parameter
62 # type name
63 # const type *name
64 # type *name
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
Part.java 23 public void addHeader(String name, String value) throws MessagingException;
25 public void removeHeader(String name) throws MessagingException;
27 public void setHeader(String name, String value) throws MessagingException;
37 public String[] getHeader(String name) throws MessagingException;
39 public void setExtendedHeader(String name, String value) throws MessagingException;
41 public String getExtendedHeader(String name) throws MessagingException;
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
Group.java 30 private String name; field in class:Group
34 * @param name The group name.
37 public Group(String name, MailboxList mailboxes) {
38 this.name = name;
43 * Returns the group name.
46 return name;
58 buf.append(name);
  /system/bluetooth/tools/
bttest.c 49 char *name; member in struct:__anon12970
62 for (i = 0; function_table[i].name; i++) {
63 printf("\tbttest %s\n", function_table[i].name);
74 for (i = 0; function_table[i].name; i++) {
75 if (!strcmp(argv[1], function_table[i].name)) {
76 printf("%s\n", function_table[i].name);
  /external/e2fsprogs/intl/
loadmsgcat.c 459 file and the name space must not be polluted. */
502 get_sysdep_segment_value (const char *name)
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[3] == 'x' || name[3] == 'X'
1096 const char *name = local
    [all...]
  /bionic/libc/kernel/arch-x86/asm/xen/
hypercall.h 5 *** of the same name, to make information necessary for userspace to
22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1) : "1" ((long)(a1)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2) : "1" ((long)(a1)), "2" ((long)(a2)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
28 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
30 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "call %[call (…)
    [all...]
  /dalvik/libcore/xml/src/main/java/javax/xml/validation/
SchemaFactory.java 55 * <h2><a name="schemaLanguage"></a>Schema Language</h2>
131 * as a class name. The method will try to
247 * <p>The feature name is any fully-qualified URI. It is
248 * possible for a {@link SchemaFactory} to recognize a feature name but
254 * @param name The feature name, which is a non-null fully-qualified URI.
259 * {@link SchemaFactory} recognizes the feature name but
262 * if the name parameter is null.
265 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
267 if (name == null)
    [all...]
  /dalvik/libcore/xml/src/main/java/org/xml/sax/ext/
DeclHandler.java 37 * with the property name
63 * @param name The element type name.
67 public abstract void elementDecl (String name, String model)
86 * @param eName The name of the associated element.
87 * @param aName The name of the attribute.
111 * @param name The name of the entity. If it is a parameter
112 * entity, the name will begin with '%'.
118 public abstract void internalEntityDecl (String name, String value
    [all...]
LexicalHandler.java 33 * with the property name
73 * @param name The document type name.
85 public abstract void startDTD (String name, String publicId,
116 * the external DTD subset has the pseudo-entity name "[dtd]".</p>
145 * @param name The name of the entity. If it is a parameter
146 * entity, the name will begin with '%', and if it is the
153 public abstract void startEntity (String name)
160 * @param name The name of the entity that is ending
    [all...]
  /external/bluetooth/bluez/network/
bridge.c 80 const char *name = bridge_get_name(id); local
82 err = ioctl(bridge_socket, SIOCBRADDBR, name);
86 info("bridge %s created", name);
94 const char *name = bridge_get_name(id); local
96 err = bnep_if_down(name);
100 err = ioctl(bridge_socket, SIOCBRDELBR, name);
104 info("bridge %s removed", name);
114 const char *name = bridge_get_name(id); local
116 if (!name)
123 strncpy(ifr.ifr_name, name, IFNAMSIZ - 1)
    [all...]
  /external/elfutils/libebl/
sparc_init.c 34 eh->name = "SPARC v9";
36 eh->name = "SPARC v8+";
38 eh->name = "SPARC";
  /external/skia/include/xml/
SkBML_WXMLParser.h 36 virtual bool onAddAttribute(const char name[], const char value[]);
37 virtual bool onEndElement(const char name[]);
38 virtual bool onStartElement(const char name[]);
SkDOM.h 63 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
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[], SkScalar value) const
    [all...]
  /external/v8/src/
oprofile-agent.h 12 // * Neither the name of Google Inc. nor the names of its
49 static void CreateNativeCodeRegion(const char* name,
51 static void CreateNativeCodeRegion(String* name,
53 static void CreateNativeCodeRegion(String* name, String* source, int line_num,

Completed in 1786 milliseconds

<<11121314151617181920>>