HomeSort by relevance Sort by last modified time
    Searched full:identifier (Results 76 - 100 of 6890) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
typo-correction-cxx11.cpp 4 decltype(ned); // expected-error-re {{use of undeclared identifier 'ned'{{$}}}}
20 auto lneed = gned.*[] {}; // expected-error-re {{use of undeclared identifier 'gned'{{$}}}}
23 int thatval = aaa * (bbb + thatvar); // expected-error {{use of undeclared identifier 'thatvar'; did you mean 'thisvar'?}}
29 for (auto&& x : e) { // expected-error-re {{use of undeclared identifier 'e'{{$}}}}
58 new_annotation->Swap(&annotation); // expected-error {{use of undeclared identifier 'new_annotation'; did you mean 'new_anotation'?}}
  /external/javassist/src/main/javassist/tools/reflect/
Sample.java 25 public Object trap(Object[] args, int identifier) throws Throwable {
29 return ClassMetaobject.invoke(this, identifier, args);
31 return mobj.trapMethodcall(identifier, args);
34 public static Object trapStatic(Object[] args, int identifier)
37 return _classobject.trapMethodcall(identifier, args);
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Usage.cpp 26 status_t Element<audio_usage_t>::setIdentifier(audio_usage_t identifier)
28 if (identifier > AUDIO_USAGE_MAX) {
31 mIdentifier = identifier;
32 ALOGD("%s: Usage %s has identifier 0x%X", __FUNCTION__, getName().c_str(), identifier);
InputSource.cpp 27 status_t Element<audio_source_t>::setIdentifier(audio_source_t identifier)
29 if (identifier > AUDIO_SOURCE_MAX && identifier != AUDIO_SOURCE_HOTWORD) {
32 mIdentifier = identifier;
33 ALOGD("%s: InputSource %s identifier 0x%X", __FUNCTION__, getName().c_str(), identifier);
  /frameworks/base/test-runner/src/android/test/
InstrumentationUtils.java 28 * An utility function that returns the menu identifier for a particular
32 * @param identifier Menu identifier.
35 public static int getMenuIdentifier(Class cls, String identifier) {
38 Integer field = (Integer)cls.getDeclaredField(identifier).get(cls);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
route53 75 def _add_del(conn, hosted_zone_id, change, name, type, identifier, weight, values, ttl, comment):
79 identifier=identifier, weight=weight)
84 def _add_del_alias(conn, hosted_zone_id, change, name, type, identifier, weight, alias_hosted_zone_id, alias_dns_name, comment):
88 identifier=identifier, weight=weight)
93 identifier=None, weight=None, comment=""):
94 """Add a new record to a zone. identifier and weight are optional."""
95 _add_del(conn, hosted_zone_id, "CREATE", name, type, identifier,
99 identifier=None, weight=None, comment="")
    [all...]
  /external/clang/unittests/Lex/
LexerTest.cpp 116 ExpectedTokens.push_back(tok::identifier);
118 ExpectedTokens.push_back(tok::identifier);
130 ExpectedTokens.push_back(tok::identifier);
131 ExpectedTokens.push_back(tok::identifier);
142 ExpectedTokens.push_back(tok::identifier);
143 ExpectedTokens.push_back(tok::identifier);
144 ExpectedTokens.push_back(tok::identifier);
155 ExpectedTokens.push_back(tok::identifier);
156 ExpectedTokens.push_back(tok::identifier);
157 ExpectedTokens.push_back(tok::identifier);
    [all...]
  /external/clang/test/Index/
annotate-subscripting.m 39 // CHECK: Identifier: "array" [24:3 - 24:8] DeclRefExpr=array:23:19
46 // CHECK: Identifier: "NSArray" [25:3 - 25:10] ObjCClassRef=NSArray:1:12
48 // CHECK: Identifier: "arr" [25:12 - 25:15] VarDecl=arr:25:12 (Definition)
52 // CHECK: Identifier: "p" [25:21 - 25:22] DeclRefExpr=p:22:28
54 // CHECK: Identifier: "p" [25:24 - 25:25] DeclRefExpr=p:22:28
58 // CHECK: Identifier: "array" [26:10 - 26:15] DeclRefExpr=array:23:19
60 // CHECK: Identifier: "index" [26:16 - 26:21] DeclRefExpr=index:22:18
64 // CHECK: Identifier: "oldObject" [33:3 - 33:12] DeclRefExpr=oldObject:32:17
66 // CHECK: Identifier: "dictionary" [33:15 - 33:25] DeclRefExpr=dictionary:30:24
68 // CHECK: Identifier: "key" [33:26 - 33:29] DeclRefExpr=key:31:1
    [all...]
annotate-toplevel-in-objccontainer.m 22 // CHECK-INTER: Identifier: "meth1" [5:8 - 5:13] ObjCInstanceMethodDecl=meth1:5:8
23 // CHECK-INTER: Identifier: "meth2" [6:8 - 6:13] ObjCInstanceMethodDecl=meth2:6:8
27 // CHECK-IMPL: Identifier: "meth1" [14:8 - 14:13] ObjCInstanceMethodDecl=meth1:14:8 (Definition)
28 // CHECK-IMPL: Identifier: "meth2" [15:8 - 15:13] ObjCInstanceMethodDecl=meth2:15:8 (Definition)
32 // CHECK-PCH: Identifier: "meth1" [7:8 - 7:13] ObjCInstanceMethodDecl=meth1:7:8
33 // CHECK-PCH: Identifier: "meth2" [8:8 - 8:13] ObjCInstanceMethodDecl=meth2:8:8
  /external/google-breakpad/src/common/linux/
file_id.cc 30 // file_id.cc: Return a unique identifier for a file
61 uint8_t identifier[kMDGUIDSize]) {
83 my_memset(identifier, 0, kMDGUIDSize);
84 memcpy(identifier, build_id,
91 // and copy as many bytes of it as will fit into |identifier|.
93 uint8_t identifier[kMDGUIDSize]) {
108 identifier);
111 identifier);
118 // a simple hash by XORing the first page worth of bytes into |identifier|.
120 uint8_t identifier[kMDGUIDSize])
    [all...]
