HomeSort by relevance Sort by last modified time
    Searched defs:Name (Results 326 - 350 of 676) sorted by null

<<11121314151617181920>>

  /external/llvm/utils/TableGen/
CodeGenSchedule.h 48 std::string Name;
63 Name = Def->getName();
76 const std::string &Name)
77 : Index(Idx), Name(Name), TheDef(nullptr), IsRead(Read), IsAlias(false),
129 std::string Name;
162 // ModelName is a unique name used to name an instantiation of MCSchedModel.
199 CodeGenProcModel(unsigned Idx, const std::string &Name, Record *MDef,
201 Index(Idx), ModelName(Name), ModelDef(MDef), ItinsDef(IDef) {
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zItem.h 147 UString Name;
  /external/mesa3d/src/mesa/drivers/osmesa/
osmesa.c 97 get_string( struct gl_context *ctx, GLenum name )
100 switch (name) {
146 #define NAME flat_rgba_line
165 #define NAME flat_rgba_z_line
231 #define NAME smooth_rgba_z_triangle
263 #define NAME flat_rgba_z_triangle
512 const GLuint name = 0; local
516 _mesa_init_renderbuffer(&srb->Base, name);
    [all...]
  /external/openfst/src/include/fst/
symbol-table.h 69 SymbolTableImpl(const string &name)
70 : name_(name),
100 istream &strm, const string &name,
147 const string& Name() const { return name_; }
221 // Construct symbol table with an unspecified name.
224 // Construct symbol table with a unique name.
225 SymbolTable(const string& name) : impl_(new SymbolTableImpl(name)) {}
248 // name to give the resulting SymbolTable.
250 istream &strm, const string& name,
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
JS_EventHandler.cpp 464 FX_LPCWSTR CJS_EventHandler::Name()
  /external/sfntly/cpp/src/sfntly/table/core/
name_table.cc 109 UChar* NameTable::NameEntry::Name() {
168 void NameTable::NameEntryBuilder::SetName(const UChar* name) {
169 if (name == NULL) {
173 NameTable::ConvertToNameBytes(name,
489 ByteVector* name = entry->NameAsBytes(); local
490 std::copy(name->begin(), name->end(), b->begin());
494 UChar* NameTable::Name(int32_t index) {
500 UChar* NameTable::Name(int32_t platform_id,
507 return entry->Name();
    [all...]
  /external/skia/dm/
DMSrcSink.h 29 typedef ImplicitString Name;
61 virtual Name name() const = 0;
87 Name name() const override;
107 Name name() const override;
123 Name name() const override;
135 Name name() const override
    [all...]
  /external/v8/src/
types.cc 983 const char* TypeImpl<Config>::BitsetType::Name(bitset bits) {
1006 const char* name = Name(bits); local
1007 if (name != NULL) {
1008 os << name; local
1029 os << Name(subset);
    [all...]
  /frameworks/base/tools/aidl/
Type.h 26 Type(const string& name, int kind, bool canWriteToParcel,
28 Type(const string& package, const string& name,
34 inline string Name() const { return m_name; }
91 BasicType(const string& name,
357 UserDataType(const string& package, const string& name,
389 InterfaceType(const string& package, const string& name,
408 GenericType(const string& package, const string& name,
449 GenericListType(const string& package, const string& name,
479 void AddGenericType(const string& package, const string& name, int args);
481 // lookup a specific class name
493 string name; member in struct:Namespace::Generic
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
XMLParser.java 13 DTD=3, Name=16, EQUALS=14, PI=18, S=17, SLASH_CLOSE=12, TEXT=9, COMMENT=1,
18 "STRING", "Name", "S", "PI"
172 while (_la==Name) {
337 public TerminalNode Name(int i) {
338 return getToken(XMLParser.Name, i);
340 public List<? extends TerminalNode> Name() { return getTokens(XMLParser.Name); }
375 setState(60); _localctx.elmName = match(Name);
379 while (_la==Name) {
393 setState(71); match(Name);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
appmgmt.h 21 WCHAR *Name;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_util.py 12 from lib2to3.fixer_util import Attr, Name, Call, Comma
66 self.assertStr(Attr(Name("a"), Name("b")), "a.b")
67 self.assertStr(Attr(call, Name("b")), "foo().b")
70 attr = Attr(Name("a"), Name("b"))
76 self.assertStr(Name("a"), "a")
77 self.assertStr(Name("foo.foo().bar"), "foo.foo().bar")
78 self.assertStr(Name("a", prefix="b"), "ba")
82 def _Call(self, name, args=None, prefix=None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_util.py 12 from lib2to3.fixer_util import Attr, Name, Call, Comma
66 self.assertStr(Attr(Name("a"), Name("b")), "a.b")
67 self.assertStr(Attr(call, Name("b")), "foo().b")
70 attr = Attr(Name("a"), Name("b"))
76 self.assertStr(Name("a"), "a")
77 self.assertStr(Name("foo.foo().bar"), "foo.foo().bar")
78 self.assertStr(Name("a", prefix="b"), "ba")
82 def _Call(self, name, args=None, prefix=None)
    [all...]
  /art/cmdline/
cmdline_types.h 61 * Handle one of the JDWP name/value pairs.
71 * onthrow=<exception-name>: connect to debugger when exception thrown
119 Result ParseJdwpOption(const std::string& name, const std::string& value,
121 if (name == "transport") {
129 } else if (name == "server") {
137 } else if (name == "suspend") {
145 } else if (name == "address") {
165 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout")
    [all...]
  /external/clang/include/clang/AST/
Decl.h 144 /// NamedDecl - This represents a decl with a name. Many decls have names such
148 /// Name - The name of this declaration, which is typically a normal
149 /// identifier but may also be a special kind of name (C++
151 DeclarationName Name;
158 : Decl(DK, DC, L), Name(N) { }
163 /// no name (e.g., for an unnamed class) or if the name is a special
164 /// name (C++ constructor, Objective-C selector, etc.).
165 IdentifierInfo *getIdentifier() const { return Name.getAsIdentifierInfo();
    [all...]
DeclarationName.h 41 /// DeclarationName - The name of a declaration. In the common case,
43 /// name. However, it also provides encodings for Objective-C
49 /// NameKind - The kind of name this object contains.
65 /// StoredNameKind - The kind of name that is actually stored in the
78 /// Ptr - The lowest two bits are used to express what kind of name
80 /// on the kind of name this is, the upper bits of Ptr may have one
83 /// StoredIdentifier - The name is a normal identifier, and Ptr is
86 /// StoredObjCZeroArgSelector - The name is an Objective-C
88 /// pointer pointing to the selector name.
90 /// StoredObjCOneArgSelector - The name is an Objective-C selecto
    [all...]
TemplateBase.h 57 /// The template argument is a template name that was provided for a
60 /// The template argument is a pack expansion of a template name that was
103 void *Name;
156 /// parameters. However, the template name could be a dependent template
157 /// name that ends up being instantiated to a function template whose address
160 /// \param Name The template name.
161 TemplateArgument(TemplateName Name) {
163 TemplateArg.Name = Name.getAsVoidPointer()
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 84 // name strings have a lifetime that keeps them alive at least until the path
87 StringRef Name;
89 explicit CheckName(StringRef Name) : Name(Name) {}
93 CheckName(const CheckName &Other) : Name(Other.Name) {}
94 StringRef getName() const { return Name; }
110 void setCurrentCheckName(CheckName name) { CurrentCheckName = name; }
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 204 // is placed before the name being declared.
865 StringRef Name;
867 Name = II->getName();
868 printDeclType(NTTP->getType(), Name, NTTP->isParameterPack());
941 std::string name = OMD->getSelector().getAsString(); local
945 pos = name.find_first_of(':', lastPos);
946 Out << " " << name.substr(lastPos, pos - lastPos);
953 Out << " " << name; local
    [all...]
  /external/clang/lib/Basic/
IdentifierTable.cpp 187 static void AddObjCKeyword(StringRef Name,
190 Table.get(Name).setObjCKeywordID(ObjCID);
197 #define KEYWORD(NAME, FLAGS) \
198 AddKeyword(StringRef(#NAME), tok::kw_ ## NAME, \
200 #define ALIAS(NAME, TOK, FLAGS) \
201 AddKeyword(StringRef(NAME), tok::kw_ ## TOK, \
203 #define CXX_KEYWORD_OPERATOR(NAME, ALIAS) \
205 AddCXXOperatorKeyword(StringRef(#NAME), tok::ALIAS, *this);
206 #define OBJC1_AT_KEYWORD(NAME) \
    [all...]
  /external/clang/lib/CodeGen/
CGVTables.cpp 39 // Compute the mangled name.
40 SmallString<256> Name;
41 llvm::raw_svector_ostream Out(Name);
50 return GetOrCreateLLVMFunction(Name, Ty, GD, /*ForVTable=*/true,
405 // There's already a declaration with the same name, check if it has the same
415 // Remove the name from the old thunk function and get a new thunk.
634 // Get the mangled construction vtable name.
641 StringRef Name = OutName.str();
656 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType, Linkage);
    [all...]
  /external/clang/lib/Index/
CommentToXML.cpp 208 Result << Attr.Name;
355 Result << "<dt class=\"param-name-index-vararg\">";
358 Result << "<dt class=\"param-name-index-"
364 Result << "<dt class=\"param-name-index-invalid\">";
387 Result << "<dt class=\"tparam-name-index-"
391 Result << "<dt class=\"tparam-name-index-other\">";
394 Result << "<dt class=\"tparam-name-index-invalid\">";
601 // Form a unique in memory buffer name.
744 Result << "<Parameter><Name>";
748 Result << "</Name>";
    [all...]
  /external/clang/lib/Parse/
ParseTemplate.cpp 502 // Grab the template parameter name (if given)
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 49 /// \brief Describes a module, including its file name and dependencies.
56 /// \brief The name of the global index file.
191 // File name.
293 bool GlobalModuleIndex::lookupIdentifier(StringRef Name, HitSet &Hits) {
304 IdentifierIndexTable::iterator Known = Table.find(Name);
320 // Look for the module in the global module index based on the module name.
321 StringRef Name = File->ModuleName;
322 llvm::StringMap<unsigned>::iterator Known = UnresolvedModules.find(Name);
431 static void emitBlockID(unsigned ID, const char *Name,
438 // Emit the block name if present
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 228 std::string Name = (*I)->ExplicitDef->getValueAsString("GroupName");
248 Twine("group '") + Name +
265 std::string Name = NextDiagGroup->getValueAsString("GroupName");
270 Twine("group '") + Name +
362 Diag->getValueAsDef("DefaultSeverity")->getValueAsString("Name");
543 << R.getValueAsDef("DefaultSeverity")->getValueAsString("Name");
590 static std::string getDiagCategoryEnum(llvm::StringRef name) {
591 if (name.empty())
594 for (llvm::StringRef::iterator I = name.begin(), E = name.end(); I != E; ++I
    [all...]

Completed in 473 milliseconds

<<11121314151617181920>>