Searched refs:name (Results 201 - 225 of 20459) sorted by relevance

1234567891011>>

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DTestService.java10 ComponentName name; field in class:TestService
20 public void onServiceConnected(ComponentName name, IBinder service) { argument
21 this.name = name;
26 public void onServiceDisconnected(ComponentName name) { argument
27 nameUnbound = name;
/external/smack/asmack-master/patch/
H A D00-relocate-javax.security.sh5 find org/apache/harmony/ -name '*.java' -exec sed -i 's:package javax:package org.apache.harmony.javax:g' '{}' ';'
6 find -name '*.java' -exec sed -i 's:import javax.security.sasl:import org.apache.harmony.javax.security.sasl:g' '{}' ';'
7 find -name '*.java' -exec sed -i 's:import javax.security.auth:import org.apache.harmony.javax.security.auth:g' '{}' ';'
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Ddelayed_callback_runner_unittest.cc39 // test fixture under the given name.
40 void RegisterTestCallback(const std::string& name) { argument
41 callbacks_[name] = CallbackState();
42 instance_->RegisterCallback(MakeCallback(name));
58 void OnRun(const std::string& name, CallbackArgument* arg) { argument
59 EXPECT_FALSE(callbacks_[name].run);
60 callbacks_[name].run = true;
63 void OnDelete(const std::string& name) { argument
64 EXPECT_FALSE(callbacks_[name].deleted);
65 callbacks_[name]
70 MakeCallbackArgument(const std::string& name) argument
77 MakeCallback(const std::string& name) argument
84 CallbackWasRun(const std::string& name) argument
86 CallbackWasDeleted(const std::string& name) argument
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dcommandlineflags.h14 // * Neither the name of Google Inc. nor the names of its
61 #define DECLARE_VARIABLE(type, name) \
63 extern PERFTOOLS_DLL_DECL type FLAGS_##name; \
65 using FLAG__namespace_do_not_use_directly_use_DECLARE_##type##_instead::FLAGS_##name
67 #define DEFINE_VARIABLE(type, name, value, meaning) \
69 PERFTOOLS_DLL_DECL type FLAGS_##name(value); \
70 char FLAGS_no##name; \
72 using FLAG__namespace_do_not_use_directly_use_DECLARE_##type##_instead::FLAGS_##name
75 #define DECLARE_bool(name) \
76 DECLARE_VARIABLE(bool, name)
[all...]
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DIssuerAndSerialNumber.java17 X500Name name; field in class:IssuerAndSerialNumber
38 this.name = X500Name.getInstance(seq.getObjectAt(0));
43 X509Name name,
46 this.name = X500Name.getInstance(name.toASN1Primitive());
51 X509Name name,
54 this.name = X500Name.getInstance(name.toASN1Primitive());
59 X500Name name,
62 this.name
42 IssuerAndSerialNumber( X509Name name, BigInteger certSerialNumber) argument
50 IssuerAndSerialNumber( X509Name name, ASN1Integer certSerialNumber) argument
58 IssuerAndSerialNumber( X500Name name, BigInteger certSerialNumber) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DKeyboardShortcut.js14 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
59 /** @typedef {!{code: number, name: (string|!Object.<string, string>)}} */
64 Backspace: { code: 8, name: "\u21a4" },
65 Tab: { code: 9, name: { mac: "\u21e5", other: "Tab" } },
66 Enter: { code: 13, name: { mac: "\u21a9", other: "Enter" } },
67 Shift: { code: 16, name: { mac: "\u21e7", other: "Shift" } },
68 Ctrl: { code: 17, name: "Ctrl" },
69 Esc: { code: 27, name: { mac: "\u238b", other: "Esc" } },
70 Space: { code: 32, name: "Space" },
71 PageUp: { code: 33, name
[all...]
/external/chromium_org/third_party/ots/test/
H A Dtable_dependencies_test.cc13 #define SET_TABLE(name, capname) \
14 do { file.name = new ots::OpenType##capname; } while (0)
15 #define SET_LAYOUT_TABLE(name, capname) \
17 if (!file.name) { \
18 SET_TABLE(name, capname); \
20 file.name->data = reinterpret_cast<const uint8_t*>(1); \
21 file.name->length = 1; \
23 #define DROP_TABLE(name) \
24 do { delete file.name; file.name
[all...]
/external/chromium_org/third_party/skia/tools/flags/
H A DSkCommandLineFlags.h20 * DEFINE_bool(name, defaultValue, helpString);
21 * DEFINE_string(name, defaultValue, helpString);
22 * DEFINE_int32(name, defaultValue, helpString);
23 * DEFINE_double(name, defaultValue, helpString);
81 * DECLARE_x(name);
167 static bool ShouldSkip(const SkTDArray<const char*>& strings, const char* name);
168 static bool ShouldSkip(const StringArray& strings, const char* name);
181 #define DEFINE_bool(name, defaultValue, helpString) \
182 bool FLAGS_##name; \
183 static bool unused_##name
263 CreateBoolFlag(const char* name, const char* shortName, bool* pBool, bool defaultValue, const char* helpString) argument
284 CreateIntFlag(const char* name, int32_t* pInt, int32_t defaultValue, const char* helpString) argument
295 CreateDoubleFlag(const char* name, double* pDouble, double defaultValue, const char* helpString) argument
362 const SkString& name() const { return fName; } function in class:SkFlagInfo
405 SkFlagInfo(const char* name, const char* shortName, FlagTypes type, const char* helpString) argument
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfile_type.js19 type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'JPEG',
23 type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'BMP',
27 type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'GIF',
31 type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'ICO',
35 type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'PNG',
39 type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'WebP',
43 type: 'image', name: 'IMAGE_FILE_TYPE', subtype: 'TIFF',
49 type: 'video', name: 'VIDEO_FILE_TYPE', subtype: '3GP',
53 type: 'video', name: 'VIDEO_FILE_TYPE', subtype: 'AVI',
57 type: 'video', name
[all...]
/external/lldb/source/Expression/
H A DClangPersistentVariables.cpp36 const ConstString &name,
41 ClangExpressionVariableSP var_sp (GetVariable(name));
44 var_sp = CreateVariable(exe_scope, name, user_type, byte_order, addr_byte_size);
54 const char *name = variable->GetName().AsCString(); local
56 if (*name != '$')
58 name++;
60 if (strtoul(name, NULL, 0) == m_next_persistent_variable_id - 1)
69 ConstString name(name_cstr);
70 return name;
74 ClangPersistentVariables::RegisterPersistentType (const ConstString &name, argument
35 CreatePersistentVariable(ExecutionContextScope *exe_scope, const ConstString &name, const TypeFromUser& user_type, lldb::ByteOrder byte_order, uint32_t addr_byte_size) argument
81 GetPersistentType(const ConstString &name) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DSignature.java21 * A representation of a method signature, containing the method name,
25 private String name; field in class:Signature
28 public Signature(String name, String desc) { argument
30 if (name.indexOf('(') >= 0) {
31 throw new IllegalArgumentException("Name '" + name + "' is invalid");
33 this.name = name;
37 public Signature(String name, Type returnType, Type[] argumentTypes) { argument
38 this(name, Type.getMethodDescriptor(returnType, argumentTypes));
42 return name;
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DHeader.java5 /** HTTP header: the name is an ASCII string, but the value can be UTF-8. */
17 public final ByteString name; field in class:Header
23 public Header(String name, String value) { argument
24 this(ByteString.encodeUtf8(name), ByteString.encodeUtf8(value));
27 public Header(ByteString name, String value) { argument
28 this(name, ByteString.encodeUtf8(value));
31 public Header(ByteString name, ByteString value) { argument
32 this.name = name;
34 this.hpackSize = 32 + name
[all...]
/external/skia/tools/flags/
H A DSkCommandLineFlags.h20 * DEFINE_bool(name, defaultValue, helpString);
21 * DEFINE_string(name, defaultValue, helpString);
22 * DEFINE_int32(name, defaultValue, helpString);
23 * DEFINE_double(name, defaultValue, helpString);
81 * DECLARE_x(name);
163 static bool ShouldSkip(const SkTDArray<const char*>& strings, const char* name);
164 static bool ShouldSkip(const StringArray& strings, const char* name);
177 #define DEFINE_bool(name, defaultValue, helpString) \
178 bool FLAGS_##name; \
179 static bool unused_##name
259 CreateBoolFlag(const char* name, const char* shortName, bool* pBool, bool defaultValue, const char* helpString) argument
280 CreateIntFlag(const char* name, int32_t* pInt, int32_t defaultValue, const char* helpString) argument
291 CreateDoubleFlag(const char* name, double* pDouble, double defaultValue, const char* helpString) argument
358 const SkString& name() const { return fName; } function in class:SkFlagInfo
401 SkFlagInfo(const char* name, const char* shortName, FlagTypes type, const char* helpString) argument
[all...]
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_constraints_util.cc28 const std::string& name,
30 return GetMandatoryConstraintValueAsBoolean(constraints, name, value) ||
31 GetOptionalConstraintValueAsBoolean(constraints, name, value);
35 const std::string& name,
37 return GetMandatoryConstraintValueAsInteger(constraints, name, value) ||
38 GetOptionalConstraintValueAsInteger(constraints, name, value);
42 const std::string& name,
44 return GetMandatoryConstraintValueAsDouble(constraints, name, value) ||
45 GetOptionalConstraintValueAsDouble(constraints, name, value);
49 const std::string& name,
27 GetConstraintValueAsBoolean(const blink::WebMediaConstraints& constraints, const std::string& name, bool* value) argument
34 GetConstraintValueAsInteger(const blink::WebMediaConstraints& constraints, const std::string& name, int* value) argument
41 GetConstraintValueAsDouble(const blink::WebMediaConstraints& constraints, const std::string& name, double* value) argument
48 GetConstraintValueAsString(const blink::WebMediaConstraints& constraints, const std::string& name, std::string* value) argument
62 GetMandatoryConstraintValueAsBoolean( const blink::WebMediaConstraints& constraints, const std::string& name, bool* value) argument
75 GetMandatoryConstraintValueAsInteger( const blink::WebMediaConstraints& constraints, const std::string& name, int* value) argument
88 GetMandatoryConstraintValueAsDouble( const blink::WebMediaConstraints& constraints, const std::string& name, double* value) argument
100 GetOptionalConstraintValueAsBoolean( const blink::WebMediaConstraints& constraints, const std::string& name, bool* value) argument
113 GetOptionalConstraintValueAsInteger( const blink::WebMediaConstraints& constraints, const std::string& name, int* value) argument
126 GetOptionalConstraintValueAsDouble( const blink::WebMediaConstraints& constraints, const std::string& name, double* value) argument
[all...]
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DStreamRedirector.java38 String name; field in class:StreamRedirector
48 * @param name stream name used as prefix for redirected output
50 public StreamRedirector(InputStream is, LogWriter logWriter, String name) { argument
51 super("Redirector for " + name);
52 this.name = name;
63 logWriter.println("Redirector started: " + name);
72 logWriter.println(name + "> " + line);
79 logWriter.println("Redirector completed: " + name);
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyBasicPermission.java26 public MyBasicPermission(String name) { argument
27 super(name);
/external/apache-http/src/org/apache/http/
H A DHttpMessage.java62 * @param name the header name to check for.
63 * @return true if at least one header with this name is present.
65 boolean containsHeader(String name); argument
68 * Returns all the headers with a specified name of this message. Header values
72 * @param name the name of the headers to return.
73 * @return the headers whose name property equals <code>name</code>.
75 Header[] getHeaders(String name); argument
88 getFirstHeader(String name) argument
100 getLastHeader(String name) argument
125 addHeader(String name, String value) argument
142 setHeader(String name, String value) argument
163 removeHeaders(String name) argument
182 headerIterator(String name) argument
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DAbstractCookieSpec.java58 * Stores attribute name -> attribute handler mappings
71 final String name, final CookieAttributeHandler handler) {
72 if (name == null) {
73 throw new IllegalArgumentException("Attribute name may not be null");
78 this.attribHandlerMap.put(name, handler);
86 * @param name attribute name. e.g. Domain, Path, etc.
89 protected CookieAttributeHandler findAttribHandler(final String name) { argument
90 return this.attribHandlerMap.get(name);
97 * @param name attribut
70 registerAttribHandler( final String name, final CookieAttributeHandler handler) argument
101 getAttribHandler(final String name) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemHeader.java5 private String name; field in class:PemHeader
8 public PemHeader(String name, String value) argument
10 this.name = name;
16 return name;
26 return getHashCode(this.name) + 31 * getHashCode(this.value);
38 return other == this || (isEqual(this.name, other.name) && isEqual(this.value, other.value));
/external/chromium_org/chrome/browser/chromeos/login/ui/
H A Dmock_login_display_host.cc18 const std::string& name,
20 return StartWizardPtr(name, value.get());
17 StartWizard( const std::string& name, scoped_ptr<base::DictionaryValue> value) argument
/external/chromium_org/ipc/
H A Dstruct_constructor_macros.h17 #define IPC_STRUCT_MEMBER(type, name, ...) , name(__VA_ARGS__)
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.h20 const void *__Pnacl_PPBGetInterface(const char *name);
21 const void *__Pnacl_PPPGetInterface(const char *name);

Completed in 671 milliseconds

1234567891011>>