file_id.h 30 // file_id.h: Return a unique identifier for a file
50 // Load the identifier for the elf file path specified in the constructor into
51 // |identifier|. Return false if the identifier could not be created for the
55 // XORing the first 4096 bytes of the .text section to generate an identifier.
56 bool ElfFileIdentifier(uint8_t identifier[kMDGUIDSize]);
58 // Load the identifier for the elf file mapped into memory at |base| into
59 // |identifier|. Return false if the identifier could not be created for the
62 uint8_t identifier[kMDGUIDSize])
    [all...]
  /external/selinux/checkpolicy/
policy_parse.y 143 %token IDENTIFIER
177 class_def : CLASS identifier
183 initial_sid_def : SID identifier
194 common_perms_def : COMMON identifier '{' identifier_list '}'
200 av_perms_def : CLASS identifier '{' identifier_list '}'
202 | CLASS identifier INHERITS identifier
204 | CLASS identifier INHERITS identifier '{' identifier_list '}'
255 sensitivity_def : SENSITIVITY identifier alias_def ';
847 identifier : IDENTIFIER label
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
nuances.rb 13 | {false}? Identifier
14 | Identifier
19 Identifier: 'a'..'z'+ ;
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
tab_list.py 20 def GetTabById(self, identifier):
21 """The identifier of a tab can be accessed with tab.id."""
22 return self._tab_list_backend.GetTabById(identifier)
  /external/clang/test/Sema/
warn-unused-variables.c 24 return Y + X; // expected-error {{use of undeclared identifier 'Y'}}
29 (void)(Y1 + X1); // expected-error {{use of undeclared identifier 'Y1'}}
31 (void)(^() { int X = 4; return Y + X; }); // expected-error {{use of undeclared identifier 'Y'}}
  /external/clang/test/SemaObjC/
severe-syntax-error.m 12 // expected-error {{expected identifier or '('}} \
16 // expected-error {{expected identifier or '('}} \
20 // expected-error {{expected identifier or '('}} \
  /external/javassist/sample/duplicate/
