Searched defs:string (Results 51 - 75 of 1253) sorted by relevance

1234567891011>>

/external/deqp/android/scripts/
H A Dlaunch.py6 import string namespace
31 launch(string.join(sys.argv[1:], " "))
/external/deqp/framework/delibs/decpp/
H A DdeMemPool.cpp32 char* copyToPool (de::MemPool* pool, const char* string) argument
34 deUintptr size = (deUintptr)strlen(string) + 1;
37 std::copy(string, string+size, copy);
/external/deqp/modules/gles3/scripts/
H A Dgen-invalid-texture-funcs.py2 import string namespace
36 self.name = string.join([s.lower() for s in [funcname] + args], "_")
/external/libcxx/test/re/re.submatch/re.submatch.members/
H A Dcompare_string_type.pass.cpp24 typedef SM::string_type string; typedef
27 assert(sm.compare(string()) == 0);
32 assert(sm.compare(string()) > 0);
33 assert(sm.compare(string("123")) == 0);
38 typedef SM::string_type string; typedef
41 assert(sm.compare(string()) == 0);
46 assert(sm.compare(string()) > 0);
47 assert(sm.compare(string(L"123")) == 0);
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Devent-utils.h47 static inline char *strim(char *string) argument
51 if (!string)
53 while (*string) {
54 if (!isspace(*string))
56 string++;
58 ret = string;
60 string = ret + strlen(ret) - 1;
61 while (string > ret) {
62 if (!isspace(*string))
64 string
[all...]
/external/mesa3d/src/mapi/glapi/gen/
H A Dmesadef.py39 import string namespace
206 if offset >= 0 and string.find(name, "unused") == -1:
/external/mesa3d/src/mesa/drivers/dri/common/
H A Dutils.h36 const char * string; member in struct:dri_debug_control
/external/pcre/dist/
H A Dpcre16_valid_utf16.c56 * Validate a UTF-16 string *
60 check that a supposed UTF-16 string is actually valid. The early check means
61 that subsequent code can assume it is dealing with a valid string. The check
63 invalid string are then undefined.
69 PCRE_UTF16_ERR1 Missing low surrogate at the end of the string
75 string points to the string
76 length length of string, or -1 if the string is zero-terminated
79 Returns: = 0 if the string i
84 valid_utf(PCRE_PUCHAR string, int length, int *erroroffset) argument
[all...]
H A Dpcre32_valid_utf32.c55 * Validate a UTF-32 string *
59 check that a supposed UTF-32 string is actually valid. The early check means
60 that subsequent code can assume it is dealing with a valid string. The check
62 invalid string are then undefined.
73 string points to the string
74 length length of string, or -1 if the string is zero-terminated
77 Returns: = 0 if the string is a valid UTF-32 string
82 valid_utf(PCRE_PUCHAR string, int length, int *erroroffset) argument
[all...]
/external/proguard/src/proguard/util/
H A DAndMatcher.java44 public boolean matches(String string) argument
46 return matcher1.matches(string) &&
47 matcher2.matches(string);
H A DFixedStringMatcher.java24 * This StringMatcher tests whether strings start with a given fixed string
50 public boolean matches(String string) argument
52 return string.startsWith(fixedString) &&
54 nextMatcher.matches(string.substring(fixedString.length())));
H A DListMatcher.java52 public boolean matches(String string) argument
58 if (matcher.matches(string))
H A DNotMatcher.java42 public boolean matches(String string) argument
44 return !matcher.matches(string);
H A DOrMatcher.java44 public boolean matches(String string) argument
46 return matcher1.matches(string) ||
47 matcher2.matches(string);
H A DSettableMatcher.java42 public boolean matches(String string) argument
44 return matcher.matches(string);
/external/qemu/android/utils/
H A Dsetenv.c3 #include <string.h>
11 char *string = malloc(length); local
12 snprintf(string, length, "%s=%s", name, value);
13 result = putenv(string);
/external/qemu/
H A Dgen-skin.py9 import sys, os, string, re namespace
37 data_name = "_data_" + string.replace(file,".","_")
/external/qemu/include/qapi/qmp/
H A Dqstring.h21 char *string; member in struct:QString
/external/skia/src/animator/
H A DSkDisplayInput.h27 SkString string; member in class:SkInput
/external/valgrind/main/coregrind/m_gdbserver/
H A Dutils.c29 void sr_perror (SysRes sr, const char *string,...) argument
36 va_start (args, string);
37 VG_(vmessage) ( Vg_UserMsg, string, args );
42 STRING is the error message, used as a fprintf string,
45 void error (const char *string,...) argument
48 va_start (args, string);
49 VG_(vmessage) ( Vg_UserMsg, string, args );
59 void fatal (const char *string,...) argument
62 va_start (args, string);
63 VG_(vmessage) ( Vg_UserMsg, string, arg
69 warning(const char *string,...) argument
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Proxy_I2.java26 String string(String s) throws Support_Proxy_SubException, Error; method in interface:Support_Proxy_I2
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DXMLStringFactory.java30 * Create a new XMLString from a Java string.
33 * @param string Java String reference, which must be non-null.
37 public abstract XMLString newstr(String string); argument
43 * @param string FastStringBuffer reference, which must be non-null.
49 public abstract XMLString newstr(FastStringBuffer string, int start, argument
56 * @param string FastStringBuffer reference, which must be non-null.
62 public abstract XMLString newstr(char[] string, int start, argument
66 * Get a cheap representation of an empty string.
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DAnnotatedException.java11 AnnotatedException(String string, Throwable e) argument
13 super(string);
18 AnnotatedException(String string) argument
20 this(string, null);
/external/chromium_org/content/common/indexed_db/
H A Dindexed_db_key_path.cc17 IndexedDBKeyPath::IndexedDBKeyPath(const base::string16& string) argument
18 : type_(WebIDBKeyPathTypeString), string_(string) {}
30 const base::string16& IndexedDBKeyPath::string() const { function in class:content::IndexedDBKeyPath
/external/chromium_org/ppapi/tests/
H A Dtest_pdf.cc20 void TestPDF::RunTests(const std::string& filter) {
25 std::string TestPDF::TestGetLocalizedString() {
26 pp::Var string = pp::PDF::GetLocalizedString(instance_, local
28 ASSERT_TRUE(string.is_string());
30 string.AsString());
34 std::string TestPDF::TestGetResourceImage() {

Completed in 588 milliseconds

1234567891011>>