Searched refs:identifier (Results 101 - 125 of 527) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Duninit-variables.c269 int identifier; local
270 if ((test37_a() && (identifier = 1)) ||
271 (test37_b() && (identifier = 2))) {
272 return identifier; // no-warning
/external/devlib/devlib/utils/
H A Dtypes.py33 def identifier(text): function
34 """Converts text to a valid Python identifier by replacing all
/external/google-breakpad/src/processor/
H A Dmicrodump.cc285 string addr, offset, size, identifier, filename; local
289 mmap_tokens >> identifier; local
296 identifier, // code_identifier
298 identifier, // debug_identifier
H A Dpostfix_evaluator.h132 // if the topmost entry is a constant or variable identifier, and sets
133 // |identifier| accordingly. Returns POP_RESULT_FAIL on failure, such
135 PopResult PopValueOrIdentifier(ValueType *value, string *identifier);
138 // an identifier, the dictionary is queried for the identifier's value.
140 // a nonexistent identifier is named.
/external/guava/guava/src/com/google/common/eventbus/
H A DEventBus.java175 * Creates a new EventBus with the given {@code identifier}.
177 * @param identifier a brief name for this bus, for logging purposes. Should
178 * be a valid Java identifier.
180 public EventBus(String identifier) { argument
181 this(new LoggingSubscriberExceptionHandler(identifier));
368 * this class, followed by the identifier provided at construction.
373 * @param identifier a brief name for this bus, for logging purposes. Should
374 * be a valid Java identifier.
376 public LoggingSubscriberExceptionHandler(String identifier) { argument
378 EventBus.class.getName() + "." + checkNotNull(identifier));
[all...]
/external/javassist/src/main/javassist/tools/rmi/
H A DAppletServer.java104 * @return the object identifier
116 eo.identifier = exportedObjects.size() - 1;
127 return eo.identifier;
236 out.writeInt(found.identifier);
247 public int identifier; field in class:ExportedObject
/external/llvm/test/MC/AArch64/
H A Darm64-directive_loh.s60 # Unknown textual identifier.
61 # CHECK-ERRORS: error: invalid identifier in directive
65 # Unknown numeric identifier.
66 # CHECK-ERRORS: error: invalid numeric identifier in directive
/external/swiftshader/src/Main/
H A DSwiftConfig.hpp36 int identifier; member in struct:sw::SwiftConfig::Configuration
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_defs.h20 u8 identifier; member in struct:eap_hdr
21 be16 length; /* including code and identifier; network byte order */
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_tls_common.h71 u8 code, u8 identifier);
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dasn1.h50 u8 identifier, class, constructed; member in struct:asn1_hdr
/external/wpa_supplicant_8/src/eap_common/
H A Deap_defs.h20 u8 identifier; member in struct:eap_hdr
21 be16 length; /* including code and identifier; network byte order */
/external/wpa_supplicant_8/src/eap_server/
H A Deap_tls_common.h71 u8 code, u8 identifier);
/external/wpa_supplicant_8/src/tls/
H A Dasn1.h50 u8 identifier, class, constructed; member in struct:asn1_hdr
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_defs.h20 u8 identifier; member in struct:eap_hdr
21 be16 length; /* including code and identifier; network byte order */
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_tls_common.h71 u8 code, u8 identifier);
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dasn1.h50 u8 identifier, class, constructed; member in struct:asn1_hdr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dparser.ml13 * ::= identifier
26 * ::= identifier
27 * ::= identifier '(' argumentexpr ')' *)
56 ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression *)
58 'Token.Ident id ?? "expected identifier after for";
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dparser.ml13 * ::= identifier
26 * ::= identifier
27 * ::= identifier '(' argumentexpr ')' *)
56 ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression *)
58 'Token.Ident id ?? "expected identifier after for";
/external/mesa3d/src/compiler/glsl/
H A Dast.h220 ast_expression(const char *identifier) : argument
226 primary_expression.identifier = identifier;
252 const char *identifier; member in union:ast_expression::__anon14586
442 ast_declaration(const char *identifier,
447 const char *identifier; member in class:ast_declaration
812 ast_struct_specifier(void *lin_ctx, const char *identifier,
907 identifier(NULL),
921 const char *identifier; member in class:ast_parameter_declarator
951 const char *identifier; member in class:ast_function
[all...]
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
H A Dparser.ml13 * ::= identifier
26 * ::= identifier
27 * ::= identifier '(' argumentexpr ')' *)
56 ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression *)
58 'Token.Ident id ?? "expected identifier after for";
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
H A Dparser.ml13 * ::= identifier
26 * ::= identifier
27 * ::= identifier '(' argumentexpr ')' *)
56 ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression *)
58 'Token.Ident id ?? "expected identifier after for";
/external/google-breakpad/src/client/mac/handler/
H A Dminidump_generator.cc1428 // Get the module identifier
1429 unsigned char identifier[16]; local
1435 result = macho.UUIDCommand(cpu_type, CPU_SUBTYPE_MULTIPLE, identifier);
1437 result = macho.MD5(cpu_type, CPU_SUBTYPE_MULTIPLE, identifier);
1443 identifier);
1448 static_cast<uint32_t>(identifier[0]) << 24 |
1449 static_cast<uint32_t>(identifier[1]) << 16 |
1450 static_cast<uint32_t>(identifier[2]) << 8 |
1451 static_cast<uint32_t>(identifier[3]);
1453 static_cast<uint16_t>(identifier[
[all...]
/external/swiftshader/src/OpenGL/compiler/
H A DParseHelper.cpp513 bool TParseContext::reservedErrorCheck(const TSourceLoc &line, const TString& identifier) argument
517 if (identifier.compare(0, 3, "gl_") == 0) {
521 if (identifier.find("__") != TString::npos) {
522 error(line, "identifiers containing two consecutive underscores (__) are reserved as possible future keywords", identifier.c_str());
643 bool TParseContext::voidErrorCheck(const TSourceLoc &line, const TString& identifier, const TBasicType& type) argument
646 error(line, "illegal use of type 'void'", identifier.c_str());
937 error(line, " undeclared identifier", node->getSymbol().c_str());
981 bool TParseContext::nonInitConstErrorCheck(const TSourceLoc &line, TString& identifier, TPublicType& type, bool array) argument
990 error(line, "arrays may not be declared constant since they cannot be initialized", identifier.c_str());
994 error(line, "structures containing arrays may not be declared constant since they cannot be initialized", identifier
1013 nonInitErrorCheck(const TSourceLoc &line, const TString& identifier, TPublicType& type) argument
1048 declareVariable(const TSourceLoc &line, const TString &identifier, const TType &type, TVariable **variable) argument
1275 executeInitializer(const TSourceLoc& line, const TString& identifier, const TPublicType& pType, TIntermTyped *initializer, TIntermNode **intermNode) argument
1479 parseSingleDeclaration(TPublicType &publicType, const TSourceLoc &identifierOrTypeLocation, const TString &identifier) argument
1517 parseSingleArrayDeclaration(TPublicType &publicType, const TSourceLoc &identifierLocation, const TString &identifier, const TSourceLoc &indexLocation, TIntermTyped *indexExpression) argument
1558 parseSingleInitDeclaration(const TPublicType &publicType, const TSourceLoc &identifierLocation, const TString &identifier, const TSourceLoc &initLocation, TIntermTyped *initializer) argument
1584 parseSingleArrayInitDeclaration(TPublicType &publicType, const TSourceLoc &identifierLocation, const TString &identifier, const TSourceLoc &indexLocation, TIntermTyped *indexExpression, const TSourceLoc &initLocation, TIntermTyped *initializer) argument
1627 parseInvariantDeclaration(const TSourceLoc &invariantLoc, const TSourceLoc &identifierLoc, const TString *identifier, const TSymbol *symbol) argument
1666 parseDeclarator(TPublicType &publicType, TIntermAggregate *aggregateDeclaration, const TSourceLoc &identifierLocation, const TString &identifier) argument
1694 parseArrayDeclarator(TPublicType &publicType, TIntermAggregate *aggregateDeclaration, const TSourceLoc &identifierLocation, const TString &identifier, const TSourceLoc &arrayLocation, TIntermTyped *indexExpression) argument
1740 parseInitDeclarator(const TPublicType &publicType, TIntermAggregate *aggregateDeclaration, const TSourceLoc &identifierLocation, const TString &identifier, const TSourceLoc &initLocation, TIntermTyped *initializer) argument
1777 parseArrayInitDeclarator(const TPublicType &publicType, TIntermAggregate *aggregateDeclaration, const TSourceLoc &identifierLocation, const TString &identifier, const TSourceLoc &indexLocation, TIntermTyped *indexExpression, const TSourceLoc &initLocation, TIntermTyped *initializer) argument
2335 addConstStruct(const TString& identifier, TIntermTyped* node, const TSourceLoc &line) argument
3089 enterStructDeclaration(const TSourceLoc &line, const TString& identifier) argument
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dparser.ml13 * ::= identifier
24 * ::= identifier
25 * ::= identifier '(' argumentexpr ')' *)

Completed in 590 milliseconds

1234567891011>>