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

1 2 3 45 6 7 8 91011>>

  /external/autotest/client/profilers/powertop/src/
powertop.h 32 char *string; member in struct:line
47 void suggest_kernel_config(char *string, int onoff, char *comment, int weight);
89 #define _(STRING) gettext(STRING)
118 void push_line(char *string, int count);
  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
LogMessageParser.java 44 // TODO(gak): do this stuff in terms of CharSequence instead of String
45 String string = text.toString(); local
46 Matcher gcMatcher = GC_PATTERN.matcher(string);
54 Matcher jitMatcher = JIT_PATTERN.matcher(string);
58 Matcher vmOptionMatcher = VM_OPTION_PATTERN.matcher(string);
  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p7.cpp 5 struct string {}; struct in namespace:std
14 std::string operator "" _w(const char16_t*, size_t);
23 same_type<decltype(v2), std::string> test2;
  /external/clang/test/CodeGenCXX/
weak-external.cpp 35 typedef basic_string<char, char_traits<char>, allocator<char> > string; typedef in namespace:std
51 explicit runtime_error(const string&);
65 throw(std::runtime_error("string"));
  /external/curl/tests/unit/
unit1307.c 32 const char *string; member in struct:testcase
161 /* empty string or pattern */
229 rc = Curl_fnmatch(NULL, tests[i].pattern, tests[i].string);
232 tests[i].pattern, tests[i].string, tests[i].result, rc);
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/nullables/
NullFoo.java 22 final String string; field in class:NullFoo
23 final Provider<String> stringProvider;
28 NullFoo(@Nullable String string,
29 Provider<String> stringProvider,
32 this.string = string;
38 String methodInjectedString;
39 Provider<String> methodInjectedStringProvider
    [all...]
  /external/freetype/include/freetype/
ftsnames.h 73 /* platform_id :: The platform ID for `string'. */
76 /* encoding_id :: The encoding ID for `string'. */
81 /* language_id :: The language ID for `string'. */
87 /* than 0x8000 usually indicate a language tag string */
92 /* name_id :: An identifier for `string'. */
95 /* string :: The `name' string. Note that its format differs */
97 /* either a string of bytes (without a terminating */
100 /* string_len :: The length of `string' in bytes. */
113 FT_Byte* string; /* this string is *not* null-terminated! * member in struct:FT_SfntName_
198 FT_Byte* string; \/* this string is *not* null-terminated! *\/ member in struct:FT_SfntLangTag_
    [all...]
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/
IsEqualIgnoringWhiteSpace.java 10 * Tests if a string is equal to another string, ignoring any changes in whitespace.
12 public class IsEqualIgnoringWhiteSpace extends TypeSafeMatcher<String> {
14 // TODO: Replace String with CharSequence to allow for easy interoperability between
15 // String, StringBuffer, StringBuilder, CharBuffer, etc (joe).
17 private final String string; field in class:IsEqualIgnoringWhiteSpace
19 public IsEqualIgnoringWhiteSpace(String string) {
20 if (string == null)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CaseInsensitiveString.java 15 * A string used as a key in java.util.Hashtable and other
22 private String string; field in class:CaseInsensitiveString
26 private String folded = null;
28 private static String foldCase(String foldee)
36 folded = foldCase(string);
41 * Constructs an CaseInsentiveString object from the given string
42 * @param s The string to construct this object from
44 public CaseInsensitiveString(String s)
    [all...]
  /external/icu/icu4c/source/samples/udata/
reader.c 28 #include <string.h>
87 char *string = NULL; local
119 string = (char *) (intPointer+1);
121 printf("Read string %s from data file\n", string);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/logic/
FunctionInterfaceLogicTest.java 37 ResolvedType string = new ReferenceTypeImpl(new ReflectionClassDeclaration(String.class, typeSolver), typeSolver); local
38 assertEquals(false, FunctionalInterfaceLogic.getFunctionalMethod(string).isPresent());
  /external/jcommander/src/main/java/com/beust/jcommander/
FuzzyMap.java 13 String getName();
36 String string = name.getName(); local
37 Map<String, V> results = Maps.newHashMap();
39 String n = c.getName();
40 boolean match = (caseSensitive && n.startsWith(string))
41 || ((! caseSensitive) && n.toLowerCase().startsWith(string.toLowerCase()));
  /external/libexif/libexif/fuji/
mnote-fuji-entry.c 23 #include <string.h>
57 const char *string; member in struct:__anon24788::__anon24789
241 for (j = 0; items[i].elem[j].string &&
248 strncpy (val, _(items[i].elem[j].string), maxlen);
  /external/libunwind/tests/
test-mem.c 33 #include <string.h>
79 char string[1024]; local
83 return sprintf (string, "hello %p %p\n", &cursor, &uc);
  /external/libusb-compat/examples/
testlibusb.c 8 #include <string.h>
66 char string[256]; local
72 ret = usb_get_string_simple(udev, dev->descriptor.iManufacturer, string, sizeof(string));
74 snprintf(description, sizeof(description), "%s - ", string);
83 ret = usb_get_string_simple(udev, dev->descriptor.iProduct, string, sizeof(string));
86 strlen(description), "%s", string);
103 ret = usb_get_string_simple(udev, dev->descriptor.iSerialNumber, string, sizeof(string));
    [all...]
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
scanner.c 84 /* String literal. */
99 scanner_warn(s, "unknown escape sequence in string literal");
107 scanner_err(s, "unterminated string literal");
113 return STRING;
181 XkbParseString(struct xkb_context *ctx, const char *string, size_t len,
185 scanner_init(&scanner, ctx, string, len, file_name, NULL);
195 const char *string; local
198 ok = map_file(file, &string, &size);
205 xkb_file = XkbParseString(ctx, string, size, file_name, map);
206 unmap_file(string, size)
    [all...]
  /external/llvm/test/ExecutionEngine/RuntimeDyld/ARM/
COFF_Thumb.s 43 movw r0, :lower16:string
44 # rtdyld-check: decode_operand(rel3, 1) = (string&0x0000ffff)
45 movt r0, :upper16:string
46 # TODO rtdyld-check: decode_operand(rel3, 1) = (string&0xffff0000>>16)
75 .global string
76 string: label
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl18.c 52 char string[40] = ""; variable
182 sprintf(string, "./fcntl18.%d.1", getpid());
183 unlink(string);
  /external/pdfium/fxjs/
cjs_delaydata.h 10 #include <string>
27 ByteString string; member in struct:CJS_DelayData
  /external/perf_data_converter/src/
builder.h 14 #include <string>
22 typedef std::string string; typedef in namespace:perftools::profiles
33 // - Manages the creation of the string table.
42 // Adds a string to the profile string table if not already present.
43 // Returns a unique integer id for this string.
62 // Serializes and compresses the profile into a string, replacing
65 bool Emit(string *output);
67 // Serializes and compresses a profile into a string, replacing it
    [all...]
  /external/proguard/src/proguard/gui/splash/
TypeWriterString.java 24 * This VariableString produces a String that grows linearly with respect to its
32 private final String string; field in class:TypeWriterString
36 private String cachedString;
41 * @param string the basic String.
44 public TypeWriterString(String string, Timing timing)
46 this.string = string;
    [all...]
  /external/proguard/src/proguard/util/
ClassNameParser.java 60 public StringMatcher parse(String regularExpression)
74 // string, optionally preceded by any type.
88 // remainder of the string.
98 // remainder of the string.
112 // remainder of the string.
126 // remainder of the string.
140 // remainder of the string.
196 public static void main(String[] args)
205 String string = args[index] local
    [all...]
FileNameParser.java 40 public StringMatcher parse(String regularExpression)
52 // remainder of the string.
66 // remainder of the string.
80 // remainder of the string.
102 public static void main(String[] args)
111 String string = args[index]; local
112 System.out.print("String ["+string+"]");
ListUtil.java 35 * Creates a comma-separated String from the given List of String objects.
37 public static String commaSeparatedString(List list, boolean quoteStrings)
53 String string = (String)list.get(index); local
57 string = quotedString(string);
60 buffer.append(string);
68 * Creates a List of String objects from the given comma-separated String
175 String string = commaSeparatedString(list, true); local
    [all...]
NameParser.java 39 public StringMatcher parse(String regularExpression)
51 // remainder of the string.
65 // remainder of the string.
87 public static void main(String[] args)
96 String string = args[index]; local
97 System.out.print("String ["+string+"]");

Completed in 1296 milliseconds

1 2 3 45 6 7 8 91011>>