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

<<11121314151617181920>>

  /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/google-breakpad/src/testing/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>
50 #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/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
RecordReader.java 12 boolean open(String title);
15 boolean bool(String name);
16 boolean[] boolArray(String name);
17 char character(String name);
18 char[] characterArray(String name);
19 byte namedIndex(String name, String[] names);
20 byte[] namedIndexArray(String name, String[] names);
21 String string(String name) method in interface:RecordReader
    [all...]
RecordWriter.java 12 boolean open(String title);
15 void bool(String name, boolean value);
16 void boolArray(String name, boolean[] values);
17 void character(String name, char value);
18 void characterArray(String name, char[] values);
19 void namedIndex(String name, String[] names, int value);
20 void namedIndexArray(String name, String[] names, byte[] values);
21 void string(String name, String value) method in interface:RecordWriter
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeSetIterator.java 43 * Value of <tt>codepoint</tt> if the iterator points to a string.
45 * <tt>string</tt> for the current iteration result.
51 * the iterator points to a string.
66 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
67 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
68 * value of <tt>string</tt> is undefined.
70 public String string; field in class:UnicodeSetIterator
91 * or a string. If there are no more elements in the set, return
93 * string in the <tt>string</tt> field. Otherwise the value is
    [all...]
  /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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
RecordReader.java 11 boolean open(String title);
14 boolean bool(String name);
15 boolean[] boolArray(String name);
16 char character(String name);
17 char[] characterArray(String name);
18 byte namedIndex(String name, String[] names);
19 byte[] namedIndexArray(String name, String[] names);
20 String string(String name) method in interface:RecordReader
    [all...]
RecordWriter.java 11 boolean open(String title);
14 void bool(String name, boolean value);
15 void boolArray(String name, boolean[] values);
16 void character(String name, char value);
17 void characterArray(String name, char[] values);
18 void namedIndex(String name, String[] names, int value);
19 void namedIndexArray(String name, String[] names, byte[] values);
20 void string(String name, String value) method in interface:RecordWriter
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CaseInsensitiveString.java 12 * A string used as a key in java.util.Hashtable and other
19 private String string; field in class:CaseInsensitiveString
23 private String folded = null;
25 private static String foldCase(String foldee)
33 folded = foldCase(string);
38 * Constructs an CaseInsentiveString object from the given string
39 * @param s The string to construct this object from
42 public CaseInsensitiveString(String s)
    [all...]
  /external/libexif/libexif/pentax/
mnote-pentax-entry.c 28 #include <string.h>
72 const char *string; member in struct:__anon15638::__anon15639
272 const char *string; member in struct:__anon15640::__anon15641
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/libxml2/python/tests/
thread2.py 2 import string, sys, time namespace
  /external/libxml2/
regressions.py 2 import glob, os, string, sys, thread, time namespace
31 # Within the two sets of data, lines may begin with a path string. If so, the
42 j = string.find(res[i],base1)
44 col = string.find(res[i],':')
46 start = string.rfind(res[i][:col], '/')
51 j = string.find(exp[i],base2)
53 col = string.find(exp[i],':')
55 start = string.rfind(exp[i][:col], '/')
68 # print string.strip(line)
80 if string.strip(res[i]) != string.strip(exp[i])
    [all...]
  /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/llvm/utils/
update_llc_test_checks.py 12 import string namespace
42 asm = string.expandtabs(asm, 2)
  /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/
ResponseBody.java 78 * Returns the response as a string decoded with the charset of the
82 public final String string() throws IOException { method in class:ResponseBody
83 return new String(bytes(), charset().name());
99 public static ResponseBody create(MediaType contentType, String content) {
  /external/opencv3/platforms/ios/
build_framework.py 28 import glob, re, os, os.path, shutil, string, sys, exceptions, subprocess, argparse namespace
  /external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Types/
tSTRING_128.py 32 import commands, string, random namespace
51 | Testing data types - String |
62 | - STR_CHAR128 parameter space character value = test string|
85 value=value+str(random.choice(string.digits))
100 | STR_CHAR128 parameter empty string = \'\' |
103 | - STR_CHAR128 parameter in empty string case = \'\' |
113 log.I("STR_CHAR128 parameter empty string = \'\'")
145 value=value+str(random.choice(string.letters))
170 log.I("STR_CHAR128 parameter initial state : string")
173 value=value+str(random.choice(string.letters)
    [all...]

Completed in 834 milliseconds

<<11121314151617181920>>