/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/ |
uploads_test.py | 15 import apitools.base.py as apitools_base namespace
|
/external/clang/lib/ARCMigrate/ |
TransGCAttrs.cpp | 32 typedef RecursiveASTVisitor<GCAttrsCollector> base; typedef in class:__anon6215::GCAttrsCollector 58 return base::TraverseDecl(D);
|
TransZeroOutPropsInDealloc.cpp | 28 typedef RecursiveASTVisitor<ZeroOutInDeallocRemover> base; typedef in class:__anon6223::ZeroOutInDeallocRemover 134 base::TraverseObjCMethodDecl(D);
|
/external/clang/test/Sema/ |
address_spaces.c | 37 __attribute__((address_space(256))) void * * const base = 0; variable 39 return base[0]; // expected-error {{returning '__attribute__((address_space(256))) void *' from a function with result type 'void *' changes address space of pointer}}
|
/external/clang/test/SemaCXX/ |
delete.cpp | 89 struct base {}; struct in namespace:MemberCheck 90 struct derived : base {}; 92 base *p, *p2 = nullptr, *p3{nullptr}, *p4; 126 struct Base { 133 void null_init(Base<double>::S s) {
|
/external/clang/unittests/Tooling/ |
CommentHandlerTest.cpp | 28 typedef TestVisitor<CommentHandlerVisitor> base; typedef in class:clang::CommentHandlerVisitor 31 CommentHandlerVisitor() : base(), PP(nullptr), Verified(false) {} 68 class CommentHandlerAction : public base::TestAction {
|
/external/clang/utils/ABITest/ |
Enumeration.py | 46 def base(line): function 51 return base(line)+index 61 while base(next)<=N: 69 #assert base(lo) <= N < base(hi) 71 if base(mid)<=N: 77 return line, N - base(line) 110 cornerSize = base(W)
|
/external/clang/utils/VtableTest/ |
gen.cc | 34 bool is_ambiguous(int s, int base) { 36 if ((base_present[base][i] & base_present[s][i]) == 1) 42 void add_bases(int s, int base) { 44 base_present[s][i] |= base_present[base][i]; 48 if (!ret_types[base][i]) 51 ret_types[s][i] = ret_types[base][i]; 54 if (base_present[ret_types[base][i]][ret_types[s][i]]) 55 // If the return type of the function from this base dominates 56 ret_types[s][i] = ret_types[base][i]; 57 if (base_present[ret_types[s][i]][ret_types[base][i]] 91 int base = random() % (s-1) + 1; local 188 int base = bases[i]; local [all...] |
/external/compiler-rt/lib/builtins/ |
emutls.c | 41 void *base; local 43 if (posix_memalign(&base, align, size) != 0) 50 base = (void*)(((uintptr_t)(object + EXTRA_ALIGN_PTR_BYTES)) 53 ((void**)base)[-1] = object; 55 return base; 58 static __inline void emutls_memalign_free(void *base) { 60 free(base); 62 /* The mallocated address is in ((void**)base)[-1] */ 63 free(((void**)base)[-1]); 84 void* base = emutls_memalign_alloc(align, size) local [all...] |
/external/curl/src/ |
tool_doswin.c | 489 char *p, *base; local 523 base = basename(fname); 530 for(p = fname; p; p = (p == fname && fname != base ? base : NULL)) { 579 base = basename(fname); 589 if(base && ((stat(base, &st_buf)) == 0) && (S_ISCHR(st_buf.st_mode))) { 591 size_t blen = strlen(base); 595 if(!(flags & SANITIZE_ALLOW_TRUNCATE) || truncate_dryrun(base, blen)) 597 base[blen] = '\0' [all...] |
/external/dbus/dbus/ |
dbus-server-socket.c | 52 DBusServer base; /**< Parent class members. */ member in struct:DBusServerSocket 320 if (!_dbus_server_init_base (&socket_server->base, 330 if (!_dbus_server_add_watch (&socket_server->base, 339 _dbus_server_finalize_base (&socket_server->base); 346 _dbus_server_trace_ref (&socket_server->base, 0, 1, "new_for_socket");
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
xml_interface_parser.h | 14 #include <base/macros.h> 18 namespace base { namespace 22 } // namespace base
|
/external/deqp/framework/platform/android/ |
tcuAndroidInternals.cpp | 152 static deUint32 getNativeBaseMagic (android::android_native_base_t* base) 154 return *pointerToOffset<deUint32>(base, 0); 158 static deUint32 getNativeBaseVersion (android::android_native_base_t* base) 160 return *pointerToOffset<deInt32>(base, 4); 164 static NativeBaseFunctions::incRefFunc getNativeBaseIncRefFunc (android::android_native_base_t* base) 166 return *pointerToOffset<NativeBaseFunctions::incRefFunc>(base, 8 + DE_PTR_SIZE*4); 170 static NativeBaseFunctions::decRefFunc getNativeBaseDecRefFunc (android::android_native_base_t* base) 172 return *pointerToOffset<NativeBaseFunctions::decRefFunc>(base, 8 + DE_PTR_SIZE*5); 192 android::android_native_base_t* const base = getAndroidNativeBase(gb); member in class:tcu::Android::internal::android 204 const deUint32 magic = getNativeBaseMagic(base); [all...] |
/external/doclava/src/com/google/doclava/ |
TodoFile.java | 49 public static void setHDF(Data data, String base, SourcePositionInfo pos, String name, 51 data.setValue(base + ".pos", pos.toString()); 52 data.setValue(base + ".name", name); 53 data.setValue(base + ".descr", descr); 83 String base = classBase + ".errors."; local 88 setHDF(data, base + errors, cl.position(), "<class comment>", MISSING); 98 setHDF(data, base + errors, m.position(), m.prettySignature(), MISSING); 112 setHDF(data, base + errors, m.position(), m.name() + m.prettySignature(), MISSING); 127 setHDF(data, base + errors, f.position(), f.name(), MISSING); 141 setHDF(data, base + errors, f.position(), f.name(), MISSING) [all...] |
/external/drm_gralloc/ |
gralloc_drm_nouveau.c | 52 struct gralloc_drm_drv_t base; member in struct:nouveau_info 62 struct gralloc_drm_bo_t base; member in struct:nouveau_buffer 227 nb->base.fb_handle = nb->bo->handle; 229 nb->base.handle = handle; 231 return &nb->base; 355 info->base.destroy = nouveau_destroy; 356 info->base.alloc = nouveau_alloc; 357 info->base.free = nouveau_free; 358 info->base.map = nouveau_map; 359 info->base.unmap = nouveau_unmap [all...] |
gralloc_drm_pipe.c | 39 struct gralloc_drm_drv_t base; member in struct:pipe_manager 49 struct gralloc_drm_bo_t base; member in struct:pipe_buffer 171 buf->base.fb_handle = tmp.handle; 199 buf->base.handle = handle; 202 return &buf->base; 477 pm->base.destroy = pipe_destroy; 478 pm->base.alloc = pipe_alloc; 479 pm->base.free = pipe_free; 480 pm->base.map = pipe_map; 481 pm->base.unmap = pipe_unmap [all...] |
/external/e2fsprogs/intl/ |
localcharset.c | 120 const char *base = "charset.alias"; local 123 /* Concatenate dir and base into freshly allocated file_name. */ 126 size_t base_len = strlen (base); 134 memcpy (file_name + dir_len + add_slash, base, base_len + 1);
|
/external/elfutils/tests/ |
backtrace-data.c | 63 Dwarf_Addr base __attribute__ ((unused)), 146 GElf_Addr base; local 147 char *long_name = maps_lookup (child, addr, &base); 149 base, false /* add_p_vaddr */);
|
/external/freetype/include/freetype/ |
ftsystem.h | 284 * base :: 332 unsigned char* base; member in struct:FT_StreamRec_
|
/external/freetype/include/freetype/internal/ |
ftgloadr.h | 69 FT_GlyphLoadRec base; member in struct:FT_GlyphLoaderRec_ 108 ( (FT_UInt)(_loader)->base.outline.n_points + \ 114 ( (FT_UInt)(_loader)->base.outline.n_contours + \ 137 /* add the current glyph to the base glyph */
|
/external/freetype/src/sfnt/ |
pngshim.c | 64 unsigned char* base = &data[i]; local 65 unsigned int alpha = base[3]; 69 base[0] = base[1] = base[2] = base[3] = 0; 73 unsigned int red = base[0]; 74 unsigned int green = base[1]; 75 unsigned int blue = base[2]; 85 base[0] = (unsigned char)blue 107 unsigned char* base = &data[i]; local [all...] |
ttkern.c | 198 FT_Byte* base = p; local 209 next = base + length;
|
/external/google-breakpad/src/third_party/libdisasm/ |
ia32_modrm.c | 54 unsigned int base : 3; member in struct:SIB_byte 104 /* set Address Expression fields (scale, index, base, disp) 118 if ( sib.base == SIB_BASE_EBP && ! mod ) { /* if base == 101 (ebp) */ 119 /* IF BASE == EBP, deal with exception */ 128 /* ELSE BASE refers to a General Register */ 129 ia32_handle_register( &ea->base, sib.base + 1 ); 151 ia32_handle_register(&ea->base, REG_WORD_OFFSET + 3); 155 ia32_handle_register(&ea->base, REG_WORD_OFFSET + 3) [all...] |
/external/guava/guava/src/com/google/common/base/ |
CaseFormat.java | 17 package com.google.common.base; 19 import static com.google.common.base.Preconditions.checkNotNull;
|
CharMatcher.java | 17 package com.google.common.base; 19 import static com.google.common.base.Preconditions.checkArgument; 20 import static com.google.common.base.Preconditions.checkNotNull; [all...] |