/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/testing/ |
D | file.h | 40 namespace protobuf { 67 static bool CreateDir(const string& name, int mode); 70 static bool RecursivelyCreateDir(const string& path, int mode);
|
D | file.cc | 50 namespace protobuf { namespace 53 #define mkdir(name, mode) mkdir(name) argument 114 bool File::CreateDir(const string& name, int mode) { in CreateDir() argument 115 return mkdir(name.c_str(), mode) == 0; in CreateDir() 118 bool File::RecursivelyCreateDir(const string& path, int mode) { in RecursivelyCreateDir() argument 119 if (CreateDir(path, mode)) return true; in RecursivelyCreateDir() 130 return RecursivelyCreateDir(path.substr(0, slashpos), mode) && in RecursivelyCreateDir() 131 CreateDir(path, mode); in RecursivelyCreateDir()
|
D | googletest.cc | 53 namespace protobuf { namespace 56 #define mkdir(name, mode) mkdir(name) argument
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/examples/ |
D | CMakeLists.txt | 5 project(protobuf-examples) 7 # Find required protobuf package 8 find_package(protobuf CONFIG REQUIRED) 45 COMMAND protobuf::protoc 56 if(protobuf_MODULE_COMPATIBLE) #Legacy mode 60 target_link_libraries(${executable_name} protobuf::libprotobuf)
|
/frameworks/base/startop/scripts/app_startup/ |
D | run_app_with_prefetch | 25 -i, --input <file> trace file protobuf (default 'TraceFile.pb') 26 -r, --readahead <mode> cold, warm, fadvise, mlock (default 'warm') 41 mode='warm' 70 mode="$2" 134 if [[ $mode != "cold" && $mode != "warm" ]]; then 314 if [[ $mode != "warm" ]]; then 320 perform_aot "$when" "$mode" 333 perform_aot_cleanup "$when" "$mode"
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/cmake/ |
D | protobuf-module.cmake.in | 131 " used in CONFIG mode") 146 get_target_property(${name}_LIBRARY_RELEASE protobuf::lib${filename} 148 get_target_property(${name}_LIBRARY_DEBUG protobuf::lib${filename} 179 _protobuf_find_libraries(Protobuf protobuf) 182 _protobuf_find_libraries(Protobuf_LITE protobuf-lite) 192 get_target_property(Protobuf_INCLUDE_DIRS protobuf::libprotobuf 196 get_target_property(Protobuf_PROTOC_EXECUTABLE protobuf::protoc 199 get_target_property(Protobuf_PROTOC_EXECUTABLE protobuf::protoc
|
D | examples.cmake | 31 # sub_directory cannot be used because the find_package(protobuf) call would cause failures with re… 52 #Build using the installed library in legacy compatibility mode.
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/ |
D | MapField.java | 31 package com.google.protobuf; 79 private volatile StorageMode mode; field in MapField 119 StorageMode mode, in MapField() argument 123 this.mode = mode; in MapField() 130 StorageMode mode, in MapField() argument 132 this(new ImmutableMessageConverter<K, V>(defaultEntry), mode, mapData); in MapField() 180 if (mode == StorageMode.LIST) { in getMap() 182 if (mode == StorageMode.LIST) { in getMap() 184 mode = StorageMode.BOTH; in getMap() 193 if (mode != StorageMode.MAP) { in getMutableMap() [all …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/ |
D | README.md | 4 …Build Status](https://travis-ci.org/google/protobuf.svg?branch=master)](https://travis-ci.org/goog… 66 ../src/google/protobuf/descriptor.proto 78 features compared with the official Java protobuf: 250 The 'reftypes' mode has some additional cost due to autoboxing and usage 255 The 'reftypes' mode is useful when you want to be able to serialize fields 258 'accessors' mode. 261 mode, serialization of the proto will cause a NullPointerException. This is 358 \<protobuf-root\>java/target/protobuf-java-2.3.0-nano.jar. 374 - cd external/protobuf 387 "adb shell am instrument -w com.google.protobuf.nano.test/android.test.InstrumentationTestRunner"
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ |
D | CONTRIBUTORS.txt | 79 * Emacs mode for Protocol Buffers (editors/protobuf-mode.el).
|
D | protobuf.bzl | 1 # -*- mode: python; -*- PYTHON-PREPROCESSING-REQUIRED 118 default_runtime="//:protobuf", 120 """Bazel rule to create a C++ protobuf library from proto source files 262 """Bazel rule to create a Python protobuf library from proto source files 314 """Bazel rules to create batch tests for protobuf internal. 319 each of the parameter with the source "google/protobuf/%s.py" 324 s = "python/google/protobuf/internal/%s.py" % m
|
D | Makefile.am | 49 pkgconfig_DATA = protobuf.pc protobuf-lite.pc 194 java/core/src/main/java/com/google/protobuf/AbstractMessage.java \ 195 java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java \ 196 java/core/src/main/java/com/google/protobuf/AbstractParser.java \ 197 java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java \ 198 java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java \ 199 java/core/src/main/java/com/google/protobuf/BlockingService.java \ 200 java/core/src/main/java/com/google/protobuf/BooleanArrayList.java \ 201 java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java \ 202 java/core/src/main/java/com/google/protobuf/ByteOutput.java \ [all …]
|
D | CHANGES.txt | 12 source compatible. For example, if your code compiles against protobuf 13 v3.0.0, it will continue to compile after you upgrade protobuf library to 17 against protobuf v3.0.0. After switching the protobuf runtime binary to 32 protobuf generated code, and also prevents conflicts with any `foo.rb` file 65 import "google/protobuf/descriptor.proto"; 66 extend google.protobuf.OneofOptions { 80 * Added google::protobuf::Map::swap() to swap two map fields. 122 * Well-known types are now provided in the google-protobuf package, and the 196 * Added DiscardUnknownFields API for python protobuf message. 279 - Fixed wire-format for google.protobuf.Value/ListValue. [all …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/jenkins/docker/ |
D | Dockerfile | 111 ENV MVN mvn --batch-mode 114 git clone https://github.com/google/protobuf.git && \ 115 cd protobuf && \
|
/frameworks/av/media/libmediaplayer2/nuplayer2/ |
D | NuPlayer2Driver.cpp | 40 using google::protobuf::RepeatedPtrField; 376 status_t NuPlayer2Driver::seekTo(int64_t msec, MediaPlayer2SeekMode mode) { in seekTo() argument 377 ALOGD("seekTo(%p) (%lld ms, %d) at state %d", this, (long long)msec, mode, mState); in seekTo() 389 mPlayer->seekToAsync(seekTimeUs, mode, true /* needNotify */); in seekTo() 606 int mode = (it++)->int32_value(); in invoke() local 607 return mPlayer->setVideoScalingMode(mode); in invoke()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/ |
D | unittest_lite.proto | 38 import "google/protobuf/unittest_import_lite.proto"; 42 option java_package = "com.google.protobuf"; 380 // TestEmptyMessageLite is used to test unknown fields support in lite mode.
|
D | descriptor.proto | 42 package google.protobuf; 44 option java_package = "com.google.protobuf"; 273 // independent entities, e-mail protobuf-global-extension-registry@google.com 354 // early versions of google.protobuf. 460 // Default mode.
|
D | descriptor_unittest.cc | 62 namespace protobuf { namespace 2038 google::protobuf::scoped_ptr<DescriptorPool> pool_; 2380 DescriptorPoolMode mode() { in mode() function in google::protobuf::descriptor_unittest::AllowUnknownDependenciesTest 2387 switch (mode()) { in SetUp() 2446 switch (mode()) { in BuildFile() 2468 google::protobuf::scoped_ptr<DescriptorPool> pool_; 2654 switch (mode()) { in TEST_P()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/ |
D | command_line_interface.cc | 85 namespace protobuf { namespace 89 #define mkdir(name, mode) mkdir(name) argument 405 google::protobuf::scoped_ptr<io::StringOutputStream> inner_; 1208 << protobuf::internal::VersionString(GOOGLE_PROTOBUF_VERSION) in InterpretArgument() 1586 google::protobuf::scoped_ptr<io::ZeroCopyOutputStream> current_output; in GeneratePluginOutput() 1635 google::protobuf::scoped_ptr<Message> message(dynamic_factory.GetPrototype(type)->New()); in EncodeOrDecode()
|
/frameworks/base/media/apex/java/android/media/ |
D | MediaPlayer2.java | 34 import android.media.protobuf.InvalidProtocolBufferException; 1755 public @NonNull Object seekTo(long msec, @SeekMode int mode) { 1759 if (mode < SEEK_PREVIOUS_SYNC || mode > SEEK_CLOSEST) { 1760 final String msg = "Illegal seek mode: " + mode; 1778 && mPreviousSeekMode == mode) { 1784 native_seekTo(posMs, mode); 1789 mPreviousSeekMode = mode; 1795 private native void native_seekTo(long msec, int mode);
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/more_protos/src/proto/google/protobuf/ |
D | descriptor.proto | 3 // http://code.google.com/p/protobuf/ 41 package google.protobuf; 42 option java_package = "com.google.protobuf"; 229 // independent entities, e-mail protobuf-global-extension-registry@google.com 347 // Default mode.
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/ |
D | descriptor.proto | 3 // http://code.google.com/p/protobuf/ 41 package google.protobuf; 42 option java_package = "com.google.protobuf"; 229 // independent entities, e-mail protobuf-global-extension-registry@google.com 347 // Default mode.
|
/frameworks/native/cmds/surfacereplayer/replayer/ |
D | README.md | 139 Traces are represented as a protobuf message located in surfacereplayer/proto/src. 171 **PowerModeUpdates** contain the id of the display being updated and what mode it is being
|