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

<<31323334353637383940>>

  /external/robolectric/v3/runtime/
json-20080701.jar 
  /prebuilts/tools/common/m2/repository/org/json/json/20080701/
json-20080701.jar 
  /art/runtime/native/
dalvik_system_VMRuntime.cc 161 static const char* DefaultToDot(const std::string& class_path) {
265 typedef std::map<std::string, mirror::String*> StringTable;
273 mirror::String* string = root->AsString(); local
274 table_->operator[](string->ToModifiedUtf8()) = string;
285 mirror::String* string = dex_cache->GetResolvedString(string_idx); local
286 if (string != nullptr)
447 mirror::String* string = dex_cache->GetResolvedString(j); local
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/program/
IdCreator.java 47 private int findProtoIdInsertionPoint(String signature) {
49 String[] parameterListStrings = convertSignatureToParameterList(signature);
86 private int findMethodIdInsertionPoint(String className, String methodName, String signature) {
113 private int findTypeIdInsertionPoint(String className) {
117 Log.errorAndQuit("Did not create necessary descriptor string before finding "
131 private int findStringDataInsertionPoint(String string) {
134 if (stringData.getSize() > 0 && stringData.getString().compareTo(string) >= 0)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DeviceSuspendTestActivity.java 58 private static String ACTION_ALARM = "DeviceSuspendTestActivity.ACTION_ALARM";
59 private static String TAG = "DeviceSuspendSensorTest";
80 logger.logInstructions(R.string.snsr_device_suspend_test_instr);
125 public String testAPWakeUpWhenReportLatencyExpiresAccel() throws Throwable {
133 public String testAPWakeUpWhenReportLatencyExpiresGyro() throws Throwable {
141 public String testAPWakeUpWhenReportLatencyExpiresMag() throws Throwable {
149 public String testAPWakeUpWhenFIFOFullAccel() throws Throwable {
157 public String testAPWakeUpWhenFIFOFullGyro() throws Throwable {
165 public String testAPWakeUpWhenFIFOFullMag() throws Throwable {
173 public String testAccelBatchingInAPSuspendLargeReportLatency() throws Throwable
194 String string = null; local
    [all...]
  /external/ImageMagick/MagickCore/
option.c 2412 *string; local
    [all...]
string.c 13 % MagickCore String Methods %
58 #include "MagickCore/string-private.h"
109 % AcquireString() returns an new extented string, containing a clone of the
110 % given string.
112 % An extended string is the string length, plus an extra MagickPathExtent space
113 % to allow for the string to be actively worked on.
115 % The returned string shoud be freed using DestoryString().
123 % o source: A character string.
170 % o length: the string length
580 *string; local
1893 *string; local
1935 *string; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 67 * An instance of this class compiles an XPath string expression into
68 * a Expression object. This class compiles the string into a sequence
156 expr = string(opPos); break;
453 * Compile a 'string(...)' operation.
457 * @return reference to {@link org.apache.xpath.operations.String} instance.
461 protected Expression string(int opPos) throws TransformerException method in class:Compiler
463 return compileUnary(new org.apache.xpath.operations.String(), opPos);
495 * Compile a literal string value.
545 java.lang.String namespace
547 : (java.lang.String) getTokenQueue().elementAt(nsPos)
    [all...]
  /external/autotest/contrib/
coverage.py 66 import string namespace
354 short_opts = string.join(map(lambda o: o[1:], optmap.keys()), '')
554 if filename == '<string>':
682 # function with a doc string and a single pass statement.
754 ret = string.join(map(stringify, pairs), ", ")
    [all...]
  /external/autotest/server/
site_linux_router.py 9 import string namespace
39 @param client_hostname: string hostname of DUT connected to a router.
40 @param router_hostname: string hostname of router.
41 @return string hostname of connected router or None if the hostname
60 @param test_name: string name of this test (e.g. 'network_WiFi_TestName').
61 @param client_hostname: string hostname of DUT if we're in the lab.
62 @param router_addr: string DNS/IPv4 address to use for router host object.
94 SUFFIX_LETTERS = string.ascii_lowercase + string.digits
137 @return string IP of WiFi interface
    [all...]
  /external/chromium-trace/catapult/third_party/WebOb/webob/
cookies.py 14 import string namespace
93 raise TypeError(name, 'cookie name must be a string')
107 raise ValueError(value, 'cookie value must be a string')
295 _re_quoted = r'"(?:\\"|.)*?"' # any doublequoted string
341 _allowed_cookie_chars = (string.ascii_letters + string.digits +
356 _valid_token_chars = string.ascii_letters + string.digits + "!#$%&'*+-.^_`|~"
389 # string, if we end up with leftovers (string is longer than 0, we hav
    [all...]
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
output_writers.py 42 import string namespace
463 NAMING_FORMAT_PARAM: prefix format string for the new files (there is no
549 a string containing the filename.
560 template = string.Template(naming_format)
655 data: string containing the data to be written.
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 29 StringRef string; local
32 string = nullability.second ? "'nonnull'" : "'_Nonnull'";
36 string = nullability.second ? "'nullable'" : "'_Nullable'";
40 string = nullability.second ? "'null_unspecified'" : "'_Null_unspecified'";
44 DB.AddString(string);
409 /// ModifierIs - Return true if the specified modifier matches specified string.
457 " larger than the number of options in the diagnostic string!");
458 Argument = NextVal+1; // Skip this string.
465 // Recursively format the result of the select clause into the output string.
470 /// letter 's' to the string if the value is not 1. This is used in cases lik
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp 169 struct string { struct in namespace:pr10644
170 string(const char* __s);
173 int& operator[](const string& __k);
175 int& operator[](const string&& __k);
  /external/clang/test/Sema/
designated-initializers.c 208 char *string; member in struct:Enigma::__anon7850::__anon7851::__anon7852
329 // Check initializer override warnings overriding a character in a string
  /external/freetype/src/sfnt/
sfobjs.c 54 FT_String* string = NULL; local
56 FT_Byte* read = (FT_Byte*)entry->string;
62 if ( FT_NEW_ARRAY( string, len + 1 ) )
75 string[n] = (char)code;
78 string[n] = 0;
80 return string;
89 FT_String* string = NULL; local
91 FT_Byte* read = (FT_Byte*)entry->string;
97 if ( FT_NEW_ARRAY( string, len + 1 ) )
110 string[n] = (char)code
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableListMultimapTest.java 42 protected ListMultimap<String, String> create(Entry<String, String>[] entries) {
43 ImmutableListMultimap.Builder<String, String> builder = ImmutableListMultimap.builder();
44 for (Entry<String, String> entry : entries) {
52 ImmutableListMultimap<String, Integer> multimap = new Builder<String, Integer>(
73 String string; field in class:ImmutableListMultimapTest.StringHolder
    [all...]
ImmutableMapTest.java 79 public static class MapTests extends AbstractMapTests<String, Integer> {
80 @Override protected Map<String, Integer> makeEmptyMap() {
84 @Override protected Map<String, Integer> makePopulatedMap() {
88 @Override protected String getKeyNotInPopulatedMap() {
98 extends AbstractMapTests<String, Integer> {
99 @Override protected Map<String, Integer> makePopulatedMap() {
103 @Override protected String getKeyNotInPopulatedMap() {
139 ImmutableMap<String, Integer> map
140 = new Builder<String, Integer>().build();
141 assertEquals(Collections.<String, Integer>emptyMap(), map)
185 String string; field in class:ImmutableMapTest.CreationTests.StringHolder
    [all...]
ImmutableSetMultimapTest.java 41 ImmutableSetMultimap<String, Integer> multimap = new Builder<String, Integer>()
48 Builder<String, Integer> builder = new Builder<String, Integer>();
55 builder.put(Maps.immutableEntry((String) null, 1));
62 String string; field in class:ImmutableSetMultimapTest.StringHolder
66 ImmutableSetMultimap.Builder<String, Integer> builder =
67 new Builder<String, Integer>();
69 holder.string = "one"
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
FreshValueGenerator.java 156 * {@code ImmutableList<String>};
252 @Override public String toString() {
276 private static String paramString(Class<?> type, int i) {
389 @Generates private String freshString() {
444 final String string = paramString(Equivalence.class, freshInt()); field in class:FreshValueGenerator
445 @Override public String toString() {
446 return string;
456 final String string = paramString(CharMatcher.class, freshInt())
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableListMultimapTest.java 51 protected ListMultimap<String, String> create(Entry<String, String>[] entries) {
52 ImmutableListMultimap.Builder<String, String> builder = ImmutableListMultimap.builder();
53 for (Entry<String, String> entry : entries) {
76 ImmutableListMultimap<String, Integer> multimap = new Builder<String, Integer>(
97 String string; field in class:ImmutableListMultimapTest.StringHolder
    [all...]
ImmutableSetMultimapTest.java 55 protected SetMultimap<String, String> create(Entry<String, String>[] entries) {
56 ImmutableSetMultimap.Builder<String, String> builder = ImmutableSetMultimap.builder();
57 for (Entry<String, String> entry : entries) {
74 ImmutableSetMultimap<String, Integer> multimap = new Builder<String, Integer>(
95 String string; field in class:ImmutableSetMultimapTest.StringHolder
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
HashCodeTest.java 96 String expectedToString = "cdab0000";
213 String string = HashCode.fromBytes(expected.bytes).toString(); local
214 assertEquals(expected.toString, string);
218 BaseEncoding.base16().lowerCase().decode(string)).toString());
231 String string = Hashing.sha1().hashString("foo", Charsets.US_ASCII).toString().toUpperCase(); local
233 HashCode.fromString(string);
342 .setDistinctValues(String.class, "7f8005ff0e", "7f8005ff0f")
389 final String toString
    [all...]
HashTestUtils.java 44 * Converts a string, which should contain only ascii-representable characters, to a byte[].
46 static byte[] ascii(String string) {
47 byte[] bytes = new byte[string.length()];
48 for (int i = 0; i < string.length(); i++) {
49 bytes[i] = (byte) string.charAt(i);
181 String s = new String(value);
189 String s = new String(new char[] { randomLowSurrogate(random) })
539 String string = new String(bytes); local
560 String string = new String(chars); local
    [all...]
  /external/guice/core/test/com/google/inject/
CircularDependencyTest.java 421 @Override public String toString() {
441 @Override public String toString() {
487 @Provides String provideString(Bar bar) {
488 return new String("private 1, " + bar.string);
497 @Provides String provideString() {
498 return new String("private 2");
504 assertEquals("private 1, private 2", foo.string);
507 @Inject String string; field in class:CircularDependencyTest.Foo
510 @Inject String string; field in class:CircularDependencyTest.Bar
    [all...]

Completed in 2410 milliseconds

<<31323334353637383940>>