HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 251 - 275 of 1323) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/snappy/win32/
snappy-stubs-public.h 57 #include <string>
81 typedef std::string string; typedef in namespace:snappy
  /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/dropbear/
dss.c 135 * string "ssh-dss"
174 char * string = NULL; local
183 string = buf_getstring(buf, &stringlen);
196 bytes_to_mp(&val1, &string[SHA1_HASH_SIZE], SHA1_HASH_SIZE);
218 bytes_to_mp(&val1, &string[0], SHA1_HASH_SIZE);
254 m_free(string);
  /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_", 8))
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
97 char *string = argv[0]; local
105 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/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/icu4c/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/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
StringSerializer.java 41 * String serializer.
48 public String readObject(ByteBuffer data, Class c) throws IOException {
64 if (length == -1) throw new IOException("Could not read String: Invalid length identifier.");
68 return new String(buffer, "UTF-8");
72 String string = (String)object; local
74 if (string == null) {
79 byte[] stringBytes = string.getBytes("UTF-8");
  /external/libexif/libexif/pentax/
mnote-pentax-entry.c 28 #include <string.h>
72 const char *string; member in struct:__anon20358::__anon20359
272 const char *string; member in struct:__anon20360::__anon20361
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/open-vcdiff/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/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:__anon25491
  /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) {

Completed in 530 milliseconds

<<11121314151617181920>>