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

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
sparsemap.go 87 func (s *sparseMap) contents() []sparseEntry { func
sparseset.go 77 func (s *sparseSet) contents() []ID { func
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
sparsemap.go 87 func (s *sparseMap) contents() []sparseEntry { func
sparseset.go 77 func (s *sparseSet) contents() []ID { func
  /system/update_engine/common/
action_pipe.h 61 const ObjectType& contents() const { return contents_; } function in class:chromeos_update_engine::ActionPipe
65 void set_contents(const ObjectType& contents) { contents_ = contents; }
  /tools/tradefederation/core/src/com/android/tradefed/util/
GCSFileDownloader.java 45 String contents = bucket.pullContents(path); local
46 return new ByteArrayInputStream(contents.getBytes());
  /external/autotest/frontend/client/src/autotest/afe/
AbortSynchronousDialog.java 42 Panel contents = new VerticalPanel(); local
43 contents.add(new Label(message));
46 contents.add(jobListLabel);
61 contents.add(buttons);
63 add(contents);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStreamTest.java 145 ByteArrayOutputStream contents = new ByteArrayOutputStream(); local
150 contents.write(buf, 0, len);
157 // + "', zero=" + contents.toByteArray()[0]
158 // + ", tfs=" + contents.toByteArray()[257]
  /packages/apps/Launcher3/src/com/android/launcher3/
FolderInfo.java 53 public ArrayList<ShortcutInfo> contents = new ArrayList<ShortcutInfo>(); field in class:FolderInfo
68 add(item, contents.size(), animate);
75 rank = Utilities.boundToRange(rank, 0, contents.size());
76 contents.add(rank, item);
89 contents.remove(item);
  /bionic/libc/kernel/uapi/asm-x86/asm/
ldt.h 29 unsigned int contents : 2; member in struct:user_desc
  /external/autotest/frontend/client/src/autotest/common/
StatusSummary.java 15 private String[] contents = null; field in class:StatusSummary
27 summary.contents = Utils.JSONtoStrings(group.get("extra_info").isArray());
49 if (contents != null) {
51 result += Utils.joinStrings("<br>", Arrays.asList(contents), true);
  /external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
html_module_unittest.py 22 """A resource with explicitly provided contents.
25 cause accessing the resource contents to raise an exception mimicking the
31 def contents(self): member in class:ResourceWithFakeContents
style_sheet.py 25 def contents(self): member in class:Image
26 return self.resource.contents
31 def __init__(self, loader, containing_dirname, contents):
33 self.contents = contents
57 data = base64.standard_b64encode(image.contents)
63 InlineUrl, self.contents)
70 if self.contents.find('@import') != -1:
75 self.contents)
107 def contents(self) member in class:StyleSheet
    [all...]
  /external/kernel-headers/original/uapi/asm-x86/asm/
ldt.h 26 unsigned int contents:2; member in struct:user_desc
  /external/perfetto/tools/ftrace_proto_gen/
main.cc 80 std::string contents; local
81 if (!perfetto::base::ReadFile(input_path, &contents)) {
87 if (!perfetto::ParseFtraceEvent(contents, &format)) {
  /external/tensorflow/tensorflow/contrib/ffmpeg/
encode_audio_op.cc 31 void Encode(OpKernelContext* context, const Tensor& contents,
35 samples.reserve(contents.NumElements());
36 for (int32 i = 0; i < contents.NumElements(); ++i) {
37 samples.push_back(contents.flat<float>()(i));
39 const int32 channel_count = contents.dim_size(1);
68 const Tensor& contents = context->input(0); variable
73 OP_REQUIRES(context, TensorShapeUtils::IsMatrix(contents.shape()),
76 contents.shape().DebugString()));
78 context, contents.NumElements() <= std::numeric_limits<int32>::max(),
81 contents.shape().DebugString()))
177 const Tensor& contents = context->input(0); variable
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
decode_wav_op.cc 28 // Decode the contents of a WAV file
39 const Tensor& contents = context->input(0); variable
40 OP_REQUIRES(context, TensorShapeUtils::IsScalar(contents.shape()),
41 errors::InvalidArgument("contents must be scalar, got shape ",
42 contents.shape().DebugString()));
43 const string wav_string = contents.scalar<string>()();
45 errors::InvalidArgument("WAV contents are too large for int: ",
  /frameworks/base/core/java/android/content/pm/
ParceledListSlice.java 48 int contents = 0; local
51 contents |= list.get(i).describeContents();
53 return contents;
  /frameworks/base/libs/androidfw/tests/
ApkAssets_test.cpp 83 std::string contents; local
86 ASSERT_TRUE(ReadFileFromZipToString(target_path, "resources.arsc", &contents));
87 ASSERT_THAT(target_table.add(contents.data(), contents.size(), 0, true /*copyData*/),
92 ASSERT_TRUE(ReadFileFromZipToString(overlay_path, "resources.arsc", &contents));
93 ASSERT_THAT(overlay_table.add(contents.data(), contents.size(), 0, true /*copyData*/),
Idmap_test.cpp 32 std::string contents; variable
34 &contents));
35 ASSERT_EQ(NO_ERROR, target_table_.add(contents.data(), contents.size(), 0, true));
LoadedArsc_test.cpp 44 std::string contents; local
46 &contents));
48 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents));
70 std::string contents; local
72 &contents));
74 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents));
94 std::string contents; local
96 &contents));
98 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents));
114 std::string contents; local
139 std::string contents; local
155 std::string contents; local
199 std::string contents; local
247 std::string contents; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
ldt.h 25 unsigned int contents:2; member in struct:user_desc
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
ldt.h 25 unsigned int contents:2; member in struct:user_desc
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/
AdtPluginTest.java 38 String contents = AdtPlugin.readFile(new StringReader(input)); local
39 assertEquals(input, contents);
  /system/nvram/core/include/nvram/core/
persistence.h 125 Blob contents; member in struct:nvram::NvramSpace

Completed in 682 milliseconds

1 2 34 5 6 7 8 91011>>