HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 276 - 300 of 1699) sorted by null

<<11121314151617181920>>

  /external/chromium_org/tools/ipc_fuzzer/mutate/
ipc_fuzzer_mut.py 17 import string namespace
31 def random_id(size=16, chars=string.ascii_lowercase):
  /external/chromium_org/tools/telemetry/telemetry/web_components/
web_component.py 8 import string namespace
58 bootstrap_js_template = string.Template(bfile.read())
  /external/clang/test/CodeGen/
globalinit.c 19 char string[8] = "string"; // extend init variable
20 char string2[4] = "string"; // truncate init
  /external/clang/test/CodeGenCXX/
mangle-subst-std.cpp 40 typedef std::basic_string<char, std::char_traits<char>, std::allocator<char> > string; typedef in namespace:std
44 void f(std::string) { }
92 // Make sure we don't treat the following like std::string
  /external/clang/utils/analyzer/
SumTimerInfo.py 11 import string namespace
  /external/e2fsprogs/lib/e2p/
mntopts.c 14 #include <string.h>
22 const char *string; member in struct:mntopt
47 for (f = mntopt_list; f->string; f++) {
49 return f->string;
56 int e2p_string2mntopt(char *string, unsigned int *mask)
62 for (f = mntopt_list; f->string; f++) {
63 if (!strcasecmp(string, f->string)) {
68 if (strncasecmp(string, "MNTOPT_", 7))
71 if (string[8] == 0
    [all...]
  /external/e2fsprogs/lib/ss/
execute_cmd.c 66 * If the command string in argv[0] is in the request table, execute
75 * argument string array
94 char *string = argv[0]; local
102 if (!strcmp(*name, string)) {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
StringListPropertyEditor.java 17 * The {@link PropertyEditor} for selecting single string from given set.
24 private String[] m_strings;
49 if (value instanceof String) {
50 String string = (String) value; local
53 if (string.equalsIgnoreCase(m_strings[i])) {
57 if (string.equals(m_strings[i])) {
67 protected String getTitle(int index) {
72 protected String getExpression(int index) throws Exception
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
StringPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor.string;
23 * The {@link PropertyEditor} for {@link String}.
62 public String getText(Property property) throws Exception {
64 if (value instanceof String) {
65 return (String) value;
76 protected String getEditorText(Property property) throws Exception {
81 protected boolean setEditorText(Property property, String text) throws Exception {
  /external/eigen/bench/
check_cache_queries.cpp 29 int string[8]; local
30 char* string_char = (char*)(string);
34 string[0] = abcd[1];
35 string[1] = abcd[3];
36 string[2] = abcd[2];
37 string[3] = 0;
  /external/icu/icu4c/source/common/unicode/
usetiter.h 42 * <p>Each item in the set is accessed as a string. Set elements
66 * Value of <tt>codepoint</tt> if the iterator points to a string.
68 * <tt>string</tt> for the current iteration result.
75 * the iterator points to a string.
92 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
93 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
94 * value of <tt>string</tt> is undefined.
97 const UnicodeString* string; member in class:UnicodeSetIterator
124 * Returns true if the current element is a string. If so, the
129 * Elements of types string and codepoint can both be retrieve
    [all...]
  /external/libexif/libexif/pentax/
mnote-pentax-entry.c 28 #include <string.h>
72 const char *string; member in struct:__anon27486::__anon27487
272 const char *string; member in struct:__anon27488::__anon27489
355 for (j = 0; items[i].elem[j].string &&
362 strncpy (val, _(items[i].elem[j].string), maxlen);
379 for (j = 0; items2[i].elem[j].string && ((items2[i].elem[j].index2 < vs2)
386 strncpy (val, _(items2[i].elem[j].string), maxlen);
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-string.h 34 // 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>
52 #include <string>
57 // String - a UTF-8 string class.
59 // For historic reasons, we don't use std::string.
61 // TODO(wan@google.com): replace this class with std::string or
64 // Note that String can represent both NULL and the empty string,
230 operator ::std::string() const { return ::std::string(c_str(), length()); } function in class:testing::internal::String::operator::std
237 operator ::string() const { return ::string(c_str(), length()); } function in class:testing::internal::String::operator
    [all...]
  /external/mesa3d/scons/
crossmingw.py 37 import string namespace
178 path = string.split(path, os.pathsep)
180 env['ENV']['PATH'] = string.join([dir] + path, os.pathsep)
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-string.h 34 // 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>
52 #include <string>
57 // String - a UTF-8 string class.
59 // For historic reasons, we don't use std::string.
61 // TODO(wan@google.com): replace this class with std::string or
64 // Note that String can represent both NULL and the empty string,
230 operator ::std::string() const { return ::std::string(c_str(), length()); } function in class:testing::internal::String::operator::std
237 operator ::string() const { return ::string(c_str(), length()); } function in class:testing::internal::String::operator
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AlertInfo.java 56 /** String field
58 protected String string; field in class:AlertInfo
70 protected String encodeBody() {
74 } else if (string != null) {
75 encoding.append(string);
92 * Set the string member
93 * @param string String to set
95 public void setAlertInfo(String string)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
CacheControl.java 120 String string = headers.value(i); local
122 while (pos < string.length()) {
124 pos = HeaderParser.skipUntil(string, pos, "=,;");
125 String directive = string.substring(tokenStart, pos).trim();
126 String parameter;
128 if (pos == string.length() || string.charAt(pos) == ',' || string.charAt(pos) == ';')
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
RequestTest.java 28 @Test public void string() throws Exception { method in class:RequestTest
76 private String bodyToHex(Request.Body body) throws IOException {
  /external/proguard/src/proguard/util/
ListParser.java 52 public StringMatcher parse(String regularExpression)
63 * An empty list results in a StringMatcher that matches any string.
73 String regularExpression = (String)regularExpressions.get(index);
96 private StringMatcher parseEntry(String regularExpression)
108 private boolean isNegated(String regularExpression)
118 public static void main(String[] args)
127 String string = args[index]; local
128 System.out.print("String ["+string+"]")
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-string.h 34 // This header file declares the String class and functions used internally by
44 #include <string.h>
48 #include <string>
54 // String - a UTF-8 string class.
56 // We cannot use std::string as Microsoft's STL implementation in
61 // Also, String is different from std::string in that it can represent
62 // both NULL and the empty string, while std::string cannot represen
229 operator ::std::string() const { return ::std::string(c_str(), length()); } function in class:testing::internal::String::operator::std
237 operator ::string() const { return ::string(c_str(), length()); } function in class:testing::internal::String::operator
    [all...]
  /external/qemu/
gen-charmap.py 8 import sys, os, string, re namespace
  /external/qemu/proxy/
proxy_common.h 53 const char* string; member in struct:__anon33640
  /external/smack/src/org/xbill/DNS/
DClass.java 74 * Converts a numeric DClass into a String
75 * @return The canonical string representation of the class
78 public static String
79 string(int i) { method in class:DClass
84 * Converts a String representation of a DClass into its numeric value
88 value(String s) {
Flags.java 57 /** Converts a numeric Flag into a String */
58 public static String
59 string(int i) { method in class:Flags
63 /** Converts a String representation of an Flag into its numeric value */
65 value(String s) {
  /external/tinyalsa/
tinymix.c 33 #include <string.h>
108 const char *string; local
113 string = mixer_ctl_get_enum_string(ctl, i);
116 string);
118 printf(" %-s", string);

Completed in 477 milliseconds

<<11121314151617181920>>