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

1 2 3 4 5 6 7 891011>>

  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/logic/
InferenceContextTest.java 45 private ResolvedReferenceType string; field in class:InferenceContextTest
54 string = new ReferenceTypeImpl(new ReflectionClassDeclaration(String.class, typeSolver), typeSolver);
56 listOfString = listOf(string);
69 ResolvedType result = new InferenceContext(MyObjectProvider.INSTANCE).addPair(object, string);
  /external/libexif/libexif/pentax/
mnote-pentax-entry.c 28 #include <string.h>
72 const char *string; member in struct:__anon24794::__anon24795
272 const char *string; member in struct:__anon24796::__anon24797
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/libxkbcommon/xkbcommon/src/
atom.c 80 char *string; member in struct:atom_node
113 free(node->string);
124 return darray_item(table->table, atom).string;
128 find_atom_pointer(struct atom_table *table, const char *string, size_t len,
136 fingerprint = fingerprint * 27 + string[i];
137 fingerprint = fingerprint * 27 + string[len - 1 - i];
151 const int cmp = strncmp(string, node->string, len);
152 if (cmp < 0 || (cmp == 0 && len < strlen(node->string))) {
173 atom_lookup(struct atom_table *table, const char *string, size_t len
    [all...]
  /external/libxkbcommon/xkbcommon/test/
atom.c 65 char *string; member in struct:atom_string
73 const char *string; local
85 random_string(&arr[i].string, &arr[i].len);
87 atom = atom_lookup(table, arr[i].string, arr[i].len);
89 string = atom_text(table, atom);
90 assert(string);
92 if (arr[i].len != strlen(string) ||
93 strncmp(string, arr[i].string, arr[i].len) != 0) {
95 fprintf(stderr, "existing length %lu, string %s\n"
    [all...]
  /external/llvm/lib/Support/
Statistic.cpp 133 OS << "===" << std::string(73, '-') << "===\n"
135 << "===" << std::string(73, '-') << "===\n\n";
148 static void write_json_string_escaped(raw_ostream &OS, const char *string) {
152 for (const unsigned char *c = (const unsigned char*)string; *c != '\0'; ++c) {
156 OS << string; local
  /external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
COFF_i386.s 26 pushl string
52 .global string
54 string: label
71 # rtdyld-check: *{4}rel8 = string
72 .long string // IMAGE_REL_I386_DIR32
74 # rtdyld-check: *{4}rel9 = string+1
75 .long string+1 // IMAGE_REL_I386_DIR32
77 # rtdyld-check: *{4}rel10 = string - section_addr(COFF_i386.s.tmp.obj, .text) + 1
78 .long string@imgrel+1 // IMAGE_REL_I386_DIR32NB
80 # rtdyld-check: *{4}rel11 = string - section_addr(COFF_i386.s.tmp.obj, .data) +
    [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/mesa3d/src/mapi/glapi/gen/
typeexpr.py 28 import string, copy
45 def string(self): member in class:type_node
46 """Return string representation of this type_node."""
126 # Replace '*' with ' * ' in type_string. Then, split the string
128 tokens = string.split( string.replace( type_string, "*", " * " ) )
221 def string(self): member in class:type_expression
224 s += t.string()
292 print 'Got "%s" (%u, %u).' % (te.string(), te.get_stack_size(), te.get_element_size())
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu_validate.c 31 /* We're going to do lots of string concatenation, so this should help. */
32 struct string { struct
38 cat(struct string *dest, const struct string src)
45 #define CAT(dest, src) cat(&dest, (struct string){src, strlen(src)})
143 struct string error_msg = { .str = NULL, .len = 0 };
  /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/pdfium/third_party/bigint/
BigUnsignedInABase.cc 79 BigUnsignedInABase::BigUnsignedInABase(const std::string &s, Base base) {
111 BigUnsignedInABase::operator std::string() const {
115 return std::string("0");
128 std::string s2(s);
  /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
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/python/cpython2/Modules/
cgensupport.h 12 typedef char *string; typedef
41 int i, string *p_a);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/lib1/
R.java 9 public static final class string { class in class:R
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/lib2/
R.java 9 public static final class string { class in class:R
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/lib3/
R.java 9 public static final class string { class in class:R
  /external/skia/src/gpu/ops/
GrDrawPathOp.cpp 25 SkString string; local
26 string.printf("PATH: 0x%p", fPath.get());
27 string.append(INHERITED::dumpInfo());
28 return string;
79 SkString string; local
80 string.printf("RANGE: 0x%p COUNTS: [", fPathRange.get());
82 string.appendf("%d, ", iter.get()->fInstanceData->count());
84 string.remove(string.size() - 2, 2);
85 string.append("]")
    [all...]
  /external/skqp/src/gpu/ops/
GrDrawPathOp.cpp 25 SkString string; local
26 string.printf("PATH: 0x%p", fPath.get());
27 string.append(INHERITED::dumpInfo());
28 return string;
79 SkString string; local
80 string.printf("RANGE: 0x%p COUNTS: [", fPathRange.get());
82 string.appendf("%d, ", iter.get()->fInstanceData->count());
84 string.remove(string.size() - 2, 2);
85 string.append("]")
    [all...]
  /external/swiftshader/third_party/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/v8/src/builtins/
builtins-global.cc 20 Handle<String> encoded_uri;
31 Handle<String> encoded_uri_component;
43 Handle<String> uri;
53 Handle<String> uri_component;
62 // ES6 section B.2.1.1 escape (string)
65 Handle<String> string; local
67 isolate, string,
70 RETURN_RESULT_OR_FAILURE(isolate, Uri::Escape(isolate, string));
73 // ES6 section B.2.1.2 unescape (string)
76 Handle<String> string; local
    [all...]
  /external/webrtc/webrtc/voice_engine/test/android/android_test/gen/org/webrtc/voiceengine/test/
R.java 27 public static final class string { class in class:R
  /frameworks/base/libs/androidfw/tests/data/styles/
R.h 40 struct string { struct in namespace:com::android::app
  /frameworks/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
R$string.class 

Completed in 942 milliseconds

1 2 3 4 5 6 7 891011>>