HomeSort by relevance Sort by last modified time
    Searched defs:String (Results 676 - 700 of 1088) sorted by null

<<21222324252627282930>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
StringDB.h 18 Common defines and prototypes for string database management
84 UINT32 Size; // number of bytes in string, including null terminator
88 WCHAR *Str; // the actual string
89 UINT16 Flags; // properties of this string (used, undefined)
97 STRING_LIST *String;
102 // We also keep track of all the string identifier names, which we assign unique
124 STRING_IDENTIFIER *CurrentStringIdentifier; // keep track of the last string identifier they added
150 WCHAR *String,
252 WCHAR *String
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
UpdatePage.c 829 // Build mode string Column x Row
1170 CHAR16 String[100];
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/BootManagerMenuApp/
BootManagerMenu.c 37 Prints a unicode string to the default console, at
40 @param Column The cursor position to print the string at.
41 @param Row The cursor position to print the string at
42 @param String String pointer.
44 @return Length of string printed to the console
51 IN CHAR16 *String
56 return Print (L"%s", String);
63 @param Column The cursor position to print the string at.
64 @param Row The cursor position to print the string at.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/CustomizedDisplayLib/
CustomizedDisplayLib.c 407 @param ... String to be shown in Popup. The variable argument list is terminated by a NULL.
429 CHAR16 *String;
454 while ((String = VA_ARG (Marker, CHAR16 *)) != NULL) {
457 if ((LibGetStringWidth (String) / 2) > LargestString) {
458 LargestString = (LibGetStringWidth (String) / 2);
496 String = VA_ARG (Marker, CHAR16*);
498 if (String[0] == CHAR_NULL) {
503 } else if (String[0] == L' ') {
509 ((DimensionsWidth - LibGetStringWidth (String) / 2) / 2) + gScreenDimensions.LeftColumn + 1,
511 String + 1
    [all...]
CustomizedDisplayLibInternal.c 451 Get the string based on the StringId and HII Package List Handle.
453 @param Token The String's ID.
455 the specified string.
457 @return The output string.
466 EFI_STRING String;
468 String = HiiGetString (HiiHandle, Token, NULL);
469 if (String == NULL) {
470 String = AllocateCopyPool (StrSize (mLibUnknownString), mLibUnknownString);
471 ASSERT (String != NULL);
474 return (CHAR16 *) String;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
ProcessOptions.c 21 Concatenate a narrow string to another string.
23 @param Destination The destination string.
24 @param DestMax The Max length of destination string.
25 @param Source The source string. The string to be concatenated.
42 // We now have the length of the original string
43 // We can safely assume for now that we are concatenating a narrow value to this string.
44 // For instance, the string is "XYZ" and cat'ing ">"
213 @param HiiHandle Only required for string compare.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiMisc.c 20 Removes (trims) specified leading and trailing characters from a string.
22 @param[in, out] Str Pointer to the null-terminated string to be trimmed.
23 On return, Str will hold the trimmed string.
115 Convert the hexadecimal encoded LUN string into the 64-bit LUN.
117 @param[in] Str The hexadecimal encoded LUN string.
121 @retval EFI_INVALID_PARAMETER The string is malformatted.
192 Convert the 64-bit LUN into the hexadecimal encoded LUN string.
195 @param[out] Str The storage to return the hexadecimal encoded LUN string.
244 @param[in] Str The UNICODE string.
246 @param[out] Ip The storage to return the ASCII string.
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
JUnitCodeGen.java 49 public Map<String, String> ruleWithReturn;
50 private final String testsuiteDir;
51 private String outputDirectoryPath = ".";
59 public JUnitCodeGen(GrammarInfo grammarInfo, String testsuiteDir) throws ClassNotFoundException {
71 public JUnitCodeGen(GrammarInfo grammarInfo, ClassLoader classLoader, String testsuiteDir) throws ClassNotFoundException {
75 ruleWithReturn = new HashMap<String, String>();
86 String parserClassName = grammarInfo.getGrammarName() + "Parser";
93 public String getOutputDirectoryPath()
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
SimpleLog.java 86 static protected final String systemPrefix =
93 static protected final String DEFAULT_DATE_TIME_FORMAT =
106 static protected String dateTimeFormat = DEFAULT_DATE_TIME_FORMAT;
134 private static String getStringProperty(String name) {
135 String prop = null;
144 private static String getStringProperty(String name, String dephault) {
145 String prop = getStringProperty(name)
    [all...]
  /external/clang/test/PCH/
cxx-templates.h 200 struct String {
202 static String adopt(Vector<char, inlineCapacity>&);
206 inline bool equalIgnoringNullity(const Vector<char, inlineCapacity>& a, const String& b) { return false; }
  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 143 AK_String, ///< A string argument, displayed as-is.
154 Arg(const char *String) : Kind(AK_String), String(String) {}
155 Arg(TypeName TN) : Kind(AK_TypeName), String(TN.getName()) {}
163 const char *String;
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ThreadFactoryBuilderTest.java 97 String format = "super-duper-thread-%s";
100 assertEquals(String.format(format, i),
106 String format = "super-duper-thread-%d";
109 assertEquals(String.format(format, i),
179 final String THREAD_NAME = "ludicrous speed";
  /external/guice/core/test/com/google/inject/
PrivateModuleTest.java 46 bind(String.class).annotatedWith(named("a")).toInstance("public");
50 bind(String.class).annotatedWith(named("b")).toInstance("i");
59 bind(String.class).annotatedWith(named("b")).toInstance("ii");
81 bindA.bind(String.class).annotatedWith(named("a")).toInstance("i");
82 bindA.expose(String.class).annotatedWith(named("a"));
83 bindA.bind(String.class).annotatedWith(named("c")).toInstance("private to A");
86 bindB.bind(String.class).annotatedWith(named("b")).toInstance("ii");
87 bindB.expose(String.class).annotatedWith(named("b"));
88 bindB.bind(String.class).annotatedWith(named("c")).toInstance("private to B");
92 assertEquals("i", injector.getInstance(Key.get(String.class, named("a"))))
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
UnicodeSetCloseOver.java 50 static final String JAVA_OUT = "to_UnicodeSet.java";
51 static final String JAVA_CHARPROP_OUT = "to_UCharacterProperty.java";
52 static final String C_SET_OUT = "to_uniset.cpp";
53 static final String C_UCHAR_OUT = "to_uchar.c";
56 static final String WARNING = "MACHINE-GENERATED; Unicode version " +
65 public static void main(String[] args) throws IOException {
75 * Create a map of String => Set. The String in this case is a
76 * folded string for which
89 String cp = UTF16.valueOf(i)
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 31 // String values.
33 String,
85 /// Get the contents of a string token (without quotes).
87 assert(Kind == String && "This token isn't a string!");
91 /// Get the identifier string for the current token, which should be an
92 /// identifier or a string. This gets the portion of the string which should
101 /// Get the string for the current token, this includes all characters (for
131 std::string Err
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.cpp 29 /// string.
73 MIToken &MIToken::setOwnedStringValue(std::string StrVal) {
109 /// Unescapes the given string value.
111 /// Expects the string value to be quoted.
112 static std::string unescapeQuotedString(StringRef Value) {
116 std::string Str;
139 /// Lex a string constant using the following regular expression: \"[^\"]*\"
160 StringRef String = Range.upto(R);
161 Token.reset(Type, String)
163 unescapeQuotedString(String.drop_front(PrefixLength)))
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 22 #include <string>
47 MultiClass, String,
60 // String valued tokens.
75 std::string CurStrVal; // This is valid for ID, STRVAL, VARNAME, CODEFRAGMENT
83 typedef std::map<std::string, SMLoc> DependenciesMapTy;
101 const std::string &getCurStrVal() const {
104 "This token doesn't have a string value");
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.cpp 84 const char *String = reinterpret_cast<const char*>(Data + Offset);
85 size_t Length = std::strlen(String);
87 return StringRef(String, Length);
340 std::string Description;
342 Description = std::string(Strings[Value]);
344 Description = std::string("8-byte alignment, ") + utostr(1ULL << Value)
345 + std::string("-byte extended alignment");
361 std::string Description;
363 Description = std::string(Strings[Value]);
365 Description = std::string("8-byte stack alignment, ")
    [all...]
  /external/skia/src/pdf/
SkPDFTypes.cpp 99 // Given an arbitrary string, write it as a valid name (not including
215 SkPDFUnion SkPDFUnion::String(const char* value) {
228 SkPDFUnion SkPDFUnion::String(const SkString& s) {
327 this->append(SkPDFUnion::String(value));
331 this->append(SkPDFUnion::String(value));
431 fRecords.emplace_back(SkPDFUnion::Name(key), SkPDFUnion::String(value));
435 fRecords.emplace_back(SkPDFUnion::Name(key), SkPDFUnion::String(value));
  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/
SimpleLog.java 85 static protected final String systemPrefix = "org.apache.commons.logging.simplelog.";
91 static protected final String DEFAULT_DATE_TIME_FORMAT = "yyyy/MM/dd HH:mm:ss:SSS zzz";
104 static protected String dateTimeFormat = DEFAULT_DATE_TIME_FORMAT;
131 private static String getStringProperty(String name) {
132 String prop = null;
141 private static String getStringProperty(String name, String dephault) {
142 String prop = getStringProperty(name)
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/
SafeRepresenter.java 50 this.representers.put(String.class, new RepresentString());
114 String value = data.toString();
123 value = String.valueOf(binary);
137 String value;
150 String value;
341 StringBuilder buffer = new StringBuilder(String.valueOf(years));
350 buffer.append(String.valueOf(months));
355 buffer.append(String.valueOf(days));
360 buffer.append(String.valueOf(hour24));
365 buffer.append(String.valueOf(minutes))
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/MCParser/
MCAsmLexer.h 28 // String values.
30 String,
75 /// getStringContents - Get the contents of a string token (without quotes).
77 assert(Kind == String && "This token isn't a string!");
81 /// getIdentifier - Get the identifier string for the current token, which
82 /// should be an identifier or a string. This gets the portion of the string
91 /// getString - Get the string for the current token, this includes all
122 std::string Err
    [all...]
  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGLexer.h 18 #include <string>
45 MultiClass, String,
54 // String valued tokens.
69 std::string CurStrVal; // This is valid for ID, STRVAL, VARNAME, CODEFRAGMENT
76 std::vector<std::string> Dependencies;
86 const std::vector<std::string> &getDependencies() const {
92 const std::string &getCurStrVal() const {
95 "This token doesn't have a string value");
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXMCAsmStreamer.cpp 173 /// the specified string in the output .s file. This capability is
175 virtual void EmitRawText(StringRef String);
523 /// the specified string in the output .s file. This capability is
525 void PTXMCAsmStreamer::EmitRawText(StringRef String) {
526 if (!String.empty() && String.back() == '\n')
527 String = String.substr(0, String.size()-1);
528 OS << String;
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
EDEmitter.cpp 27 #include <string>
40 std::string Name;
41 std::vector<std::string> Entries;
46 Entries.push_back(std::string(e));
97 const char* String;
104 void set(const char *string) {
107 String = string;
109 bool is(const char *string) {
110 return !strcmp(String, string)
    [all...]

Completed in 1584 milliseconds

<<21222324252627282930>>