HomeSort by relevance Sort by last modified time
    Searched defs:Name (Results 101 - 125 of 258) sorted by null

1 2 3 45 6 7 8 91011

  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 74 cl::opt<bool> PrintFileName("print-file-name",
77 cl::alias PrintFileNameA("A", cl::desc("Alias for --print-file-name"),
79 cl::alias PrintFileNameo("o", cl::desc("Alias for --print-file-name"),
118 StringRef Name;
124 else if (a.Address == b.Address && a.Name < b.Name)
134 else if (a.Size == b.Size && a.Name < b.Name)
141 return a.Name < b.Name;
    [all...]
  /external/llvm/tools/opt/
opt.cpp 374 std::string Name;
377 getContextName(SP.getContext(), Name);
378 Name = Name + SP.getDisplayName().str();
379 if (!Name.empty() && Processed.insert(Name)) {
380 Out << Name << "\n";
  /external/llvm/utils/TableGen/
CodeGenInstruction.cpp 37 throw R->getName() + ": invalid def name for output list: use 'outs'";
46 throw R->getName() + ": invalid def name for input list: use 'ins'";
108 // Check that the operand has a name and that it's unique.
111 " has no name!";
114 " has the same name as a previous operand!";
131 /// non-empty name. If the instruction does not have an operand with the
132 /// specified name, throw an exception.
134 unsigned CGIOperandList::getOperandNamed(StringRef Name) const {
136 if (hasOperandNamed(Name, OpIdx)) return OpIdx;
138 Name.str() + "'!"
    [all...]
CodeGenRegisters.h 98 std::string Name;
123 const std::string &getName() const { return Name; }
214 CodeGenRegisterClass(StringRef Name, Key Props);
258 // have a unique name.
RegisterInfoEmitter.cpp 80 OS << "\n// Register alternate name indices\n";
187 // Sort by name to get a stable order.
343 // Give the register class a legal C name if it's anonymous.
344 std::string Name = RC.getName();
347 OS << " // " << Name << " Register Class...\n"
348 << " static const unsigned " << Name
356 OS << " // " << Name << " Bit set.\n"
357 << " static const unsigned char " << Name
456 const std::string &Name = RC.getName();
459 OS << " struct " << Name << "Class : public TargetRegisterClass {\n
    [all...]
SetTheory.cpp 142 // (sequence "Format", From, To) Generate a sequence of records by name.
174 std::string Name;
175 raw_string_ostream OS(Name);
179 throw "No def named '" + Name + "': " + Expr->getAsString();
213 void SetTheory::addOperator(StringRef Name, Operator *Op) {
214 Operators[Name] = Op;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
symbol-table.h 40 SymbolTableImpl(const string &name)
41 : name_(name), available_key_(0), ref_count_(1),
100 const string& Name() const { return name_; }
161 // Construct symbol table with a unique name.
162 SymbolTable(const string& name) : impl_(new SymbolTableImpl(name)) {}
208 // name spaces of transducers to a unified representation.
215 // return the name of the symbol table
216 const string& Name() const {
217 return impl_->Name();
    [all...]
  /external/v8/tools/
stats-viewer.py 14 # * Neither the name of Google Inc. nor the names of its
67 data_name: the name of the file containing the counters.
146 name = counter.Name()
147 if name in self.ui_counters:
149 ui_counter = self.ui_counters[name]
176 """Group the counters by the suffix of their name.
191 name = counter.Name()
192 names[name] = counte
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-103087.js 44 var Name = "(" + NameStrt + ")(" + NameChar + ")*";
53 var DT_IdentSE = S + Name + "(" + S + "(" + Name + "|" + QuoteSE + "))*";
58 var DT_ItemSE = "<(!(--" + Until2Hyphens + ">|[^-]" + MarkupDeclCE + ")|\\?" + Name + "(" + PI_Tail + "))|%" + Name + ";|" + S;
61 var PI_CE = Name + "(" + PI_Tail + ")?";
62 var EndTagCE = Name + "(" + S + ")?>?";
64 var ElemTagCE = Name + "(" + S + Name + "(" + S + ")?=(" + S + ")?(" + AttValSE + "))*(" + S + ")?/?>?";
69 var PI_RE = "<\\?" + Name + "(" + PI_Tail + ")"
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebLocalizedString.h 14 * * Neither the name of Google Inc. nor the names of its
37 enum Name {
  /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; }
83 BasicType(const string& name, const string& marshallMethod,
313 ParcelableType(const string& package, const string& name,
338 InterfaceType(const string& package, const string& name,
357 GenericType(const string& package, const string& name,
381 GenericListType(const string& package, const string& name,
412 void AddGenericType(const string& package, const string& name, int args);
414 // lookup a specific class name
426 string name; member in struct:Namespace::Generic
    [all...]
  /frameworks/base/tools/localize/
XMLHandler.h 20 string name; member in struct:XMLAttribute
25 XMLAttribute(string ns, string name, string value);
38 const string& ns, const string& name, const string& def);
66 static XMLNode* NewElement(const SourcePos& pos, const string& ns, const string& name,
88 inline string Name() const { return m_name; }
94 vector<XMLNode*> GetElementsByName(const string& ns, const string& name) const;
95 XMLNode* GetElementByNameAt(const string& ns, const string& name, size_t index) const;
96 size_t CountElementsByName(const string& ns, const string& name) const;
97 string GetAttribute(const string& ns, const string& name, const string& def) const;
139 virtual int OnStartElement(const SourcePos& pos, const string& ns, const string& name,
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
Attributes.java 28 * Attribute keys are generally instances of {@code Attributes.Name}. Values
34 * The {@code Attributes} as name/value pairs. Maps the attribute names (as
35 * {@link Attributes.Name}) of a JAR file manifest to arbitrary values. The
42 * The name part of the name/value pairs constituting an attribute as
47 * name = alphanum *headerchar
52 public static class Name {
53 private final String name; field in class:Attributes.Name
56 public static final Name CLASS_PATH = new Name("Class-Path")
    [all...]
  /external/chromium/net/disk_cache/
block_files.cc 371 FilePath name = Name(index); local
377 base::CreatePlatformFile(name, flags, NULL, NULL)));
396 FilePath name = Name(index); local
399 if (!file->Init(name, kBlockHeaderSize)) {
400 LOG(ERROR) << "Failed to open " << name.value();
406 LOG(ERROR) << "File too small " << name.value();
424 LOG(ERROR) << "File too small " << name.value();
547 FilePath name = Name(file_index) local
    [all...]
  /external/chromium/third_party/libevent/
event_rpcgen.py 26 def __init__(self, name):
27 self._name = name
30 print >>sys.stderr, ' Created struct: %s' % name
36 entry.Name(), entry.Tag(),
40 self._tags[entry.Tag()] = entry.Name()
41 print >>sys.stderr, ' Added entry: %s' % entry.Name()
43 def Name(self):
47 """Creates the name inside an enumeration for distinguishing data
49 name = "%s_%s" % (self._name, entry.Name())
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 54 /// The template argument is a template name that was provided for a
57 /// The template argument is a pack expansion of a template name that was
83 void *Name;
118 /// parameters. However, the template name could be a dependent template
119 /// name that ends up being instantiated to a function template whose address
122 /// \param Name The template name.
123 TemplateArgument(TemplateName Name) : Kind(Template)
125 TemplateArg.Name = Name.getAsVoidPointer()
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 138 /// \brief The name of the macro being defined.
139 const IdentifierInfo *Name;
142 explicit MacroDefinition(const IdentifierInfo *Name, SourceRange Range)
143 : PreprocessingDirective(MacroDefinitionKind, Range), Name(Name) { }
145 /// \brief Retrieve the name of the macro being defined.
146 const IdentifierInfo *getName() const { return Name; }
148 /// \brief Retrieve the location of the macro name in the definition.
160 /// \brief The definition of this macro or the name of the macro if it is
176 /// \brief The name of the macro being expanded
    [all...]
  /external/clang/lib/AST/
StmtDumper.cpp 251 std::string Name = VD->getNameAsString();
252 VD->getType().getAsStringInternal(Name,
254 OS << Name;
  /external/clang/lib/Basic/
IdentifierTable.cpp 149 static void AddObjCKeyword(StringRef Name,
152 Table.get(Name).setObjCKeywordID(ObjCID);
159 #define KEYWORD(NAME, FLAGS) \
160 AddKeyword(StringRef(#NAME), tok::kw_ ## NAME, \
162 #define ALIAS(NAME, TOK, FLAGS) \
163 AddKeyword(StringRef(NAME), tok::kw_ ## TOK, \
165 #define CXX_KEYWORD_OPERATOR(NAME, ALIAS) \
167 AddCXXOperatorKeyword(StringRef(#NAME), tok::ALIAS, *this);
168 #define OBJC1_AT_KEYWORD(NAME) \
    [all...]
  /external/clang/lib/CodeGen/
CGVTables.cpp 65 // Compute the mangled name.
66 llvm::SmallString<256> Name;
67 llvm::raw_svector_ostream Out(Name);
76 return GetOrCreateLLVMFunction(Name, Ty, GD, /*ForVTable=*/true);
413 // There's already a declaration with the same name, check if it has the same
423 // Remove the name from the old thunk function and get a new thunk.
629 StringRef Name = OutName.str();
637 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType,
679 // Get the mangled construction vtable name.
686 StringRef Name = OutName.str()
    [all...]
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp     [all...]
  /external/libvpx/libmkv/
EbmlIDs.h 105 Name = 0x536E,
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 100 std::string Name;
102 VariableExprAST(const std::string &name) : Name(name) {}
127 /// which captures its name, and its argument names (thus implicitly the number
130 std::string Name;
133 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
134 : Name(name), Args(args) {}
297 return ErrorP("Expected function name in prototype")
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 107 std::string Name;
109 VariableExprAST(const std::string &name) : Name(name) {}
134 /// which captures its name, and its argument names (thus implicitly the number
137 std::string Name;
140 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
141 : Name(name), Args(args) {}
304 return ErrorP("Expected function name in prototype")
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 34 std::string Name;
46 /// block/record name information in the BlockInfo block. Only llvm-bcanalyzer
83 /// name information.
621 if (BitStream->isIgnoringBlockInfoNames()) break; // Ignore name.
622 std::string Name;
624 Name += (char)Record[i];
625 CurBlockInfo->Name = Name;
630 if (BitStream->isIgnoringBlockInfoNames()) break; // Ignore name.
631 std::string Name;
    [all...]

Completed in 752 milliseconds

1 2 3 45 6 7 8 91011