HomeSort by relevance Sort by last modified time
    Searched refs:pb (Results 1 - 25 of 1338) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/services/surfaceflinger/layerproto/include/layerproto/
LayerProtoHeader.h 18 // headers. By adding #pragma before including layer.pb.h, it supresses
23 #include <layers.pb.h>
24 #include <layerstrace.pb.h>
  /frameworks/native/services/surfaceflinger/TimeStats/timestatsproto/include/timestatsproto/
TimeStatsProtoHeader.h 18 // headers. By adding #pragma before including layer.pb.h, it supresses
23 #include <timestats.pb.h>
  /external/golang-protobuf/proto/testdata/
Makefile 38 rm -f test.pb.go
39 make test.pb.go
44 git diff test.pb.go
47 cp test.pb.go.golden test.pb.go
50 cp test.pb.go test.pb.go.golden
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p10.cpp 12 B* pb = new B; local
13 A* pa = pb;
15 pb->f(); // expected-error{{too few arguments to function call, expected 1, have 0; did you mean 'A::f'?}}
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessBuilderTest.java 43 ProcessBuilder pb = new ProcessBuilder("command"); local
44 assertEquals(1, pb.command().size());
45 assertEquals("command", pb.command().get(0));
48 pb = new ProcessBuilder("AAA");
49 pb.command("BBB", "CCC");
50 List<String> list = pb.command();
58 ProcessBuilder pb = new ProcessBuilder("command"); local
59 ProcessBuilder pbReturn = pb.command("cmd");
60 assertSame(pb, pbReturn);
61 assertEquals(1, pb.command().size())
66 ProcessBuilder pb = new ProcessBuilder("command"); local
81 ProcessBuilder pb = new ProcessBuilder("command"); local
86 ProcessBuilder pb = new ProcessBuilder("command"); local
98 ProcessBuilder pb = new ProcessBuilder("command"); local
131 ProcessBuilder pb = new ProcessBuilder("command"); local
136 ProcessBuilder pb = new ProcessBuilder("command"); local
148 ProcessBuilder pb = new ProcessBuilder("ls", "-al"); local
173 ProcessBuilder pb = new ProcessBuilder("ls", "with\\u0000inside"); local
    [all...]
  /external/libxaac/decoder/
ixheaacd_mps_smoothing.c 38 int ps = 0, pb, row, col; local
49 for (pb = res_bands; pb < self->bs_param_bands; pb++) {
54 self->m1_param_re[ps][pb][row][col] =
55 (ixheaacd_mult32(delta, self->m1_param_re[ps][pb][row][col]) +
57 self->m1_param_re_prev[pb][row][col]))
59 self->m1_param_im[ps][pb][row][col] =
60 (ixheaacd_mult32(delta, self->m1_param_im[ps][pb][row][col]) +
62 self->m1_param_im_prev[pb][row][col])
144 int ps, pb; local
    [all...]
  /frameworks/base/tools/aapt2/
ResourcesInternal.proto 22 package aapt.pb.internal;
24 option java_package = "android.aapt.pb.internal";
35 aapt.pb.SourcePosition source = 2;
42 aapt.pb.Configuration config = 2;
45 aapt.pb.FileReference.Type type = 3;
  /frameworks/base/tools/aapt2/format/proto/
ProtoSerialize.h 23 #include "Configuration.pb.h"
26 #include "Resources.pb.h"
27 #include "ResourcesInternal.pb.h"
35 void SerializeValueToPb(const Value& value, pb::Value* out_value, StringPool* src_pool = nullptr);
37 // Serialize an Item into its protobuf representation. pb::Item does not store the source path nor
39 void SerializeItemToPb(const Item& item, pb::Item* out_item);
42 void SerializeXmlToPb(const xml::Element& el, pb::XmlNode* out_node);
45 void SerializeXmlResourceToPb(const xml::XmlResource& resource, pb::XmlNode* out_node);
49 void SerializeStringPoolToPb(const StringPool& pool, pb::StringPool* out_pb_pool, IDiagnostics* diag);
52 void SerializeConfig(const ConfigDescription& config, pb::Configuration* out_pb_config)
    [all...]
