HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 76 - 100 of 2901) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
DirectoryString.java 22 private ASN1String string; field in class:DirectoryString
70 DERT61String string)
72 this.string = string;
76 DERPrintableString string)
78 this.string = string;
82 DERUniversalString string)
84 this.string = string;
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
key_event.py 5 import string namespace
40 for c in string.ascii_uppercase:
  /external/clang/test/CodeGenCXX/
crash.cpp 21 struct string { struct in namespace:PR17476
22 string(const char *__s);
23 string &operator+=(const string &__str);
28 string start("__");
partial-init.cpp 4 struct string { struct in namespace:std
6 string(const char *s);
7 ~string();
16 std::string c;
  /external/clang/test/Index/
complete-exprs.cpp 3 class string { class
5 string();
6 string(const char *);
7 string(const char *, int n);
55 // CHECK-CC1: ClassDecl:{TypedText string} (50)
56 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{RightParen )} (50)
57 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{Placeholder const char *}{RightParen )} (50)
58 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{Placeholder const char *}{Comma , }{Placeholder int n}{RightParen )} (50)
65 // CHECK-CC2: ClassDecl:{TypedText string} (50)
  /external/clang/tools/clang-format/
clang-format-diff.py 28 import string namespace
119 diff_string = string.join(diff, '')
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/nullables/
NullComponent.java 25 @Nullable String string(); method in interface:NullComponent
26 Provider<String> stringProvider();
  /external/deqp/scripts/egl/
enums.py 24 import string namespace
str_util.py 24 import string namespace
  /external/deqp/scripts/opengl/
gen_str_util.py 24 import string namespace
  /external/e2fsprogs/lib/e2p/
hashstr.c 14 #include <string.h>
22 const char *string; member in struct:hash
37 for (p = hash_list; p->string; p++) {
39 return p->string;
48 int e2p_string2hash(char *string)
54 for (p = hash_list; p->string; p++) {
55 if (!strcasecmp(string, p->string)) {
59 if (strncasecmp(string, "HASHALG_", 8))
62 if (string[8] == 0
    [all...]
  /external/gtest/include/gtest/internal/
gtest-filepath.h 43 #include "gtest/internal/gtest-string.h"
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
77 const std::string& string() const { return pathname_; } function in class:testing::internal::FilePath
114 // the name, otherwise return the name string unmodified.
200 std::string pathname_;
  /external/hamcrest/library/src/org/hamcrest/text/
IsEqualIgnoringCase.java 11 * Tests if a string is equal to another string, regardless of the case.
13 public class IsEqualIgnoringCase extends TypeSafeMatcher<String> {
15 // TODO: Replace String with CharSequence to allow for easy interopability between
16 // String, StringBuffer, StringBuilder, CharBuffer, etc (joe).
18 private final String string; field in class:IsEqualIgnoringCase
20 public IsEqualIgnoringCase(String string) {
21 if (string == null) {
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
FindFunction.java 17 package com.google.clearsilver.jsilver.functions.string;
24 * Returns the numeric position of the substring in the string (if found), otherwise returns -1
25 * similar to the Python string.find method.
30 * @param args 2 string expressions (full string and substring)
LengthFunction.java 17 package com.google.clearsilver.jsilver.functions.string;
24 * Returns the length of the string expression.
29 * @param args A single string value
  /external/libchrome/base/strings/
nullable_string16.h 21 NullableString16(const string16& string, bool is_null)
22 : string_(string), is_null_(is_null) {
25 const string16& string() const { return string_; } function in class:base::NullableString16
34 return a.is_null() == b.is_null() && a.string() == b.string();
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/docmaker/
docbeauty.py 15 import sys, os, time, string, getopt namespace
docmaker.py 34 import sys, os, time, string, glob, getopt namespace
  /external/mdnsresponder/mDNSPosix/
parselog.py 60 import string namespace
147 ipList[ip][2] = string.join(qaList[6:])
235 # Should measure string width, but don't know how to do that
  /external/mesa3d/src/mapi/glapi/gen/
glX_proto_common.py 29 import string namespace
72 parameters = string.join( param.count_parameter_list, "," )
  /external/opencv3/platforms/osx/
build_framework.py 28 import glob, re, os, os.path, shutil, string, sys namespace
  /external/skia/src/gpu/batches/
GrCopySurfaceBatch.h 42 SkString string; variable
43 string.printf("SRC: 0x%p, DST: 0x%p, SRECT: [L: %d, T: %d, R: %d, B: %d], "
47 return string;
  /external/skia/tools/lua/
count_reduced_clipstacks.lua 16 function string.starts(String,Start)
17 return string.sub(String,1,string.len(Start))==Start
40 if (string.starts(t.verb, "draw")) then
  /external/srtp/test/
getopt_s.c 56 getopt_check_character(char c, const char *string) {
59 while (*string != 0) {
63 if (*string++ == c) {
64 if (*string == ':') {
81 char *string; local
83 /* move 'string' on to next argument */
85 string = argv[optind_s];
87 if (string == NULL)
88 return '?'; /* NULL argument string */
90 if (string[0] != '-'
    [all...]
  /external/toybox/toys/posix/
strings.c 21 -n At least LEN characters form a string (default 4)
36 char *string = xzalloc(wlen + 1); local
46 string[count++] = toybuf[i];
51 printf("%s", string);
61 free(string);

Completed in 1685 milliseconds

1 2 34 5 6 7 8 91011>>