HomeSort by relevance Sort by last modified time
    Searched full:identifier (Results 451 - 475 of 5406) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
GetURLWithJavaScriptURLDestroyingPlugin.cpp 34 GetURLWithJavaScriptURLDestroyingPlugin(NPP npp, const string& identifier)
35 : PluginTest(npp, identifier)
GetUserAgentWithNullNPPFromNPPNew.cpp 38 GetUserAgentWithNullNPPFromNPPNew(NPP npp, const string& identifier)
39 : PluginTest(npp, identifier)
NPPNewFails.cpp 34 NPPNewFails(NPP npp, const string& identifier)
35 : PluginTest(npp, identifier)
  /external/chromium_org/tools/idl_parser/test_parser/
enum_web.idl 102 /* BUILD Error(Unexpected identifier "somename" after "{".) */
103 /* ERROR Unexpected identifier "somename" after "{". */
  /external/chromium_org/webkit/common/
resource_request_body.h 49 // sessions. A value of 0 is used to indicate an unspecified identifier.
51 int64 identifier() const { return identifier_; } function in class:webkit_glue::ResourceRequestBody
  /external/clang/test/Lexer/
c90.c 43 #define MY_UCN \u00FC // expected-warning {{universal character names are only valid in C99 or C++; treating as '\' followed by identifier}}
46 extern int idWithUCN\u00FC; // expected-warning {{universal character names are only valid in C99 or C++; treating as '\' followed by identifier}} expected-error {{expected ';'}}
  /external/clang/test/Misc/
diag-presumed.c 8 // PRESUMED: diag-presumed.c:101:11: error: use of undeclared identifier 'error'
10 // SPELLING: diag-presumed.c:6:11: error: use of undeclared identifier 'error'
  /external/clang/test/SemaCXX/
alias-template.cpp 24 template<typename Z> using ::T = void(int n); // expected-error {{name defined in alias declaration must be an identifier}}
25 template<typename Z> using operator int = void(int n); // expected-error {{name defined in alias declaration must be an identifier}}
26 template<typename Z> using typename U = void; // expected-error {{name defined in alias declaration must be an identifier}}
27 template<typename Z> using typename ::V = void(int n); // expected-error {{name defined in alias declaration must be an identifier}}
28 template<typename Z> using typename ::operator bool = void(int n); // expected-error {{name defined in alias declaration must be an identifier}}
72 template<typename U> using C0 = int; // expected-error {{name defined in alias declaration must be an identifier}}
76 template<typename U> using C1 = C1; // expected-error {{name defined in alias declaration must be an identifier}}
118 template<typename T> using cell = pair<T*, cell<T>*>; // expected-error {{use of undeclared identifier 'cell'}} \
  /frameworks/base/media/java/android/mtp/
MtpStorageInfo.java 76 * Returns the volume identifier for the storage unit
78 * @return the storage volume identifier
  /hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/
mcSuid.h 40 /** Platform specific device identifier (serial number of the chip). */
45 /** Soc unique identifier type. */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
TestCaseReference.java 51 * Sends test identifier and test count information for this test
61 * Returns the identifier of this test, in a format expected by JDT JUnit
  /external/chromium/chrome/browser/resources/options/
preferences.js 24 * @param {string} metric User metrics identifier.
37 * @param {string} metric User metrics identifier.
50 * @param {string} metric User metrics identifier.
63 * @param {string} metric User metrics identifier.
76 * @param {string} metric User metrics identifier.
87 * @param {string} metric User metrics identifier.
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_message_filter.cc 114 int identifier,
126 CallSpellingService(text, route_id, identifier, markers);
131 int identifier,
165 route_id, identifier, success, text, results_copy));
173 int identifier,
188 identifier,
  /external/chromium_org/content/browser/indexed_db/
indexed_db_database.h 47 // Identifier is pair of (origin identifier, database name).
48 typedef std::pair<std::string, base::string16> Identifier;
57 const Identifier& unique_identifier);
183 const Identifier& unique_identifier);
228 const Identifier identifier_;
  /external/chromium_org/content/child/
plugin_param_traits.cc 14 : identifier() {
116 content::SerializeNPIdentifier(p.identifier, m);
122 return content::DeserializeNPIdentifier(iter, &r->identifier);
126 if (WebKit::WebBindings::identifierIsString(p.identifier)) {
127 NPUTF8* str = WebKit::WebBindings::utf8FromIdentifier(p.identifier);
132 WebKit::WebBindings::intFromIdentifier(p.identifier)));
  /external/chromium_org/net/base/