ProtoDeserialize.h 24 #include "Configuration.pb.h"
27 #include "Resources.pb.h"
28 #include "ResourcesInternal.pb.h"
35 std::unique_ptr<Value> DeserializeValueFromPb(const pb::Value& pb_value,
41 std::unique_ptr<Item> DeserializeItemFromPb(const pb::Item& pb_item,
46 std::unique_ptr<xml::XmlResource> DeserializeXmlResourceFromPb(const pb::XmlNode& pb_node,
49 bool DeserializeXmlFromPb(const pb::XmlNode& pb_node, xml::Element* out_el, StringPool* value_pool,
52 bool DeserializeConfigFromPb(const pb::Configuration& pb_config, ConfigDescription* out_config,
56 bool DeserializeTableFromPb(const pb::ResourceTable& pb_table, io::IFileCollection* files,
59 bool DeserializeCompiledFileFromPb(const pb::internal::CompiledFile& pb_file
    [all...]
  /external/nanopb-c/examples/network_server/
common.h 4 #include <pb.h>
Makefile 13 rm -f server client fileproto.pb.c fileproto.pb.h
15 %: %.c common.c fileproto.pb.c
  /external/golang-protobuf/proto/
size_test.go 41 pb "github.com/golang/protobuf/proto/testdata"
44 var messageWithExtension1 = &pb.MyMessage{Count: Int32(7)}
47 var messageWithExtension3 = &pb.MyMessage{Count: Int32(8)}
50 if err := SetExtension(messageWithExtension1, pb.E_Ext_More, &pb.Ext{Data: String("Abbott")}); err != nil {
53 if err := SetExtension(messageWithExtension3, pb.E_Ext_More, &pb.Ext{Data: String("Costello")}); err != nil {
64 pb Message
66 {"empty", &pb.OtherMessage{}},
68 {"bool", &pb.Defaults{F_Bool: Bool(true)}}
    [all...]
equal_test.go 39 pb "github.com/golang/protobuf/proto/testdata"
44 var messageWithoutExtension = &pb.MyMessage{Count: Int32(7)}
45 var messageWithExtension1a = &pb.MyMessage{Count: Int32(7)}
46 var messageWithExtension1b = &pb.MyMessage{Count: Int32(7)}
47 var messageWithExtension2 = &pb.MyMessage{Count: Int32(7)}
50 var messageWithInt32Extension1 = &pb.MyMessage{Count: Int32(8)}
51 var messageWithInt32Extension2 = &pb.MyMessage{Count: Int32(8)}
54 ext1 := &pb.Ext{Data: String("Kirk")}
55 ext2 := &pb.Ext{Data: String("Picard")}
58 if err := SetExtension(messageWithExtension1a, pb.E_Ext_More, ext1); err != nil
    [all...]
  /external/aac/libSACdec/src/
sac_smoothing.cpp 152 static int getSmoothOnOff(spatialDec *self, int ps, int pb) {
155 smoothBand = self->smgData[ps][pb];
165 int pb, row, col; local
186 for (pb = 0; pb < self->numParameterBands; pb++) {
189 smoothBand = getSmoothOnOff(self, ps, pb);
191 if (smoothBand && (pb >= residualBands)) {
194 self->M2Real__FDK[row][col][pb] =
195 ((fMultDiv2(delta__FDK, self->M2Real__FDK[row][col][pb])
220 int pb; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
bmove.c 44 struct process_block_struct *pb; local
49 pb = (struct process_block_struct *) priv_data;
56 if (ext2fs_test_block_bitmap2(pb->reserve, block)) {
61 pb->error = EXT2_ET_BLOCK_ALLOC_FAIL;
64 } while (ext2fs_test_block_bitmap2(pb->reserve, block) ||
65 ext2fs_test_block_bitmap2(pb->alloc_map, block));
67 retval = io_channel_read_blk64(fs->io, orig, 1, pb->buf);
69 pb->error = retval;
72 retval = io_channel_write_blk64(fs->io, block, 1, pb->buf);
74 pb->error = retval
105 struct process_block_struct pb; local
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_phi_builder.c 84 struct nir_phi_builder *pb = rzalloc(NULL, struct nir_phi_builder); local
86 pb->shader = impl->function->shader;
87 pb->impl = impl;
92 pb->num_blocks = impl->num_blocks;
93 pb->blocks = ralloc_array(pb, nir_block *, pb->num_blocks);
95 pb->blocks[block->index] = block;
98 exec_list_make_empty(&pb->values);
100 pb->iter_count = 0
    [all...]
  /cts/hostsidetests/theme/app/src/android/theme/app/modifiers/
ProgressBarModifier.java 27 ProgressBar pb = (ProgressBar) view; local
28 pb.setInterpolator(new ZeroInterpolator());
29 return pb;
  /external/nanopb-c/examples/using_union_messages/
Makefile 16 rm -f encode unionproto.pb.h unionproto.pb.c
18 %: %.c unionproto.pb.c
  /external/golang-protobuf/protoc-gen-go/plugin/
Makefile 41 cp plugin.pb.golden plugin.pb.go
44 cp plugin.pb.go plugin.pb.golden
  /external/clang/test/CodeGen/
types.c 19 typedef struct MpegEncContext {int pb;} MpegEncContext; member in struct:MpegEncContext
20 static void test2(void) {MpegEncContext s; s.pb;}
  /external/golang-protobuf/protoc-gen-go/testdata/
Makefile 43 my_test/test.pb.go: my_test/test.proto
47 make -B my_test/test.pb.go
48 sed -i -e '/return.*fileDescriptor/d' my_test/test.pb.go
49 sed -i -e '/^var fileDescriptor/,/^}/d' my_test/test.pb.go
50 sed -i -e '/proto.RegisterFile.*fileDescriptor/d' my_test/test.pb.go
51 gofmt -w my_test/test.pb.go
52 diff -w my_test/test.pb.go my_test/test.pb.go.golden
60 # Invoke protoc once to generate three independent .pb.go files in the same package.
66 #multi.a: multi3.pb.$O multi2.pb.$O multi1.pb.$
    [all...]
  /external/nanopb-c/tools/
set_version.sh 5 # It sets the version number in pb.h and generator/nanopb_generator.py.
8 sed -i -e 's/#define\s*NANOPB_VERSION\s*.*/#define NANOPB_VERSION '$1'/' pb.h
  /external/protobuf/examples/
list_people_test.go 8 pb "github.com/google/protobuf/examples/tutorial"
14 p := pb.Person{
18 Phones: []*pb.Person_PhoneNumber{
19 {Number: "555-4321", Type: pb.Person_HOME},
37 in := pb.AddressBook{[]*pb.Person{
51 Phones: []*pb.Person_PhoneNumber{
52 {Number: "555-555-5555", Type: pb.Person_WORK},
59 Phones: []*pb.Person_PhoneNumber{
60 {Number: "555-555-0000", Type: pb.Person_HOME}
    [all...]
  /external/clang/test/FixIt/
typo-location-bugs.cpp 16 B* pb = new B; local
17 A* pa = pb;
19 pb->f(); // expected-error{{too few arguments to function call, expected 1, have 0; did you mean 'A::f'?}}
  /external/nanopb-c/examples/using_double_on_avr/
Makefile 13 rm -f test_conversions encode_double decode_double doubleproto.pb.c doubleproto.pb.h
18 %: %.c double_conversion.c doubleproto.pb.c

Completed in 990 milliseconds

1 2 3 4 5 6 7 8 91011>>