/external/chromium_org/chrome/common/extensions/docs/server2/ |
strings_data_source.py | 25 def get(self, key): member in class:StringsDataSource 26 string = self._GetStringsData().Get().get(key)
|
template_data_source.py | 23 def get(self, path): member in class:TemplateDataSource 26 (self._partial_dir, path)).Get()
|
/external/chromium_org/chrome/test/functional/ispy/server/ |
image_handler.py | 21 def get(self): member in class:ImageHandler 22 """Handles get requests to the ImageHandler. 24 GET Parameters: 27 file_path = self.request.get('file_path')
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/ |
DateDialogNormalizer.java | 30 picker.updateDate(maxCal.get(Calendar.YEAR), 31 maxCal.get(Calendar.MONTH), 32 maxCal.get(Calendar.DAY_OF_MONTH)); 34 picker.updateDate(minCal.get(Calendar.YEAR), 35 minCal.get(Calendar.MONTH), 36 minCal.get(Calendar.DAY_OF_MONTH)); 50 result.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), 72 calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH) [all...] |
/external/chromium_org/dbus/ |
scoped_dbus_error.h | 23 DBusError* get() { return &error_; } function in class:dbus::ScopedDBusError
|
/external/chromium_org/gpu/command_buffer/service/ |
cmd_parser.cc | 48 CommandBufferOffset get = get_; local 49 if (get == put_) 52 CommandHeader header = buffer_[get].value_header; 58 if (static_cast<int>(header.size) + get > entry_count_) { 59 DVLOG(1) << "Error: get offset out of bounds"; 67 header.command, header.size - 1, buffer_ + get); 71 // get these errors. 76 // If get was not set somewhere else advance it. 77 if (get == get_ && result != error::kDeferCommandUntilLater) 78 get_ = (get + header.size) % entry_count_ [all...] |
/external/chromium_org/ppapi/proxy/ |
locking_resource_releaser.h | 27 PpapiGlobals::Get()->GetResourceTracker()->ReleaseResource(resource_); 30 PP_Resource get() { return resource_; } function in class:ppapi::proxy::LockingResourceReleaser
|
/external/chromium_org/ppapi/shared_impl/ |
scoped_pp_resource.h | 28 // Helper to get the PP_Resource out of the given object and take a reference 41 PP_Resource get() const { return id_; } function in class:ppapi::ScopedPPResource
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
VerticalPositionCache.h | 45 int get(RenderObject* renderer, FontBaseline baselineType) const function in class:WebCore::VerticalPositionCache
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-cache-private.hh | 46 inline bool get (unsigned int key, unsigned int *value) function in struct:hb_cache_t
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/ |
transfer.cpp | 67 /// \a T. The return value of get() should be implicitly 74 get(cl_command_queue q, void *obj, cl_map_flags flags, function in struct:__anon12985::__map 82 get(cl_command_queue q, const void *obj, cl_map_flags flags, function in struct:__anon12985::__map 90 get(cl_command_queue q, memory_obj *obj, cl_map_flags flags, function in struct:__anon12985::__map 107 auto dst = __map<T>::get(q, dst_obj, CL_MAP_WRITE, 109 auto src = __map<S>::get(q, src_obj, CL_MAP_READ, 159 return e.get(); 184 return e.get(); 215 return e.get(); 246 return e.get(); [all...] |
/external/chromium_org/third_party/skia/include/utils/ |
SkLua.h | 35 lua_State* get() const { return fL; } function in class:SkLua
|
/external/chromium_org/ui/gfx/ |
pango_util.h | 45 PangoFontDescription* get() { return description_; } function in class:gfx::ScopedPangoFontDescription
|
/external/chromium_org/v8/test/webkit/ |
array-proto-func-length-getter-except.js | 34 get: (function() { throw true; })
|
/external/clang/lib/Basic/ |
FileSystemStatCache.cpp | 43 /// FileSystemStatCache::get - Get the 'stat' information for the specified 52 bool FileSystemStatCache::get(const char *Path, FileData &Data, bool isFile, function in class:FileSystemStatCache 77 // open succeeds, use fstat to get the stat info. 84 // Otherwise, the open succeeded. Do an fstat to get the information
|
/external/clang/test/Analysis/ |
cxx-for-range.cpp | 31 MagicVector get(bool fail = false) { function 38 for (int y : get()) { 88 for (int y : get(true)) { // error inside get() 671 // CHECK-NEXT: <string>Calling 'get'</string> 673 // CHECK-NEXT: <string>Calling 'get'</string> [all...] |
/external/clang/test/PCH/ |
chain-pending-instantiations.cpp | 8 Derived* get() { return 0; } function in struct:A 22 (void)get();
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/ |
dlclose-test.cc | 52 fun_t *get = (fun_t*)dlsym(lib, "get_address_of_static_var"); local 53 if (!get) { 57 int *addr = get();
|
use-after-scope-dtor-order.cc | 13 int *get() { return val_; } function in struct:IntHolder
|
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
ConstantPool.java | 25 * Get the "size" of the constant pool. This corresponds to the 35 * Get the {@code n}th entry in the constant pool, which must 43 public Constant get(int n); method in interface:ConstantPool 46 * Get the {@code n}th entry in the constant pool, which must 58 * Get the {@code n}th entry in the constant pool, or
|
/external/easymock/src/org/easymock/internal/ |
ArgumentToString.java | 44 appendArgument(Array.get(value, i), buffer);
|
/external/guava/guava/src/com/google/common/collect/ |
ForwardingListMultimap.java | 43 @Override public List<V> get(@Nullable K key) { method in class:ForwardingListMultimap 44 return delegate().get(key);
|
ForwardingSetMultimap.java | 45 @Override public Set<V> get(@Nullable K key) { method in class:ForwardingSetMultimap 46 return delegate().get(key);
|
ForwardingSortedSetMultimap.java | 44 @Override public SortedSet<V> get(@Nullable K key) { method in class:ForwardingSortedSetMultimap 45 return delegate().get(key);
|
ListMultimap.java | 31 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods 48 List<V> get(@Nullable K key); method in interface:ListMultimap
|