/art/test/077-method-override/src2/ |
Base.java | 17 public class Base { 19 System.out.println("declaredInBase: Base"); 23 System.out.println("overridden: Base"); 28 // System.out.println("wasOverridden: Base"); 35 System.out.println("overrideWithPublic: Base"); 43 System.out.println("overridePublicWithProtected: Base"); 50 System.out.println("overrideProtectedWithPublic: Base"); 58 System.out.println("overridePublicWithPrivate: Base"); 65 System.out.println("overridePrivateWithPublic: Base"); 73 System.out.println("overrideVirtualWithStatic: Base"); [all...] |
/external/e2fsprogs/lib/e2p/ |
percent.c | 21 unsigned int e2p_percent(int percent, unsigned int base) 28 return base / (100 / percent); 29 if (mask & base) 30 return (base / 100) * percent; 31 return base * percent / 100; 40 unsigned int base; local 46 fprintf(stderr, "Usage: %s percent base\n", argv[0]); 56 base = strtoul(argv[2], &p, 0); 58 fprintf(stderr, "Bad base: %s\n", argv[2]); 62 printf("%d percent of %u is %u.\n", percent, base, [all...] |
/external/libchrome/base/ |
build_time_unittest.cc | 5 #include "base/build_time.h" 7 #include "base/generated_build_date.h" 9 #include "base/time/time.h" 35 EXPECT_LT(base::GetBuildTime(), base::Time::Now()); 36 EXPECT_LT(base::GetBuildTime(), base::Time::NowFromSystemTime()); 42 base::Time cutoff(base::Time::Now() - base::TimeDelta::FromDays(45)) [all...] |
/external/libmojo/mojo/public/cpp/bindings/ |
string_traits_string16.h | 8 #include "base/strings/string16.h" 14 struct StringTraits<base::string16> { 15 static bool IsNull(const base::string16& input) { 16 // base::string16 is always converted to non-null mojom string. 20 static void SetToNull(base::string16* output) { 21 // Convert null to an "empty" base::string16. 25 static void* SetUpContext(const base::string16& input); 26 static void TearDownContext(const base::string16& input, void* context); 28 static size_t GetSize(const base::string16& input, void* context); 29 static const char* GetData(const base::string16& input, void* context) [all...] |
/external/v8/tools/clang/base_bind_rewriters/tests/ |
test-expected.cc | 11 namespace base { namespace 16 } // namespace base 24 using base::Bind; 26 base::Bind(&Foo::Bar, foo); 28 base::Bind(&Foo::Bar, (&foo)); 29 base::Bind(&Foo::Bar, foo); 30 base::Bind(&Foo::Bar, foo); 31 base::Bind(&Foo::Bar, foo, foo.get()); 32 base::Bind(&Foo::Baz, foo.get()); 33 base::Bind(&Foo::Bar, foo) [all...] |
test-original.cc | 11 namespace base { namespace 16 } // namespace base 24 using base::Bind; 26 base::Bind(&Foo::Bar, foo.get()); 28 base::Bind(&Foo::Bar, (&foo)->get()); 29 base::Bind(&Foo::Bar, foo.get( 31 base::Bind(&Foo::Bar, foo 33 base::Bind(&Foo::Bar, foo.get(), foo.get()); 34 base::Bind(&Foo::Baz, foo.get()); 35 base::Bind(&Foo::Bar, foo.scoped_refptr<int>::get()) [all...] |
/external/libbrillo/brillo/ |
test_helpers.h | 12 #include <base/command_line.h> 13 #include <base/files/file_path.h> 14 #include <base/files/file_util.h> 15 #include <base/logging.h> 21 EXPECT_TRUE(base::ReadFileToString(base::FilePath(file_path), &contents)); 26 base::CommandLine::Init(*argc, argv);
|
/external/libchrome/base/message_loop/ |
message_pump_default.h | 8 #include "base/base_export.h" 9 #include "base/macros.h" 10 #include "base/message_loop/message_pump.h" 11 #include "base/synchronization/waitable_event.h" 12 #include "base/time/time.h" 14 namespace base { namespace 40 } // namespace base
|
/external/libchrome/base/timer/ |
hi_res_timer_manager.h | 8 #include "base/base_export.h" 9 #include "base/macros.h" 10 #include "base/power_monitor/power_observer.h" 12 namespace base { namespace 16 class BASE_EXPORT HighResolutionTimerManager : public base::PowerObserver { 21 // base::PowerObserver method. 36 } // namespace base
|
/external/libmojo/base/android/ |
animation_frame_time_histogram.cc | 5 #include "base/android/animation_frame_time_histogram.h" 7 #include "base/android/jni_string.h" 8 #include "base/metrics/histogram_macros.h" 18 std::string histogram_name = base::android::ConvertJavaStringToUTF8( 23 base::TimeDelta::FromMilliseconds(frame_times_ms[i])); 27 namespace base { namespace 36 } // namespace base
|
memory_pressure_listener_android.cc | 5 #include "base/android/memory_pressure_listener_android.h" 7 #include "base/android/context_utils.h" 8 #include "base/memory/memory_pressure_listener.h" 15 base::MemoryPressureListener::NotifyMemoryPressure( 16 static_cast<base::MemoryPressureListener::MemoryPressureLevel>( 20 namespace base { namespace 33 } // namespace base
|
/external/v8/tools/clang/blink_gc_plugin/tests/ |
class_multiple_trace_bases.txt | 3 class Derived1 : public Base, public Mixin1 { 5 ./class_multiple_trace_bases.h:27:18: note: [blink-gc] Untraced base class 'Base' declared here: 6 class Derived1 : public Base, public Mixin1 { 8 ./class_multiple_trace_bases.h:27:31: note: [blink-gc] Untraced base class 'Mixin1' declared here: 9 class Derived1 : public Base, public Mixin1 { 11 class_multiple_trace_bases.cpp:17:1: warning: [blink-gc] Base class 'Mixin2' of derived class 'Derived2' requires tracing.
|
/frameworks/native/services/vr/hardware_composer/aidl/android/dvr/ |
parcelable_unique_fd.h | 4 #include <android-base/unique_fd.h> 10 // Provide a wrapper to serialized base::unique_fd. The wrapper also handles the 16 ParcelableUniqueFd(const base::unique_fd& fence); 19 void set_fence(const base::unique_fd& fence) { 22 base::unique_fd fence() const { return base::unique_fd(dup(fence_.get())); } 28 base::unique_fd fence_;
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
cr-err.l | 2 .*:[0-9]+: Error: .\(%cr0\). is not a valid base/index expression 3 .*:[0-9]+: Error: .\(%cr7\). is not a valid base/index expression 4 .*:[0-9]+: Error: .\(%cr8\). is not a valid base/index expression 5 .*:[0-9]+: Error: .\(%cr15\). is not a valid base/index expression 6 .*:[0-9]+: Error: .\(%db0\). is not a valid base/index expression 7 .*:[0-9]+: Error: .\(%db7\). is not a valid base/index expression 8 .*:[0-9]+: Error: .\(%dr0\). is not a valid base/index expression 9 .*:[0-9]+: Error: .\(%dr7\). is not a valid base/index expression 10 .*:[0-9]+: Error: .\(%tr0\). is not a valid base/index expression 11 .*:[0-9]+: Error: .\(%tr7\). is not a valid base/index expressio [all...] |
/external/mesa3d/src/mesa/program/ |
arbprogparse.c | 87 if (program->Base.String != NULL) 88 free(program->Base.String); 93 program->Base.String = prog.String; 94 program->Base.NumInstructions = prog.NumInstructions; 95 program->Base.NumTemporaries = prog.NumTemporaries; 96 program->Base.NumParameters = prog.NumParameters; 97 program->Base.NumAttributes = prog.NumAttributes; 98 program->Base.NumAddressRegs = prog.NumAddressRegs; 99 program->Base.NumNativeInstructions = prog.NumNativeInstructions; 100 program->Base.NumNativeTemporaries = prog.NumNativeTemporaries [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
prettywriter.h | 37 typedef Writer<OutputStream, SourceEncoding, TargetEncoding, StackAllocator> Base;
38 typedef typename Base::Ch Ch;
45 PrettyWriter(OutputStream& os, StackAllocator* allocator = 0, size_t levelDepth = Base::kDefaultLevelDepth) :
46 Base(os, allocator, levelDepth), indentChar_(' '), indentCharCount_(4) {}
65 bool Null() { PrettyPrefix(kNullType); return Base::WriteNull(); }
66 bool Bool(bool b) { PrettyPrefix(b ? kTrueType : kFalseType); return Base::WriteBool(b); }
67 bool Int(int i) { PrettyPrefix(kNumberType); return Base::WriteInt(i); }
68 bool Uint(unsigned u) { PrettyPrefix(kNumberType); return Base::WriteUint(u); }
69 bool Int64(int64_t i64) { PrettyPrefix(kNumberType); return Base::WriteInt64(i64); }
70 bool Uint64(uint64_t u64) { PrettyPrefix(kNumberType); return Base::WriteUint64(u64); } [all...] |
/external/boringssl/src/crypto/bytestring/ |
cbb.c | 31 struct cbb_buffer_st *base; local 33 base = OPENSSL_malloc(sizeof(struct cbb_buffer_st)); 34 if (base == NULL) { 38 base->buf = buf; 39 base->len = 0; 40 base->cap = cap; 41 base->can_resize = 1; 42 base->error = 0; 44 cbb->base = base; [all...] |
/device/google/dragon/DragonKeyboard/res/raw/ |
keyboard_layout_dragon_danish.kcm | 28 base: '1' 36 base: '2' 43 base: '3' 50 base: '4' 57 base: '5' 64 base: '6' 71 base: '7' 78 base: '8' 85 base: '9' 92 base: '0 [all...] |
keyboard_layout_dragon_english_uk.kcm | 25 base: '1' 32 base: '2' 40 base: '3' 46 base: '4' 54 base: '5' 60 base: '6' 66 base: '7' 72 base: '8' 78 base: '9' 84 base: '0 [all...] |
keyboard_layout_dragon_english_us_colemak.kcm | 43 base: '1' 50 base: '2' 58 base: '3' 64 base: '4' 70 base: '5' 76 base: '6' 82 base: '7' 88 base: '8' 94 base: '9' 100 base: '0 [all...] |
keyboard_layout_dragon_english_us_dvorak.kcm | 59 base: '1' 66 base: '2' 74 base: '3' 80 base: '4' 86 base: '5' 92 base: '6' 98 base: '7' 104 base: '8' 110 base: '9' 116 base: '0 [all...] |
keyboard_layout_dragon_english_us_intl.kcm | 25 base: '1' 34 base: '2' 43 base: '3' 51 base: '4' 59 base: '5' 66 base: '6' 73 base: '7' 80 base: '8' 87 base: '9' 94 base: '0 [all...] |
keyboard_layout_dragon_french.kcm | 33 base: '&' 41 base: '\u00e9' 48 base: '"' 55 base: '\'' 63 base: '(' 70 base: '-' 77 base: '\u00e8' 84 base: '_' 91 base: '\u00e7' 98 base: '\u00e0 [all...] |
keyboard_layout_dragon_german.kcm | 31 base: '1' 38 base: '2' 47 base: '3' 54 base: '4' 60 base: '5' 66 base: '6' 72 base: '7' 79 base: '8' 86 base: '9' 93 base: '0 [all...] |
keyboard_layout_dragon_norwegian.kcm | 28 base: '1' 36 base: '2' 43 base: '3' 50 base: '4' 57 base: '5' 64 base: '6' 71 base: '7' 78 base: '8' 85 base: '9' 92 base: '0 [all...] |