OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:identifier
(Results
26 - 50
of
5290
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaCXX/
function-overload-typo-crash.cpp
10
fin(); //expected-error {{use of undeclared
identifier
'fin'; did you mean 'min'}}
11
fax(0); //expected-error {{use of undeclared
identifier
'fax'; did you mean 'max'}}
23
somefun(i, j); //expected-error {{use of undeclared
identifier
'somefun'; did you mean 'somefunc'?}}
24
somefun(x); //expected-error {{use of undeclared
identifier
'somefun'; did you mean 'somefunc'?}}
25
somefun(i, l); //expected-error {{use of undeclared
identifier
'somefun'; did you mean 'somefunc'?}}
26
somefun(l, x); //expected-error {{use of undeclared
identifier
'somefun'; did you mean 'somefunc'?}}
27
somefun(i, x); //expected-error {{use of undeclared
identifier
'somefun'; did you mean 'somefunc'?}}
no-implicit-builtin-decls.cpp
4
void *p = malloc(sizeof(int) * 10); // expected-error{{use of undeclared
identifier
'malloc'}}
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Primitive.java
38
* Tests provided
identifier
.
40
* @param
identifier
identifier
to be verified
41
* @return true if
identifier
correspond to primitive
identifier
of this
44
public final boolean checkTag(int
identifier
) {
45
return this.id ==
identifier
;
/frameworks/av/services/audiopolicy/engineconfigurable/src/
Strategy.h
41
* Returns
identifier
of this policy element
48
* Set the unique
identifier
for this policy element.
50
* @tparam Key type of the unique
identifier
.
51
* @param[in]
identifier
to be set.
53
* @return NO_ERROR if the
identifier
is valid and set correctly, error code otherwise.
55
status_t setIdentifier(routing_strategy
identifier
);
58
* @return the unique
identifier
of this policy element.
78
std::string mName; /**< Unique literal
Identifier
of a policy base element*/
79
routing_strategy mIdentifier; /**< Unique numerical
Identifier
of a policy base element*/
Usage.h
41
* Returns
identifier
of this policy element
48
* Set the unique
identifier
for this policy element.
50
* @tparam Key type of the unique
identifier
.
51
* @param[in]
identifier
to be set.
53
* @return NO_ERROR if the
identifier
is valid and set correctly, error code otherwise.
55
status_t setIdentifier(audio_usage_t
identifier
);
58
* @return the unique
identifier
of this policy element.
78
std::string mName; /**< Unique literal
Identifier
of a policy base element*/
79
audio_usage_t mIdentifier; /**< Unique numerical
Identifier
of a policy base element*/
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t014parser.g
26
'var' t=
IDENTIFIER
';'
31
t=
IDENTIFIER
'(' ')' ';'
35
IDENTIFIER
: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
t021hoist.g
6
/* With this true, enum is seen as a keyword. False, it's an
identifier
*/
12
:
identifier
{enumIs = "ID"}
16
identifier
t010lexer.g
6
IDENTIFIER
: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
t011lexer.g
6
IDENTIFIER
:
t013parser.g
20
t=
IDENTIFIER
{this.foundIdentifier($t.text)}
23
IDENTIFIER
: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
/external/antlr/antlr-3.4/runtime/Python/tests/
t014parser.g
25
'var' t=
IDENTIFIER
';'
30
t=
IDENTIFIER
'(' ')' ';'
34
IDENTIFIER
: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
t021hoist.g
6
/* With this true, enum is seen as a keyword. False, it's an
identifier
*/
12
:
identifier
{enumIs = "ID"}
16
identifier
t010lexer.g
6
IDENTIFIER
: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
t011lexer.g
6
IDENTIFIER
:
t013parser.g
20
t=
IDENTIFIER
{self.foundIdentifier($t.text)}
23
IDENTIFIER
: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
t050decorate.g
26
:
IDENTIFIER
29
IDENTIFIER
: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignatureEncryptionAlgorithmFinder.java
12
* Return the encryption algorithm
identifier
associated with the passed in signatureAlgorithm
13
* @param signatureAlgorithm the algorithm
identifier
of the signature of interest
14
* @return the algorithm
identifier
to be associated with the encryption algorithm used in signature creation.
/external/javassist/sample/reflect/
VerboseMetaobj.java
21
public Object trapMethodcall(int
identifier
, Object[] args)
23
System.out.println("** trap: " + getMethodName(
identifier
) + "() in "
25
return super.trapMethodcall(
identifier
, args);
/external/deqp/framework/randomshaders/
rsgToken.cpp
31
Token::Token (const char*
identifier
)
32
: m_type(
IDENTIFIER
)
34
m_arg.
identifier
= deStrdup(
identifier
);
35
if (!m_arg.
identifier
)
41
if (m_type ==
IDENTIFIER
)
42
deFree(m_arg.
identifier
);
47
if (m_type ==
IDENTIFIER
)
49
deFree(m_arg.
identifier
);
50
m_arg.
identifier
= DE_NULL
[
all
...]
/external/clang/test/CXX/class/class.mem/
p5-0x.cpp
8
int b = g(); // expected-error {{use of undeclared
identifier
'g'}}
/external/clang/test/Driver/
std.cpp
18
// CXX98: undeclared
identifier
'typeof'
19
// CXX98: undeclared
identifier
'decltype'
21
// GNUXX98-NOT: undeclared
identifier
'typeof'
22
// GNUXX98: undeclared
identifier
'decltype'
24
// CXX11: undeclared
identifier
'typeof'
25
// CXX11-NOT: undeclared
identifier
'decltype'
27
// GNUXX11-NOT: undeclared
identifier
'typeof'
28
// GNUXX11-NOT: undeclared
identifier
'decltype'
30
// CXX1Y: undeclared
identifier
'typeof'
31
// CXX1Y-NOT: undeclared
identifier
'decltype
[
all
...]
/external/clang/test/Parser/
if-scope-c99.c
7
return b; // expected-error{{use of undeclared
identifier
}}
/external/clang/test/Sema/
predef.c
8
char *X = __func__; // expected-warning {{predefined
identifier
is only valid}} \
16
const char *b = __func__; // expected-warning {{predefined
identifier
is only valid}}
17
const char *c = __FUNCTION__; // expected-warning {{predefined
identifier
is only valid}}
18
const char *d = __PRETTY_FUNCTION__; // expected-warning {{predefined
identifier
is only valid}}
/external/libxml2/result/XInclude/
nodes3.xml.err
1
./test/XInclude/docs/nodes3.xml:3: element include: XInclude error : Invalid fragment
identifier
in URI test/XInclude/ents/something.xml#xpointer(//p) use the xpointer attribute
/external/deqp/modules/gles2/scripts/
gen-keywords.py
21
float ${{
IDENTIFIER
}} = 1.0;
31
def __init__(self, name,
identifier
):
33
self.
identifier
=
identifier
37
"
IDENTIFIER
" : self.
identifier
}
81
for (name,
identifier
) in INVALID_IDENTIFIERS:
82
invalidIdentifiers.append(IdentifierCase(name,
identifier
)) # Invalid identifiers
Completed in 243 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>