HomeSort by: relevance | last modified time | path
    Searched defs:String (Results 1 - 25 of 54) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
string.go 1 //===- string.go - Stringer implementation for Type -----------------------===//
17 func (t TypeKind) String() string {
53 func (t Type) String() string {
54 ts := typeStringer{s: make(map[Type]string)}
59 s map[Type]string
62 func (ts *typeStringer) typeString(t Type) string {
68 s := k.String()
target.go 115 // Creates target data from a target layout string.
117 func NewTargetData(rep string) (td TargetData) {
124 // Converts target data to a target layout string. The string must be disposed
127 func (td TargetData) String() (s string) {
216 func GetTargetFromTriple(triple string) (t Target, err error) {
228 func (t Target) Name() string {
232 func (t Target) Description() string {
241 func (t Target) CreateTargetMachine(Triple string, CPU string, Features string
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-string.h 32 // This header file declares the String class and functions used internally by
45 // string.h is not guaranteed to provide strcpy on C++ Builder.
49 #include <string.h>
50 #include <string>
57 // String - an abstract class holding static string utilities.
58 class GTEST_API_ String {
62 // Clones a 0-terminated C string, allocating memory using new. The
64 // delete[]. Returns the cloned string, or NULL if the input is
67 // This is different from strdup() in string.h, which allocate
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/
smbios.c 93 Return SMBIOS string given the string number.
97 StringNumber - String number to return. -1 is used to skip all strings and
101 Pointer to string, or pointer to next SMBIOS strcuture if StringNumber == -1
105 CHAR8 *String;
110 String = (CHAR8 *)(Smbios->Raw + Smbios->Hdr->Length);
117 return String;
121 // Skip string
123 for (; *String != 0; String++)
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXString.h 21 #include <string>
29 /// Create a CXString object for an empty "" string.
32 /// Create a CXString object for an NULL string.
34 /// A NULL string should be used as an "invalid" value in case of errors.
37 /// Create a CXString object from a nul-terminated C string. New
38 /// CXString may contain a pointer to \p String.
40 /// \p String should not be changed by the caller afterwards.
41 CXString createRef(const char *String);
43 /// Create a CXString object from a nul-terminated C string. New
44 /// CXString will contain a copy of \p String
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
dtsubtable.c 73 char *String;
80 String = UtLocalCacheCalloc (Length);
81 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
asldebug.c 70 * Fmt - Printf format string
158 * DESCRIPTION: Emit formatted debug output for String/Pathname ops.
167 char *String;
170 String = Op->Asl.Value.String;
176 * Value.String is the raw "internal" name from the AML code, which
181 String = Op->Asl.ExternalName;
185 if (!String)
188 " ERROR: Could not find a valid String/Path pointer\n");
192 String = UtCreateEscapeSequences (String)
    [all...]
dtcompile.c 495 char *String;
532 String = UtLocalCacheCalloc (Length);
533 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
673 /* Normal case for most field types (Integer, String, etc.) */
776 char *String;
783 String = UtLocalCacheCalloc (Length);
784 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
  /src/sys/external/bsd/acpica/dist/utilities/
utnonansi.c 53 * string functions.
60 * PARAMETERS: SrcString - The source string to convert
64 * DESCRIPTION: Convert a string to lowercase
72 char *String;
83 /* Walk entire string, lowercasing the letters */
85 for (String = SrcString; *String; String++)
87 *String = (char) tolower ((int) *String);
    [all...]
utobject.c 309 * PARAMETERS: StringSize - Size of string to be created. Does not
313 * RETURN: Pointer to a new String object
315 * DESCRIPTION: Create a fully initialized string object
324 char *String;
330 /* Create a new String object */
339 * Allocate the actual string buffer -- (Size + 1) for NULL terminator.
342 String = ACPI_ALLOCATE_ZEROED (StringSize + 1);
343 if (!String)
352 /* Complete string object initialization */
354 StringDesc->String.Pointer = String
    [all...]
utclib.c 259 * PARAMETERS: String - Null terminated string
263 * DESCRIPTION: Returns the length of the input string
270 const char *String)
275 /* Count the string until a null is encountered */
277 while (*String)
280 String++;
291 * PARAMETERS: String - Null terminated string
294 * RETURN: The first occurrence in the string of any of the bytes in th
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/scan-build/share/scan-build/
sorttable.js 466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
468 block.call(context, chr, index, string);
483 } else if (typeof object == "string") {
484 // the object is a string
485 resolve = String;
  /src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/resources/
sorttable.js 466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
468 block.call(context, chr, index, string);
483 } else if (typeof object == "string") {
484 // the object is a string
485 resolve = String;
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/
RISCVTargetStreamer.cpp 35 StringRef String) {}
46 std::string Arch = "rv32";
141 StringRef String) {
142 OS << "\t.attribute\t" << Attribute << ", \"" << String << "\"\n";
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MsgPackReader.h 55 String,
88 /// Value for \c Type::String and \c Type::Binary.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
WithColor.h 28 String,
58 /// To be used like this: WithColor(OS, HighlightColor::String) << "text";
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFExpression.cpp 390 /// A user-facing string representation of a DWARF expression. This might be an
399 SmallString<16> String;
422 raw_svector_ostream S(Stack.emplace_back(PrintedExpr::Value).String);
434 raw_svector_ostream S(Stack.emplace_back().String);
447 raw_svector_ostream S(Stack.emplace_back().String);
471 raw_svector_ostream S(Stack.emplace_back(PrintedExpr::Value).String);
482 raw_svector_ostream S(Stack.emplace_back().String);
501 OS << "[" << Stack.front().String << "]";
503 OS << Stack.front().String;
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 81 /// String representation of the type.
82 std::string asString() const;
136 virtual std::string getTypeAsString() const = 0;
222 /// String representation of the type of the value.
224 /// If the underlying matcher is a polymorphic one, the string will show all
226 std::string getTypeAsString() const;
266 VariantValue(StringRef String);
292 /// String value functions.
294 const std::string &getString() const;
295 void setString(StringRef String);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
FormatTokenLexer.cpp 40 for (const std::string &ForEachMacro : Style.ForEachMacros)
42 for (const std::string &AttributeMacro : Style.AttributeMacros)
44 for (const std::string &StatementMacro : Style.StatementMacros)
46 for (const std::string &TypenameMacro : Style.TypenameMacros)
48 for (const std::string &NamespaceMacro : Style.NamespaceMacros)
50 for (const std::string &WhitespaceSensitiveMacro :
55 for (const std::string &StatementAttributeLikeMacro :
75 // string literals are correctly identified.
187 auto &String = *(Tokens.end() - 1);
188 if (!At->is(tok::at) || !String->is(tok::string_literal)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
DIPrinter.cpp 28 #include <string>
93 StringRef String = PrunedSource->substr(
95 if (String.endswith("\r"))
96 String = String.drop_back(1);
102 OS << String << '\n';
276 static std::string toHex(uint64_t V) {
316 std::string FormattedSource;
  /src/external/bsd/openldap/dist/tests/progs/
ldif-filter.c 27 #include <ac/string.h>
35 typedef struct { char *val; size_t len, alloc; } String;
36 typedef struct { String *val; size_t len, alloc; } Strings;
43 static const String null_string = { NULL, 0, 0 };
90 #define APPEND(s /* String or Strings */, data, count, isString) do { \
113 return strcmp( ((const String *) s)->val, ((const String *) t)->val );
126 String *vals = ss->val, *e = &vals[n];
171 String *s;
  /src/external/gpl3/binutils/dist/gprofng/src/
ipcio.h 32 typedef char *String;
152 String readString (IPCrequest*);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
ipcio.h 32 typedef char *String;
152 String readString (IPCrequest*);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
WindowsResource.h 65 // Type and Name may each either be an integer ID or a string. This struct is
157 Error parse(WindowsResource *WR, std::vector<std::string> &Duplicates);
159 std::vector<std::string> &Duplicates);
160 void cleanUpManifests(std::vector<std::string> &Duplicates);
180 const Children<std::string> &getStringChildren() const {
224 Children<std::string> StringChildren;
236 ArrayRef<UTF16> String;
240 StringOrID(ArrayRef<UTF16> String) : IsString(true), String(String) {}
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AccelTable.cpp 385 Asm->OutStreamer->AddComment("Header: augmentation string size");
388 Asm->OutStreamer->AddComment("Header: augmentation string");
441 DwarfStringPoolEntryRef String = Hash->Name;
442 Asm->OutStreamer->AddComment("String in Bucket " + Twine(Bucket.index()) +
443 ": " + String.getString());
444 Asm->emitDwarfStringOffset(String);

Completed in 54 milliseconds

1 2 3