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

1 2 3 4 5 6 7 8 91011>>

  /external/libbrillo/brillo/
test_helpers.h 20 std::string contents; local
21 EXPECT_TRUE(base::ReadFileToString(base::FilePath(file_path), &contents));
22 EXPECT_EQ(golden, contents);
  /system/core/libutils/tests/
Singleton_test.h 27 unsigned int contents; member in struct:android::SingletonTestData
  /external/apache-harmony/support/src/test/java/tests/support/
Support_TestResource.java 24 Object[][] contents = { { "parent1", "parentValue1" }, local
27 return contents;
Support_TestResource_en.java 24 Object[][] contents = { { "parent2", "enValue2" }, local
27 return contents;
Support_TestResource_en_US.java 24 Object[][] contents = { { "parent3", "enUSValue3" }, local
27 return contents;
Support_TestResource_fr.java 24 Object[][] contents = { { "parent2", "frValue2" }, local
27 return contents;
Support_TestResource_fr_FR.java 24 Object[][] contents = { { "parent3", "frFRValue3" }, local
27 return contents;
Support_TestResource_fr_FR_VAR.java 24 Object[][] contents = { { "parent4", "frFRVARValue4" }, local
28 return contents;
  /external/tensorflow/tensorflow/compiler/xla/
text_literal_reader_test.cc 31 string contents = R"(f32[1,2,3] local
42 tensorflow::WriteStringToFile(tensorflow::Env::Default(), fname, contents)
text_literal_writer_test.cc 39 string contents; local
41 &contents));
48 EXPECT_EQ(expected, contents);
  /hardware/interfaces/radio/1.0/vts/functional/
radio_hidl_hal_stk.cpp 114 std::string contents = ""; local
116 radio->sendEnvelopeWithStatus(serial, contents);
  /libcore/support/src/test/java/tests/support/
Support_TestResource_en.java 24 Object[][] contents = { { "parent2", "enValue2" }, local
27 return contents;
Support_TestResource_en_US.java 24 Object[][] contents = { { "parent3", "enUSValue3" }, local
27 return contents;
Support_TestResource_fr.java 24 Object[][] contents = { { "parent2", "frValue2" }, local
27 return contents;
Support_TestResource_fr_FR.java 24 Object[][] contents = { { "parent3", "frFRValue3" }, local
27 return contents;
Support_TestResource_fr_FR_VAR.java 24 Object[][] contents = { { "parent4", "frFRVARValue4" }, local
28 return contents;
Support_TestResource.java 25 Object[][] contents = { { "parent1", "parentValue1" }, local
28 return contents;
  /external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
resource.py 46 def contents(self): member in class:Resource
  /external/clang/test/CodeGen/
2009-03-08-ZeroEltStructCrash.c 7 } contents; member in struct:Union
10 int *array = u->contents.zero_arr;
  /external/google-breakpad/src/processor/
synth_minidump_unittest.cc 63 string contents; local
64 ASSERT_TRUE(section.GetContents(&contents));
65 EXPECT_EQ(string("\x78\x56\x34\x12", 4), contents);
75 string contents; local
76 ASSERT_TRUE(section1.GetContents(&contents));
78 EXPECT_EQ(expected, contents);
85 stream.Append("stream contents");
86 section.Append("section contents");
89 string contents; local
90 ASSERT_TRUE(section.GetContents(&contents));
107 string contents; local
129 string contents; local
140 string contents; local
176 string contents; local
204 string contents; local
240 string contents; local
256 string contents; local
266 string contents; local
283 string contents; local
292 string contents; local
308 string contents; local
333 string contents; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/data/
TestDataElements_testtypes.java 20 return contents;
23 private static Object[][] contents = { field in class:TestDataElements_testtypes
  /external/v8/src/extensions/
free-buffer-extension.cc 23 v8::ArrayBuffer::Contents contents = arrayBuffer->Externalize(); local
25 isolate->array_buffer_allocator()->Free(contents.Data(),
26 contents.ByteLength());
  /frameworks/base/libs/androidfw/tests/
AppAsLib_test.cpp 29 std::string contents; local
32 "resources.arsc", &contents));
35 ASSERT_EQ(NO_ERROR, table.add(contents.data(), contents.size()));
46 std::string contents; local
49 "resources.arsc", &contents));
53 ASSERT_EQ(NO_ERROR, table.add(contents.data(), contents.size(), NULL, 0, -1,
65 std::string contents; local
68 "resources.arsc", &contents));
    [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
Resources.java 35 private static final Object[][] contents = { field in class:Resources
161 * Returns the contents of this <code>ResourceBundle</code>.
165 * @return the contents of this <code>ResourceBundle</code>.
169 return contents;
  /external/guava/guava/src/com/google/common/collect/
ImmutableMapEntry.java 40 ImmutableMapEntry(ImmutableMapEntry<K, V> contents) {
41 super(contents.getKey(), contents.getValue());
52 TerminalEntry(ImmutableMapEntry<K, V> contents) {
53 super(contents);

Completed in 461 milliseconds

1 2 3 4 5 6 7 8 91011>>