/libnativehelper/ |
toStringArray.cpp | 25 const char* const* strings; member in struct:ArrayCounter 26 ArrayCounter(const char* const* strings) : strings(strings) {} 29 while (strings[count] != NULL) { 37 const char* const* strings; member in struct:ArrayGetter 38 ArrayGetter(const char* const* strings) : strings(strings) {} 40 return strings[i] [all...] |
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glCreateShaderProgramv.java | 1 // C function GLuint glCreateShaderProgramv ( GLenum type, GLsizei count, const GLchar *const *strings ) 5 String[] strings
|
glShaderSource.cpp | 14 const char* strings[] = {nativeString}; local 15 glShaderSource(shader, 1, strings, 0);
|
/external/lzma/CPP/7zip/UI/Common/ |
SortUtils.cpp | 11 const UStringVector &strings = *(const UStringVector *)param;
local 12 return CompareFileNames(strings[*p1], strings[*p2]);
15 void SortFileNames(const UStringVector &strings, CUIntVector &indices)
17 unsigned numItems = strings.Size();
22 indices.Sort(CompareStrings, (void *)&strings);
|
SortUtils.h | 8 void SortFileNames(const UStringVector &strings, CUIntVector &indices);
|
/bionic/libc/bionic/ |
ffs.cpp | 29 #include <strings.h>
|
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/multipackage/foo/ |
Foo.java | 23 public final Set<String> strings; field in class:Foo 25 @Inject Foo(Set<String> strings) { 26 this.strings = strings;
|
/libnativehelper/include/nativehelper/ |
toStringArray.h | 49 const std::vector<std::string>& strings; member in struct:VectorCounter 50 VectorCounter(const std::vector<std::string>& strings) : strings(strings) {} 52 return strings.size(); 56 const std::vector<std::string>& strings; member in struct:VectorGetter 57 VectorGetter(const std::vector<std::string>& strings) : strings(strings) {} 59 return strings[i].c_str() [all...] |
/external/skia/include/gpu/gl/ |
GrGLSLPrettyPrint.h | 13 SkString PrettyPrintGLSL(const char** strings,
|
/libcore/luni/src/test/java/libcore/java/util/regex/ |
OldAndroidRegexTest.java | 160 String[] strings; local 162 strings = p.split("boo:and:foo"); 163 assertEquals(3, strings.length); 164 assertEquals("boo", strings[0]); 165 assertEquals("and", strings[1]); 166 assertEquals("foo", strings[2]); 168 strings = p.split("boo:and:foo", 2); 169 assertEquals(2, strings.length); 170 assertEquals("boo", strings[0]); 171 assertEquals("and:foo", strings[1]) [all...] |
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ |
txtbase.py | 25 @ivar strings: the text strings 26 @type strings: list of string 29 __slots__ = ['strings'] 31 def __init__(self, rdclass, rdtype, strings): 33 if isinstance(strings, str): 34 strings = [ strings ] 35 self.strings = strings[: [all...] |
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue73/ |
SetAsSequenceTest.java | 87 Set<String> strings = (Set<String>) yaml.load(doc); local 88 // System.out.println(strings); 89 assertEquals(3, strings.size()); 90 assertEquals(HashSet.class, strings.getClass()); 91 assertTrue(strings.contains("aaa")); 92 assertTrue(strings.contains("bbb")); 93 assertTrue(strings.contains("ccc")); 100 Set<String> strings = (Set<String>) yaml.load(doc); local 101 // System.out.println(strings); 102 assertEquals(3, strings.size()) 113 Set<String> strings = (Set<String>) yaml.load(doc); local 126 Set<String> strings = (Set<String>) yaml.load(doc); local [all...] |
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/ |
Profile.java | 84 public void toDebugStrings(List<String> strings) { 85 strings.add("Profile:"); 86 strings.add(" step: " + step); 87 strings.add(" init: " + stepInit); 88 strings.add(" collide: " + collide); 89 strings.add(" particles: " + solveParticleSystem); 90 strings.add(" solve: " + solve); 91 strings.add(" solveInit: " + solveInit); 92 strings.add(" solveVelocity: " + solveVelocity); 93 strings.add(" solvePosition: " + solvePosition) [all...] |
/external/lzma/CPP/Common/ |
ListFileUtils.h | 12 bool ReadNamesFromListFile(CFSTR fileName, UStringVector &strings, UINT codePage = CP_OEMCP);
|
/ndk/sources/android/support/src/musl-locale/ |
strcasecmp_l.c | 1 #include <strings.h>
|
/frameworks/base/tests/UiBench/src/com/android/test/uibench/ |
TextUtils.java | 38 String[] strings = new String[STRING_COUNT]; local 40 for (int i = 0; i < strings.length; i++) { 41 strings[i] = randomWord(random, SIMPLE_STRING_LENGTH); 43 return strings; 46 // a small number of strings reused frequently, expected to hit 53 "strings", 67 String[] strings = new String[STRING_COUNT]; local 69 for (int i = 0; i < strings.length; i++) { 86 strings[i] = result; 89 return strings; [all...] |
/system/tpm/tpm_manager/common/ |
print_tpm_manager_status_proto.cc | 23 #include <base/strings/string_number_conversions.h> 24 #include <base/strings/stringprintf.h>
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/ |
string.d | 2 #name : .strings tests
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/macros/ |
strings.d | 2 #name: strings
|
/system/core/base/ |
strings_test.cpp | 17 #include "android-base/strings.h" 26 TEST(strings, split_empty) { 32 TEST(strings, split_single) { 38 TEST(strings, split_simple) { 46 TEST(strings, split_with_empty_part) { 54 TEST(strings, split_null_char) { 62 TEST(strings, split_any) { 70 TEST(strings, split_any_with_empty_part) { 78 TEST(strings, trim_empty) { 82 TEST(strings, trim_already_trimmed) [all...] |
/external/curl/tests/libtest/ |
lib576.c | 46 if(finfo->strings.perm) { 47 printf("Permissions: %s", finfo->strings.perm); 53 if(finfo->strings.user) 54 printf("User: %s\n", finfo->strings.user); 55 if(finfo->strings.group) 56 printf("Group: %s\n", finfo->strings.group); 57 if(finfo->strings.time) 58 printf("Time: %s\n", finfo->strings.time); 69 printf("Target: %s\n", finfo->strings.target);
|
/external/icu/icu4c/source/common/ |
bytestriebuilder.cpp | 38 void setTo(const StringPiece &s, int32_t val, CharString &strings, UErrorCode &errorCode); 40 StringPiece getString(const CharString &strings) const { 44 length=(uint8_t)strings[offset++]; 47 length=((int32_t)(uint8_t)strings[offset]<<8)|(uint8_t)strings[offset+1]; 50 return StringPiece(strings.data()+offset, length); 52 int32_t getStringLength(const CharString &strings) const { 55 return (uint8_t)strings[offset]; 58 return ((int32_t)(uint8_t)strings[offset]<<8)|(uint8_t)strings[offset+1] 182 const CharString *strings=static_cast<const CharString *>(context); local [all...] |
/external/emma/core/java12/com/vladium/util/ |
Strings.java | 7 * $Id: Strings.java,v 1.1.1.1 2004/05/09 16:57:55 vlad_r Exp $ 24 abstract class Strings 33 public static String toListForm (final String [] strings, final char delimiter) 35 if (strings == null) return null; 36 if (strings.length == 0) return ""; 39 for (int i = 0, iLimit = strings.length; i < iLimit; ++ i) 42 s.append (strings [i]); 48 public static String [] removeDuplicates (final String [] strings, final boolean removeNull) 50 if (strings == null) return strings; [all...] |
/external/mesa3d/src/egl/main/ |
eglstring.h | 41 #include <strings.h> // for strcasecmp
|
/external/skia/src/gpu/gl/builders/ |
GrGLShaderStringBuilder.h | 19 const char** strings,
|