HomeSort by relevance Sort by last modified time
    Searched refs:Identifiers (Results 1 - 25 of 26) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
basic.rb 8 grammar Identifiers;
12 @identifiers = []
17 attr_reader :reported_errors, :identifiers
20 @identifiers << name
38 lexer = Identifiers::Lexer.new( input )
40 parser = Identifiers::Parser.new( tokens )
45 parser.identifiers.should == %w(blah_de_blah)
51 lexer = Identifiers::Lexer.new( '' )
52 parser = Identifiers::Parser.new( lexer )
64 parser = Identifiers::Parser.new( 'blah_de_blah', :file => 'blah.txt'
    [all...]
  /external/pdfium/xfa/src/fxfa/src/fm2js/
xfa_lexer.h 102 FX_DWORD Identifiers(CXFA_FMToken* t,
xfa_lexer.cpp 406 iRet = Identifiers(p, m_ptr, pTemp);
469 FX_DWORD CXFA_FMLexer::Identifiers(CXFA_FMToken* t,
  /external/clang/lib/Parse/
ParseOpenMP.cpp 94 SmallVector<Expr *, 5> Identifiers;
100 if (!ParseOpenMPSimpleVarList(OMPD_threadprivate, Identifiers, true)) {
110 return Actions.ActOnOpenMPThreadprivateDirective(Loc, Identifiers);
172 SmallVector<Expr *, 5> Identifiers;
190 if (!ParseOpenMPSimpleVarList(OMPD_threadprivate, Identifiers, false)) {
199 Actions.ActOnOpenMPThreadprivateDirective(Loc, Identifiers);
    [all...]
ParsePragma.cpp     [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 63 /// predefined values. Only handles simple tokens and identifiers.
70 assert(Kind != tok::raw_identifier && "Raw identifiers are not supported.");
72 "Identifiers should be created by TokenValue(IdentifierInfo *)");
120 /// Identifiers for builtin macros and other builtins.
186 /// \brief Mapping/lookup information for all identifiers in
188 mutable IdentifierTable Identifiers;
197 /// FIXME: Make sure the lifetime of Identifiers/Selectors *isn't* tied to
690 IdentifierTable &getIdentifierTable() { return Identifiers; }
691 const IdentifierTable &getIdentifierTable() const { return Identifiers; }
787 return isMacroDefined(&Identifiers.get(Id))
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/opsworks/
layer1.py 296 For more information about IAM ARNs, see `Using Identifiers`_.
307 information about IAM ARNs, see `Using Identifiers`_.
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
urlparse.py 5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding
11 RFC 2396: "Uniform Resource Identifiers (URI)": Generic Syntax by T.
  /prebuilts/gdb/linux-x86/lib/python2.7/
urlparse.py 5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding
11 RFC 2396: "Uniform Resource Identifiers (URI)": Generic Syntax by T.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urlparse.py 5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding
11 RFC 2396: "Uniform Resource Identifiers (URI)": Generic Syntax by T.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urlparse.py 5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding
11 RFC 2396: "Uniform Resource Identifiers (URI)": Generic Syntax by T.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/
response.py 499 Identifiers = Element(MarketplaceASIN=Element(),
542 Identifiers = Element(MarketplaceASIN=Element(),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddstor.h 546 UCHAR Identifiers[1];
winioctl.h     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_urllib.py 455 According to RFC 2396 ("Uniform Resource Identifiers), to escape a
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_urllib.py 455 According to RFC 2396 ("Uniform Resource Identifiers), to escape a
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib.py 455 According to RFC 2396 ("Uniform Resource Identifiers), to escape a
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib.py 455 According to RFC 2396 ("Uniform Resource Identifiers), to escape a
    [all...]
  /external/clang/lib/Lex/
Preprocessor.cpp 69 Identifiers(opts, IILookup),
592 "Can't handle identifiers without identifier info!");
628 "Can't handle identifiers without identifier info!");
762 // contextual keyword, so now we're looking for the identifiers.
765 // identifiers.
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
  /frameworks/base/docs/html/topic/performance/
performance_toc.cs     [all...]
  /frameworks/base/docs/html/training/
training_toc.cs     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/pydoc_data/
topics.py 4 'atom-identifiers': '\nIdentifiers (Names)\n*******************\n\nAn identifier occurring as an atom is a name. See section\n*Identifiers and keywords* for lexical definition and section *Naming\nand binding* for documentation of naming and binding.\n\nWhen the name is bound to an object, evaluation of the atom yields\nthat object. When a name is not bound, an attempt to evaluate it\nraises a ``NameError`` exception.\n\n**Private name mangling:** When an identifier that textually occurs in\na class definition begins with two or more underscore characters and\ndoes not end in two or more underscores, it is considered a *private\nname* of that class. Private names are transformed to a longer form\nbefore code is generated for them. The transformation inserts the\nclass name, with leading underscores removed and a single underscore\ninserted, in front of the name. For example, the identifier\n``__spam`` occurring in a class named ``Ham`` will be transformed to\n``_Ham__spam``. This transformation is independent of the syntactical\ncontext in which the identifier is used. If the transformed name is\nextremely long (longer than 255 characters), implementation defined\ntruncation may happen. If the class name consists only of underscores,\nno transformation is done.\n',
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/pydoc_data/
topics.py 4 'atom-identifiers': '\nIdentifiers (Names)\n*******************\n\nAn identifier occurring as an atom is a name. See section\n*Identifiers and keywords* for lexical definition and section *Naming\nand binding* for documentation of naming and binding.\n\nWhen the name is bound to an object, evaluation of the atom yields\nthat object. When a name is not bound, an attempt to evaluate it\nraises a ``NameError`` exception.\n\n**Private name mangling:** When an identifier that textually occurs in\na class definition begins with two or more underscore characters and\ndoes not end in two or more underscores, it is considered a *private\nname* of that class. Private names are transformed to a longer form\nbefore code is generated for them. The transformation inserts the\nclass name, with leading underscores removed and a single underscore\ninserted, in front of the name. For example, the identifier\n``__spam`` occurring in a class named ``Ham`` will be transformed to\n``_Ham__spam``. This transformation is independent of the syntactical\ncontext in which the identifier is used. If the transformed name is\nextremely long (longer than 255 characters), implementation defined\ntruncation may happen. If the class name consists only of underscores,\nno transformation is done.\n',
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py 4 'atom-identifiers': '\nIdentifiers (Names)\n*******************\n\nAn identifier occurring as an atom is a name. See section\n*Identifiers and keywords* for lexical definition and section *Naming\nand binding* for documentation of naming and binding.\n\nWhen the name is bound to an object, evaluation of the atom yields\nthat object. When a name is not bound, an attempt to evaluate it\nraises a ``NameError`` exception.\n\n**Private name mangling:** When an identifier that textually occurs in\na class definition begins with two or more underscore characters and\ndoes not end in two or more underscores, it is considered a *private\nname* of that class. Private names are transformed to a longer form\nbefore code is generated for them. The transformation inserts the\nclass name, with leading underscores removed and a single underscore\ninserted, in front of the name. For example, the identifier\n``__spam`` occurring in a class named ``Ham`` will be transformed to\n``_Ham__spam``. This transformation is independent of the syntactical\ncontext in which the identifier is used. If the transformed name is\nextremely long (longer than 255 characters), implementation defined\ntruncation may happen. If the class name consists only of underscores,\nno transformation is done.\n',
    [all...]

Completed in 722 milliseconds

1 2