upload_data_stream.cc 17 int64 identifier)
21 identifier_(identifier),
30 UploadDataStream::UploadDataStream(Chunked /*chunked*/, int64 identifier)
34 identifier_(identifier),
47 int64 identifier) {
50 return new UploadDataStream(&readers, identifier);
  /external/chromium_org/third_party/angle_dx11/src/compiler/
ParseHelper.h 76 bool reservedErrorCheck(const TSourceLoc& line, const TString& identifier);
89 bool arrayErrorCheck(const TSourceLoc& line, TString& identifier, TPublicType type, TVariable*& variable);
96 bool nonInitConstErrorCheck(const TSourceLoc& line, TString& identifier, TPublicType& type, bool array);
97 bool nonInitErrorCheck(const TSourceLoc& line, TString& identifier, TPublicType& type, TVariable*& variable);
109 bool executeInitializer(const TSourceLoc& line, TString& identifier, TPublicType& pType,
125 bool enterStructDeclaration(const TSourceLoc& line, const TString& identifier);
  /external/clang/test/FixIt/
typo.cpp 24 other_std::strng str1; // expected-error{{use of undeclared identifier 'other_std'; did you mean 'otherstd'?}} \
59 return ember; // expected-error{{use of undeclared identifier 'ember'; did you mean 'member'?}}
66 return ember; // expected-error{{use of undeclared identifier 'ember'; did you mean 'member'?}}
74 unsinged *ptr = 0; // expected-error{{use of undeclared identifier 'unsinged'; did you mean 'unsigned'?}}
75 return *i + *ptr + global_val; // expected-error{{use of undeclared identifier 'global_val'; did you mean 'global_value'?}}
97 Bool b; // expected-error{{use of undeclared identifier 'Bool'; did you mean 'bool'?}}
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
JInputJoyInput.java 11 import net.java.games.input.Component.Identifier;
12 import net.java.games.input.Component.Identifier.Axis;
13 import net.java.games.input.Component.Identifier.Button;
37 Identifier id = comp.getIdentifier();
135 Identifier id = e.getComponent().getIdentifier();
136 if (id == Identifier.Axis.POV){
  /external/srtp/crypto/include/
crypto_types.h 78 * A cipher_type_id_t is an identifier for a cipher_type; only values
82 * The identifier STRONGHOLD_CIPHER indicates the strongest available
126 * This identifier resolves to the strongest cipher type available.
143 * An auth_type_id_t is an identifier for an authentication function type;
147 * The identifier STRONGHOLD_AUTH indicates the strongest available
194 * This identifier resolves to the strongest available authentication
  /external/wpa_supplicant_8/src/eap_common/
eap_pax_common.c 21 * @identifier: Public identifier for the key (Y)
31 const char *identifier,
42 if (identifier == NULL || num_blocks >= 255)
49 addr[0] = (const u8 *) identifier;
50 len[0] = os_strlen(identifier);
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
DerInputStream.java 65 throw new ASN1Exception("ASN.1 bitstring: constructed identifier at [" + tagOffset
92 throw new ASN1Exception("ASN.1 octetstring: constructed identifier at [" + tagOffset
120 throw new ASN1Exception("ASN.1 string: constructed identifier at [" + tagOffset
129 throw new ASN1Exception("ASN.1 UTCTime: constructed identifier at [" + tagOffset
135 throw new ASN1Exception("ASN.1 UTCTime: wrong format for DER, identifier at ["
145 throw new ASN1Exception("ASN.1 GeneralizedTime: constructed identifier at ["
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
AuthorityKeyIdentifier.java 37 * with Authority Key Identifier Extension (OID = 2.5.29.35).
44 * id-ce-authorityKeyIdentifier OBJECT IDENTIFIER ::= { id-ce 35 }
74 * The key identifier for the authority.
76 * @return key identifier or {@code null}
83 * The GeneralNames for this authority key identifier.
93 * identifier.
  /libcore/luni/src/main/java/org/xml/sax/
DTDHandler.java 63 * If a system identifier is present, and it is a URL, the SAX
71 * @param publicId The notation's public identifier, or null if
73 * @param systemId The notation's system identifier, or null if
96 * <p>If the system identifier is a URL, the parser must resolve it
102 * @param publicId The entity's public identifier, or null if none
104 * @param systemId The entity's system identifier.
EntityResolver.java 38 * identifier "http://www.myhost.com/today":</p>
61 * (possibly by using the public identifier).</p>
96 * <p>If the system identifier is a URL, the SAX parser must
99 * @param publicId The public identifier of the external entity
101 * @param systemId The system identifier of the external entity
105 * URI connection to the system identifier.

Completed in 555 milliseconds

<<11121314151617181920>>