DuplicatedObject.java 29 public Object trapMethodcall(int identifier, Object[] args)
32 Object obj = super.trapMethodcall(identifier, args);
34 backup.trapMethodcall(identifier, args);
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpFileWriter.java 72 final Identifier identifier = database.createIdentifier(mDocumentId); local
74 manager.getObjectInfo(identifier.mDeviceId, identifier.mObjectHandle);
77 manager.deleteDocument(identifier.mDeviceId, identifier.mObjectHandle);
87 identifier.mDeviceId, targetObjectInfo, mCacheFd);
90 identifier.mDeviceId, newObjectHandle);
91 final Identifier parentIdentifier =
92 database.getParentIdentifier(identifier.mDocumentId)
    [all...]
Identifier.java 25 class Identifier {
32 Identifier(int deviceId, int storageId, int objectHandle, String documentId,
43 if (!(obj instanceof Identifier))
45 final Identifier other = (Identifier) obj;
58 builder.append("Identifier { ");
  /system/connectivity/shill/
technology.cc 46 Technology::Identifier Technology::IdentifierFromName(const string& name) {
73 string Technology::NameFromIdentifier(Technology::Identifier id) {
100 Technology::Identifier Technology::IdentifierFromStorageGroup(
113 vector<Identifier>* technologies_vector,
119 set<Technology::Identifier> seen;
131 Technology::Identifier identifier = Technology::IdentifierFromName(name); local
133 if (identifier == Technology::kUnknown) {
139 if (ContainsKey(seen, identifier)) {
144 seen.insert(identifier);
    [all...]
profile.h 58 struct Identifier {
59 Identifier() {}
60 explicit Identifier(const std::string& i) : identifier(i) {}
61 Identifier(const std::string& u, const std::string& i)
63 identifier(i) {
66 std::string identifier; member in struct:shill::Profile::Identifier
77 const Identifier& name,
169 // Parses a profile identifier. There're two acceptable forms of the |raw|
170 // identifier: "identifier" and "~user/identifier". Both "user" an
    [all...]
profile_unittest.cc 53 Profile::Identifier id("rather", "irrelevant");
70 bool ProfileInitStorage(const Profile::Identifier& id,
161 Profile::Identifier identifier; local
162 EXPECT_FALSE(Profile::ParseIdentifier("", &identifier));
163 EXPECT_FALSE(Profile::ParseIdentifier("~", &identifier));
164 EXPECT_FALSE(Profile::ParseIdentifier("~foo", &identifier));
165 EXPECT_FALSE(Profile::ParseIdentifier("~/", &identifier));
166 EXPECT_FALSE(Profile::ParseIdentifier("~bar/", &identifier));
167 EXPECT_FALSE(Profile::ParseIdentifier("~/zoo", &identifier));
191 Profile::Identifier identifier; local
    [all...]
  /external/clang/test/Preprocessor/
macro-reserved.cpp 55 #define __HAVE_X 0 // expected-warning {{macro name is a reserved identifier}}
56 #define _HAVE_X 0 // expected-warning {{macro name is a reserved identifier}}
57 #define X__Y // expected-warning {{macro name is a reserved identifier}}
59 #undef __cplusplus // expected-warning {{macro name is a reserved identifier}}
60 #undef _HAVE_X // expected-warning {{macro name is a reserved identifier}}
61 #undef X__Y // expected-warning {{macro name is a reserved identifier}}
  /libcore/luni/src/main/java/javax/xml/transform/
Source.java 29 * Set the system identifier for this Source.
31 * <p>The system identifier is optional if the source does not
33 * The application can use a system identifier, for example, to resolve
36 * @param systemId The system identifier as a URL string.
41 * Get the system identifier that was set with setSystemId.
43 * @return The system identifier that was set with setSystemId, or null
  /development/testrunner/
android_mk.py 64 def GetVariable(self, identifier):
68 identifier: name of variable to retrieve
70 value of specified identifier, None if identifier not found in makefile
73 # so None is returned if identifier not found
74 return self._variables.get(identifier, None)
76 def GetExpandedVariable(self, identifier):
83 identifier: name of variable to retrieve
85 value of specified identifier, None if identifier not found in makefil
    [all...]

Completed in 2541 milliseconds

1 2 34 5 6 7 8 91011>>