Searched defs:name (Results 176 - 200 of 7863) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dext_password_i.h15 const char *name; member in struct:ext_password_backend
18 struct wpabuf * (*get)(void *ctx, const char *name);
/external/apache-harmony/security/src/test/resources/PermissionCollection/
H A DmypermissionBKS.jar ... s?defs= " (java.lang.String) String name public void " href="/5.1.0_r1/s? ...
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3exception.c21 // 3. The name of the author may not be used to endorse or promote products
72 antlr3ExceptionNew(ANTLR3_UINT32 exception, void * name, void * message, ANTLR3_BOOLEAN freeMessage) argument
87 ex->name = name; /* Install exception name */
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugTreeGrammarHelper.cs18 * 3. The name of the author may not be used to endorse or promote products
74 /** Find matching function definition for a function name and parameter
75 * value. The first definition is returned where (a) the name matches
78 private CommonTree findFunction( string name, BigInteger paramValue ) argument
83 if ( f.GetChild( 0 ).Text.Equals( name ) )
93 // Parameter (value for INT formal arg) as well as fct name agrees!
100 /** Get value of name up call stack. */
101 internal BigInteger getValue( string name )
104 if ( localMemory.TryGetValue( name, out value ) && value != null )
108 if ( globalMemory.TryGetValue( name, ou
[all...]
H A DProfileTreeGrammarHelper.cs18 * 3. The name of the author may not be used to endorse or promote products
74 /** Find matching function definition for a function name and parameter
75 * value. The first definition is returned where (a) the name matches
78 private CommonTree findFunction( string name, BigInteger paramValue ) argument
83 if ( f.GetChild( 0 ).Text.Equals( name ) )
93 // Parameter (value for INT formal arg) as well as fct name agrees!
100 /** Get value of name up call stack. */
101 public BigInteger getValue( string name )
104 if ( localMemory.TryGetValue( name, out value ) && value != null )
108 if ( globalMemory.TryGetValue( name, ou
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRStringStream.h13 // 3. The name of the author may not be used to endorse or promote products
42 NSString *name; variable
54 @property (retain, getter=getSourceName, setter=setSourceName:) NSString *name; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRStringStream.h13 // 3. The name of the author may not be used to endorse or promote products
42 NSString *name; variable
54 @property (retain, getter=getSourceName, setter=setSourceName:) NSString *name; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRStringStream.h13 // 3. The name of the author may not be used to endorse or promote products
42 NSString *name; variable
54 @property (retain, getter=getSourceName, setter=setSourceName:) NSString *name; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRStringStream.h13 // 3. The name of the author may not be used to endorse or promote products
42 NSString *name; variable
106 @property (retain) NSString *name; variable
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DAttribute.java14 * 3. The name of the author may not be used to endorse or promote products
41 /** The name of the attribute "foo" */
42 public String name; field in class:Attribute
51 public Attribute(String name, String decl) { argument
52 this.name = name;
62 * Set name, type, initvalue, and full decl instance vars.
111 // the name is the last ID
112 this.name = decl.substring(start,stop);
129 return type+" "+name
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/fortress/
H A DMyProvider.java35 MyProvider(String name, double version, String info) { argument
36 super(name, version, info);
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DIdentityStub.java45 * @param name
47 public IdentityStub(String name) { argument
48 super(name);
54 * @param name
58 public IdentityStub(String name, IdentityScope scope) argument
60 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);
H A DSignerStub.java42 * Constructor, sets given name
44 * @param name
46 public SignerStub(String name) { argument
47 super(name);
51 * Constructor, sets given name and scope
53 * @param name
57 public SignerStub(String name, IdentityScope scope) argument
59 super(name, scope);
/external/bison/lib/
H A Dbasename-lgpl.c1 /* basename.c -- return the last element in a file name
25 /* Return the address of the last file name component of NAME. If
26 NAME has no relative file name components because it is a file
30 last_component (char const *name) argument
32 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name);
58 base_len (char const *name) argument
61 size_t prefix_len = FILE_SYSTEM_PREFIX_LEN (name);
63 for (len = strlen (name); 1 < len && ISSLASH (name[le
[all...]
H A Dfstat.c82 const char *name = _gl_directory_name (fd); local
83 if (name != NULL)
84 return stat (name, buf);
H A Dunsetenv.c20 optimizes away the name == NULL test below. */
57 unsetenv (const char *name) argument
62 if (name == NULL || *name == '\0' || strchr (name, '=') != NULL)
68 len = strlen (name);
74 if (!strncmp (*ep, name, len) && (*ep)[len] == '=')
111 rpl_unsetenv (const char *name)
114 if (!name || !*name || strch
[all...]
/external/bluetooth/bluedroid/test/suite/cases/
H A Dadapter.c49 bt_property_t *name = property_new_name("set_name"); local
51 CALL_AND_WAIT(error = bt_interface->set_adapter_property(name), adapter_properties);
52 TASSERT(error == BT_STATUS_SUCCESS, "Error setting device name.");
54 TASSERT(adapter_get_property(BT_PROPERTY_BDNAME), "The Bluetooth name property did not change.");
55 TASSERT(property_equals(adapter_get_property(BT_PROPERTY_BDNAME), name), "Bluetooth name '%s' does not match test value", property_extract_name(adapter_get_property(BT_PROPERTY_BDNAME)));
57 property_free(name);
64 bt_property_t *name = property_new_name("get_name"); local
66 CALL_AND_WAIT(bt_interface->set_adapter_property(name), adapter_properties);
68 TASSERT(error == BT_STATUS_SUCCESS, "Error getting device name
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSAttributeTableGenerationException.java9 String name)
11 super(name);
15 String name,
18 super(name);
8 CMSAttributeTableGenerationException( String name) argument
14 CMSAttributeTableGenerationException( String name, Exception e) argument
H A DCMSRuntimeException.java9 String name)
11 super(name);
15 String name,
18 super(name);
8 CMSRuntimeException( String name) argument
14 CMSRuntimeException( String name, Exception e) argument
/external/chromium_org/ash/shell/
H A Dpanel_window.h22 explicit PanelWindow(const std::string& name);
28 const std::string& name() { return name_; } function in class:ash::PanelWindow
/external/chromium_org/base/files/
H A Ddir_reader_fallback.h23 // Return the name of the current directory entry.
24 const char* name() { return 0;} function in class:base::DirReaderFallback
/external/chromium_org/base/memory/
H A Dshared_memory_android.cc25 // "name" is just a label in ashmem. It is visible in /proc/pid/maps.
54 bool SharedMemory::Delete(const std::string& name) { argument
60 bool SharedMemory::Open(const std::string& name, bool read_only) { argument
61 // ashmem doesn't support name mapping
/external/chromium_org/base/win/
H A Dmessage_window_unittest.cc50 // Verifies that a named window can be found by name.
52 string16 name = UTF8ToUTF16(base::GenerateGUID()); local
54 EXPECT_TRUE(window.CreateNamed(base::Bind(&HandleMessage), name));
56 HWND hwnd = win::MessageWindow::FindWindow(name);
/external/chromium_org/chrome/browser/extensions/api/extension_action/
H A Dextension_action_prefs_unittest.cc22 std::string name = "test" + base::IntToString(i); variable
23 extensions_.push_back(prefs_.AddExtension(name));

Completed in 734 milliseconds

1234567891011>>