/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/invalidation/ |
UniqueIdInvalidationClientNameGenerator.java | 21 // Pref key to use for UUID-based generator. 40 UniqueIdInvalidationClientNameGenerator(UniqueIdentificationGenerator generator) { 41 mGenerator = generator;
|
/external/chromium_org/mojo/public/bindings/generators/ |
template_expander.py | 35 def RealDecorator(generator): 37 parameters = generator(*args, **kwargs) 39 GeneratorInternal.func_name = generator.func_name
|
/external/chromium_org/tools/gyp/test/generator-output/ |
gyptest-subdir2-deep.py | 9 deep when the --generator-output= option is used to put the build 15 # Android doesn't support --generator-output. 24 '--generator-output=' + test.workpath('gypfiles'),
|
gyptest-symlink.py | 8 Verifies building a target when the --generator-output= option is used to put 16 # Android doesn't support --generator-output. 32 '--generator-output=' + test.workpath('symlink'),
|
gyptest-copies.py | 8 Verifies file copies with --generator-output using an explicit build 14 # Android doesn't support --generator-output. 20 '--generator-output=' + test.workpath('gypfiles'),
|
gyptest-relocate.py | 8 Verifies that a project hierarchy created with the --generator-output= 14 # Android doesn't support --generator-output. 21 '--generator-output=' + test.workpath('gypfiles'),
|
gyptest-rules.py | 8 Verifies --generator-output= behavior when using rules. 13 # Android doesn't support --generator-output. 19 '--generator-output=' + test.workpath('gypfiles'),
|
gyptest-top-all.py | 8 Verifies building a project hierarchy created when the --generator-output= 15 # Android doesn't support --generator-output. 22 '--generator-output=' + test.workpath('gypfiles'),
|
/external/chromium_org/ui/gfx/ |
sequential_id_generator.h | 20 // Creates a new generator with the specified lower bound for the IDs. 26 // during creation of the generator. 29 // Checks to see if the generator currently has a unique ID generated for
|
/libcore/luni/src/test/java/libcore/java/security/ |
OldKeyPairGeneratorTestDH.java | 29 KeyPairGenerator generator = KeyPairGenerator.getInstance("DH"); local 31 generator.initialize(1024); 33 KeyPair keyPair = generator.generateKeyPair();
|
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/identity/ |
UuidBasedUniqueIdentificationGeneratorTest.java | 31 TestGenerator generator = new TestGenerator(mContext, preferenceKey, expectedUniqueId); local 34 Assert.assertEquals(expectedUniqueId, generator.getUniqueId(null)); 38 Assert.assertEquals(expectedUniqueId, generator.getUniqueId(null)); 44 generator = new TestGenerator(mContext, preferenceKey, null); 45 Assert.assertEquals(expectedUniqueId, generator.getUniqueId(null));
|
/external/chromium_org/third_party/skia/include/core/ |
SkImageGenerator.h | 21 * the generator. If it succeeds, it will modify destination 26 * SkDELETE() on the generator. Therefore, generator should be 38 SK_API bool SkInstallDiscardablePixelRef(SkImageGenerator* generator, 51 * will call the image generator's destructor.
|
/external/skia/include/core/ |
SkImageGenerator.h | 21 * the generator. If it succeeds, it will modify destination 26 * SkDELETE() on the generator. Therefore, generator should be 38 SK_API bool SkInstallDiscardablePixelRef(SkImageGenerator* generator, 51 * will call the image generator's destructor.
|
/external/chromium_org/ash/accelerators/ |
accelerator_filter_unittest.cc | 33 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow()); 36 generator.PressKey(ui::VKEY_PRINT, 0); 38 generator.ReleaseKey(ui::VKEY_PRINT, 0); 56 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow()); 57 generator.PressKey(ui::VKEY_PRINT, 0); 59 generator.ReleaseKey(ui::VKEY_PRINT, 0); 71 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow()); 72 generator.PressKey(ui::VKEY_PRINT, 0); 74 generator.ReleaseKey(ui::VKEY_PRINT, 0); 79 generator.PressKey(ui::VKEY_PRINT, ui::EF_CAPS_LOCK_DOWN) [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/dh/ |
generate | 29 a should be a generator for q, which means it needs to be 46 If you want 2 to be a generator (mod P), then you need it 50 In the case at hand, this means 2 is a generator iff P = 11 (mod 24). 53 3 is a generator iff P = 5 (mod 12). 55 5 is a generator iff P = 3 or 7 (mod 10). 57 2 is perfectly usable as a base even if it's a non-generator, since 60 a generator anyway.
|
/external/openssl/crypto/dh/ |
generate | 29 a should be a generator for q, which means it needs to be 46 If you want 2 to be a generator (mod P), then you need it 50 In the case at hand, this means 2 is a generator iff P = 11 (mod 24). 53 3 is a generator iff P = 5 (mod 12). 55 5 is a generator iff P = 3 or 7 (mod 10). 57 2 is perfectly usable as a base even if it's a non-generator, since 60 a generator anyway.
|
/external/chromium_org/ash/wm/ |
toplevel_window_event_handler_unittest.cc | 82 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow(), window); 83 generator.DragMouseBy(dx, dy); 87 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow(), window); 88 generator.PressMoveAndReleaseTouchBy(dx, dy); 132 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow()); 133 generator.MoveMouseToCenterOf(w1.get()); 134 generator.DragMouseBy(100, 100); 141 generator.DragMouseBy(-100, -100); 148 generator.DragMouseBy(-60, -60); 354 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow() [all...] |
/external/chromium_org/ppapi/generators/ |
idl_generator.py | 18 class Generator(object): 21 This class provides a mechanism for adding new generator objects to the IDL 24 defines it to register the generator. After the AST is generated, call the 25 static Run member which will check every registered generator to see which 26 ones have been enabled through command-line options. To enable a generator 29 --<sname>_opt=<XXX,YYY=y> : To enable with generator specific options. 133 self.Error("Undefined release generator.") 138 self.Error("Undefined range generator.") 154 class GeneratorByFile(Generator): 155 """A simplified generator that generates one output file per IDL source file [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
ImageDecodingStore.h | 160 CacheEntry(const ImageFrameGenerator* generator, int useCount, bool isDiscardable) 161 : m_generator(generator) 174 const ImageFrameGenerator* generator() const { return m_generator; } function in class:WebCore::ImageDecodingStore::CacheEntry 197 static PassOwnPtr<ImageCacheEntry> createAndUse(const ImageFrameGenerator* generator, PassOwnPtr<ScaledImageFragment> image) 199 return adoptPtr(new ImageCacheEntry(generator, 1, image)); 202 ImageCacheEntry(const ImageFrameGenerator* generator, int count, PassOwnPtr<ScaledImageFragment> image) 203 : CacheEntry(generator, count, DiscardablePixelRef::isDiscardable(image->bitmap().pixelRef())) 213 static ImageCacheKey makeCacheKey(const ImageFrameGenerator* generator, const SkISize& size, size_t index, size_t generation) 215 return std::make_pair(std::make_pair(generator, size), std::make_pair(index, generation)); 227 static PassOwnPtr<DecoderCacheEntry> create(const ImageFrameGenerator* generator, PassOwnPtr<ImageDecoder> decoder, bool isDiscardable [all...] |
ImageDecodingStore.cpp | 90 bool ImageDecodingStore::lockCache(const ImageFrameGenerator* generator, const SkISize& scaledSize, size_t index, const ScaledImageFragment** cachedImage) 98 ImageCacheMap::iterator iter = m_imageCacheMap.find(ImageCacheEntry::makeCacheKey(generator, scaledSize, index, ScaledImageFragment::CompleteImage)); 105 void ImageDecodingStore::unlockCache(const ImageFrameGenerator* generator, const ScaledImageFragment* cachedImage) 111 ImageCacheMap::iterator iter = m_imageCacheMap.find(ImageCacheEntry::makeCacheKey(generator, cachedImage->scaledSize(), cachedImage->index(), cachedImage->generation())); 132 const ScaledImageFragment* ImageDecodingStore::insertAndLockCache(const ImageFrameGenerator* generator, PassOwnPtr<ScaledImageFragment> image) 138 OwnPtr<ImageCacheEntry> newCacheEntry = ImageCacheEntry::createAndUse(generator, image); 164 bool ImageDecodingStore::lockDecoder(const ImageFrameGenerator* generator, const SkISize& scaledSize, ImageDecoder** decoder) 169 DecoderCacheMap::iterator iter = m_decoderCacheMap.find(DecoderCacheEntry::makeCacheKey(generator, scaledSize)); 182 void ImageDecodingStore::unlockDecoder(const ImageFrameGenerator* generator, const ImageDecoder* decoder) 185 DecoderCacheMap::iterator iter = m_decoderCacheMap.find(DecoderCacheEntry::makeCacheKey(generator, decoder)) [all...] |
/external/chromium_org/v8/test/mjsunit/harmony/ |
generators-objects.js | 51 // Test the properties and prototype of a generator object. 58 assertEquals("Generator", %ClassOf(iter)); 59 assertEquals("[object Generator]", String(iter)); 67 assertEquals("Generator", %ClassOf(iter)); 68 assertEquals("[object Generator]", String(iter)); 75 // Test the methods of generator objects.
|
/external/chromium_org/ash/shelf/ |
shelf_layout_manager_unittest.cc | 412 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow()); 421 generator.GestureScrollSequenceWithCallback(start, end, 433 generator.GestureScrollSequenceWithCallback(end, start, 447 generator.GestureScrollSequenceWithCallback(start, end, 459 generator.GestureScrollSequenceWithCallback(end, start, 471 generator.GestureScrollSequence(start, end, 481 generator.GestureScrollSequenceWithCallback(start, end, 503 generator.GestureScrollSequenceWithCallback(extended_start, end, 517 generator.GestureScrollSequenceWithCallback(start, end, 535 generator.GestureScrollSequence(outside_start [all...] |
/external/chromium_org/ash/drag_drop/ |
drag_drop_controller_unittest.cc | 366 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow(), 368 generator.PressLeftButton(); 383 generator.MoveMouseBy(0, 1); 389 generator.ReleaseLeftButton(); 412 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow(), 414 generator.PressLeftButton(); 424 generator.MoveMouseBy(0, 1); 429 generator.ReleaseLeftButton(); 460 aura::test::EventGenerator generator(Shell::GetPrimaryRootWindow()); 461 generator.MoveMouseRelativeTo(widget->GetNativeView() [all...] |
/external/chromium_org/third_party/skia/src/lazy/ |
SkCachingPixelRef.h | 31 * the generator. If it succeeds, it will modify destination 36 * SkDELETE() on the generator. Therefore, generator should be
|
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
gypsh.py | 7 gypsh is a GYP shell. It's not really a generator per se. All it does is 9 variables passed to the generator. Like gypd, it's intended as a debugging 21 # All of this stuff about generator variables was lovingly ripped from gypd.py.
|