HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 1 - 25 of 1214) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
cfstring-windows.c 32 const CFStringRef string = (CFStringRef)__builtin___CFStringMakeConstantString("string"); variable
  /art/test/ImageLayoutB/
ImageLayoutB.java 20 public static String string = "ASDF_UNIQUE_STRING"; field in class:MyClass
21 public static HashMap<String, String> map = new HashMap<String, String>();
  /external/clang/test/Modules/Inputs/using-decl-redecl/
a.h 1 struct string {}; struct
3 namespace N { typedef ::string clstring; using ::n; }
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/builder/
StringModule.java 23 final String string; field in class:StringModule
25 StringModule(String string) {
26 this.string = string;
30 String string() { method in class:StringModule
31 return string;
  /external/mesa3d/src/util/
debug.h 35 const char * string; member in struct:debug_control
  /external/python/cpython2/PC/VS7.1/
field3.py 23 string = sys.version.split()[0] # like '2.3a0' variable
25 print " * For %s," % string
  /external/python/cpython2/PC/VS8.0/
field3.py 23 string = sys.version.split()[0] # like '2.3a0' variable
25 print(" * For %s," % string)
  /external/python/cpython2/PC/VS9.0/
field3.py 23 string = sys.version.split()[0] # like '2.3a0' variable
25 print(" * For %s," % string)
  /external/python/cpython2/PCbuild/
field3.py 23 string = sys.version.split()[0] # like '2.3a0' variable
25 print(" * For %s," % string)
  /external/python/cpython3/PCbuild/
field3.py 23 string = sys.version.split()[0] # like '2.3a0' variable
25 print(" * For %s," % string)
  /external/selinux/restorecond/
stringslist.h 28 char *string; member in struct:stringsList
32 void strings_list_add(struct stringsList **list, const char *string);
34 int strings_list_find(struct stringsList *list, const char *string, int *exact);
  /external/tensorflow/tensorflow/core/platform/
strong_hash.h 25 // The hash function is deterministic on the content of the string within the
32 // string input = "input string";
35 uint64 StrongKeyedHash(const uint64 (&)[2], const string&); member in namespace:tensorflow
  /external/skia/tools/lua/
bitmap_statistics.lua 1 function string.startsWith(String,Start)
2 return string.sub(String,1,string.len(Start))==Start
5 function string.endsWith(String,End)
6 return End=='' or string.sub(String,-string.len(End))==En
    [all...]
  /external/skqp/tools/lua/
bitmap_statistics.lua 1 function string.startsWith(String,Start)
2 return string.sub(String,1,string.len(Start))==Start
5 function string.endsWith(String,End)
6 return End=='' or string.sub(String,-string.len(End))==En
    [all...]
  /external/clang/test/CodeGenCXX/
template-dependent-bind-temporary.cpp 4 struct string { struct
5 string (const string& );
6 string ();
7 ~string();
10 string operator + (char ch, const string&);
15 string result;
2010-05-11-alwaysinlineinstantiation.cpp 26 typedef basic_string<char> string; typedef
32 string s;
  /external/clang/test/SemaCXX/
PR9461.cpp 7 typedef basic_string<char> string; typedef
27 {string a(c);}
29 struct runtime_error{runtime_error(string);};
conversion-incomplete-type.cpp 3 struct string {}; struct
11 void test(const string& s) {
12 expectStringPiece(s); // expected-error {{no viable conversion from 'const string' to incomplete type 'const StringPiece'}}
19 static void test(const string& s) {
20 expectStringPiece(s); // expected-error {{no viable conversion from 'const string' to incomplete type 'const StringPiece'}}
cxx1y-user-defined-literals.cpp 18 struct string {}; struct in namespace:std
19 string operator""s(const char*, size_t);
34 string s = "foo"s;
  /external/oj-libjdwp/src/share/back/
StringReferenceImpl.c 35 jstring string; local
39 string = inStream_readStringRef(env, in);
48 utf = (char *)JNI_FUNC_PTR(env,GetStringUTFChars)(env, string, NULL);
50 JNI_FUNC_PTR(env,ReleaseStringUTFChars)(env, string, utf);
  /external/bcc/src/lua/bcc/vendor/
helpers.lua 4 local strformat = string.format
5 function string.format(format, ...)
8 local newfmt, count = string.gsub(format, "()%%(.-)(%a)",
27 function string.starts(s, p)
28 return string.sub(s, 1, string.len(p)) == p
31 function string.lstrip(s, p)
32 return string.sub(s, string.len(p) + 1)
35 function string.ends(s, e
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Proxy_I1.java 27 String string(String s) throws Support_Proxy_ParentException, LinkageError; method in interface:Support_Proxy_I1
Support_Proxy_I2.java 26 String string(String s) throws Support_Proxy_SubException, Error; method in interface:Support_Proxy_I2
  /external/clang/test/SemaTemplate/
delegating-constructors.cpp 5 class string class in namespace:PR10457
7 string(const char* str, unsigned);
11 string(const char (&str)[N]) function in class:PR10457::string
12 : string(str) {} // expected-error{{constructor for 'string<6>' creates a delegation cycle}}
16 string s("hello");
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/nullables/
NullComponentWithDependency.java 24 @Nullable String string(); method in interface:NullComponentWithDependency
25 Provider<String> stringProvider();

Completed in 1821 milliseconds

1 2 3 4 5 6 7 8 91011>>