HomeSort by relevance Sort by last modified time
    Searched defs:Identifier (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/llvm/include/llvm/Support/
MemoryBuffer.h 57 /// Return an identifier for this buffer, typically the filename it was read
150 StringRef Identifier;
155 : Buffer(Buffer.getBuffer()), Identifier(Buffer.getBufferIdentifier()) {}
156 MemoryBufferRef(StringRef Buffer, StringRef Identifier)
157 : Buffer(Buffer), Identifier(Identifier) {}
161 StringRef getBufferIdentifier() const { return Identifier; }
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
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 { ");
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 82 /// Variable decls are numbered by identifier.
84 const IdentifierInfo *Identifier = VD->getIdentifier();
85 if (!Identifier) {
86 // VarDecl without an identifier represents an anonymous union declaration.
87 Identifier = findAnonymousUnionVarDeclName(*VD);
89 return ++VarManglingNumbers[Identifier];
  /system/connectivity/shill/
technology.h 31 enum Identifier {
50 // Returns the technology identifier for a technology name in |name|,
52 static Identifier IdentifierFromName(const std::string& name);
54 // Returns the technology name for a technology identifier in |id|,
55 // or Technology::kUnknownName ("Unknown") if the technology identifier
57 static std::string NameFromIdentifier(Identifier id);
59 // Returns the technology identifier for a storage group identifier in
63 static Identifier IdentifierFromStorageGroup(const std::string& group);
72 std::vector<Identifier>* technologies_vector
    [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...]
  /external/clang/lib/Analysis/
FormatString.cpp 881 const IdentifierInfo *Identifier = Typedef->getIdentifier();
882 if (Identifier->getName() == "size_t") {
885 } else if (Identifier->getName() == "ssize_t") {
889 } else if (Identifier->getName() == "intmax_t") {
892 } else if (Identifier->getName() == "uintmax_t") {
895 } else if (Identifier->getName() == "ptrdiff_t") {
  /external/llvm/tools/llvm-pdbdump/
LinePrinter.h 72 Identifier,
  /system/connectivity/shill/dbus/
chromeos_wimax_network_proxy.cc 40 const char ChromeosWiMaxNetworkProxy::kPropertyIdentifier[] = "Identifier";
53 RegisterProperty(kPropertyIdentifier, &identifier);
101 uint32_t ChromeosWiMaxNetworkProxy::Identifier(Error* /*error*/) {
103 if (!properties_->identifier.GetAndBlock()) {
104 LOG(ERROR) << "Failed to get Identifier";
107 return properties_->identifier.value();
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 40 /// specifiers, each of which can be a namespace, type, identifier
63 /// can be an identifier, a declaration, or a type.
75 /// \brief An identifier, stored as an IdentifierInfo*.
76 Identifier,
113 /// \brief Builds a specifier combining a prefix and an identifier.
116 /// referencing an identifier are only permitted when the identifier
137 /// \brief Builds a specifier that consists of just an identifier.
167 /// \brief Retrieve the identifier stored in this nested name
392 /// nested-name-specifier component of the form 'identifier::'
    [all...]
TemplateName.h 451 /// \brief The identifier template name.
454 const IdentifierInfo *Identifier;
473 const IdentifierInfo *Identifier)
474 : Qualifier(Qualifier, false), Identifier(Identifier),
478 const IdentifierInfo *Identifier,
480 : Qualifier(Qualifier, false), Identifier(Identifier),
498 /// \brief Determine whether this template name refers to an identifier.
501 /// \brief Returns the identifier to which this template name refers
    [all...]
DeclarationName.h 51 Identifier,
83 /// StoredIdentifier - The name is a normal identifier, and Ptr is
166 /// for this name as a void pointer if it's not an identifier.
213 /// because an identifier can be a dependent name if it is used as the
222 /// simple identifier.
260 /// operator, retrieve the identifier associated with it.
355 /// identifier.
383 /// with II as the identifier.
391 // The source location for identifier stored elsewhere.
392 // struct {} Identifier;
    [all...]
  /external/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 316 /// Find the next identifier in the pragma directive specified by \p RawToken.
322 if (RawToken.is(tok::identifier))
471 StringRef Identifier = NextIdentifierName(RawLex, RawToken);
472 if (Identifier == "clang" || Identifier == "GCC") {
481 } else if (Identifier == "once") {
500 if (RawToken.is(tok::identifier)) {
  /external/llvm/lib/Support/
MemoryBuffer.cpp 435 StringRef Identifier = getBufferIdentifier();
436 return MemoryBufferRef(Data, Identifier);
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 29 Identifier,
85 /// Get the identifier string for the current token, which should be an
86 /// identifier or a string. This gets the portion of the string which should
87 /// be used as the identifier, e.g., it does not include the quotes on
90 if (Kind == Identifier)
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.cpp 186 static MIToken::TokenKind getIdentifierKind(StringRef Identifier) {
187 return StringSwitch<MIToken::TokenKind>(Identifier)
229 .Default(MIToken::Identifier);
238 auto Identifier = Range.upto(C);
239 Token.reset(getIdentifierKind(Identifier), Identifier)
240 .setStringValue(Identifier);
450 static MIToken::TokenKind getMetadataKeywordKind(StringRef Identifier) {
451 return StringSwitch<MIToken::TokenKind>(Identifier)
MILexer.h 97 // Identifier tokens
98 Identifier,
  /frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
BindingExpressionLexer.java 21 DoubleQuoteString=50, NullLiteral=51, Identifier=52, WS=53, ResourceReference=54,
44 "UnicodeEscape", "ZeroToThree", "NullLiteral", "Identifier", "JavaLetter",
62 "DoubleQuoteString", "NullLiteral", "Identifier", "WS", "ResourceReference",
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntddpcm.h 74 UCHAR Identifier[DEVICE_IDENTIFIER_LENGTH];
  /external/javassist/src/main/javassist/compiler/
TokenId.java 102 int Identifier = 400;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 283 StringRef Identifier) {
284 uint64_t Signature = DD->makeTypeSignature(Identifier);
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.h 388 StringRef Identifier;
395 StringRef Identifier)
400 TemplateParams(TemplateParams), Identifier(Identifier) {}
409 Identifier(N->getIdentifier()) {}
422 Identifier == RHS->getIdentifier();
427 VTableHolder, TemplateParams, Identifier);
    [all...]
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 741 Parser.Lex(); // Eat the identifier token.
759 // Parse an optional address-space identifier after the address.
800 Parser.Lex(); // Eat the identifier token.
841 case AsmToken::Identifier: {
842 StringRef Identifier;
843 if (!getParser().parseIdentifier(Identifier)) {
845 MCSymbol *Sym = getContext().getOrCreateSymbol(Identifier);
870 if (!getLexer().is(AsmToken::Identifier))
876 Parser.Lex(); // eat the identifier.
889 if (Tok.is(AsmToken::Identifier)) {
    [all...]
  /prebuilts/devtools/tools/lib/
annotations-12.0.jar 
  /prebuilts/tools/common/m2/repository/com/intellij/annotations/12.0/
annotations-12.0.jar 
  /prebuilts/tools/common/offline-m2/com/intellij/annotations/12.0/
annotations-12.0.jar 

Completed in 1541 milliseconds

1 2 3 4 5