/external/chromium-trace/catapult/dashboard/dashboard/ |
auto_triage.py | 91 for key in sheriff_keys: 93 anomaly.Anomaly.sheriff == key, 118 params={'update_recovered_bug': True, 'bug_id': bug.key.id()}, 128 bug = ndb.Key('Bug', bug_id).get() 145 bug = ndb.Key('Bug', bug_id).get() 199 anomaly_entity.key.delete() 214 anomaly_entity.key, change.AsDict()) 240 anomaly_entity.key.urlsafe()),
|
auto_triage_test.py | 36 sheriff_key: A Sheriff entity key. 40 The Test entity key of the Test that was added. 57 """Adds a sample Anomaly and returns the key.""" 59 bug = ndb.Key('Bug', bug_id).get() 163 bug = ndb.Key('Bug', bug_id).get() 170 # clear step. Alert key agxzfmNocm9tZXBlcmZyFAsSB0Fub21hbHkYgIDAnYnIqAoM. 198 # magnitude. Alert key agxzfmNocm9tZXBlcmZyFAsSB0Fub21hbHkYgIDAnbimogoM
|
email_summary_test.py | 31 first_paint = ndb.Key( 34 mean_frame_time = ndb.Key(
|
file_bug.py | 92 alert_keys = [ndb.Key(urlsafe=k) for k in urlsafe_keys.split(',')] 114 alert_keys = [ndb.Key(urlsafe=k) for k in urlsafe_keys.split(',')] 180 return ','.join(a.key.urlsafe() for a in alerts)
|
group_report.py | 112 for Keys for Anomaly entities. (Each key corresponds to an alert) 119 keys = [ndb.Key(urlsafe=k) for k in urlsafe_keys] 122 # because they're almost certainly urlsafe key decoding errors. 124 raise request_handler.InvalidInputError('Invalid Anomaly key given.') 131 'No Anomaly found for key %s.' % urlsafe_keys[i]) 151 key_set = {a.key for a in anomalies} 153 if anomaly_entity.key not in key_set: 167 [a for a in alert_list if a.key.kind() == 'Anomaly']) 169 [a for a in alert_list if a.key.kind() == 'StoppageAlert']) 172 if bug_id and ndb.Key('Bug', bug_id).get() [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
CheckerContext.h | 36 #define REGISTER_MAP_WITH_PROGRAMSTATE(Name, Key, Value) \ 38 CLANG_ENTO_PROGRAMSTATE_MAP(Key, Value))
|
/external/clang/lib/Serialization/ |
ASTReaderInternals.h | 89 static hash_value_type ComputeHash(const internal_key_type &Key) { 90 return Key.getHash();
|
/external/compiler-rt/ |
README.android | 18 * For Key Lime Pie: Synced to upstream r187889
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
Binding.java | 124 /** The {@link Key} that is provided by this binding. */ 125 protected abstract Key key(); method in class:Binding 128 return BindingKey.create(bindingType().bindingKeyKind(), key()); 169 protected static Optional<String> findBindingPackage(Key bindingKey) { 223 * Returns true if this is a binding for a key that has a different type parameter list than the
|
/external/glide/library/src/main/java/com/bumptech/glide/ |
DrawableRequestBuilder.java | 10 import com.bumptech.glide.load.Key; 406 public DrawableRequestBuilder<ModelType> signature(Key signature) {
|
GifRequestBuilder.java | 8 import com.bumptech.glide.load.Key; 396 public GifRequestBuilder<ModelType> signature(Key signature) {
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/ |
GifFrameManager.java | 14 import com.bumptech.glide.load.Key; 165 private static class FrameSignature implements Key {
|
/external/guice/core/src/com/google/inject/internal/ |
Scoping.java | 20 import com.google.inject.Key; 233 static <T> InternalFactory<? extends T> scope(Key<T> key, InjectorImpl injector, 243 = scope.scope(key, new ProviderToInternalFactoryAdapter<T>(injector, creator));
|
/external/guice/examples/src/example/xml/ |
XmlBeanModule.java | 3 import com.google.inject.Key; 144 Provider<?> provider = sourced.getProvider(Key.get(parameterTypes[0]));
|
/external/libchrome/base/ |
stl_util.h | 51 // behind the iterator because if both the key and value are deleted, the 82 // do so if the key is a pointer into the value object. 139 // Given an STL container consisting of (key, value) pairs, STLDeleteValues 186 // Test to see if a set, map, hash_set or hash_map contains a particular key. 187 // Returns true if the key is in the collection. 188 template <typename Collection, typename Key> 189 bool ContainsKey(const Collection& collection, const Key& key) { 190 return collection.find(key) != collection.end();
|
/external/llvm/lib/IR/ |
InlineAsm.cpp | 30 InlineAsmKeyType Key(AsmString, Constraints, FTy, hasSideEffects, 33 return pImpl->InlineAsms.getOrCreate(PointerType::getUnqual(FTy), Key);
|
/external/webrtc/webrtc/system_wrappers/include/ |
stl_util.h | 58 // behind the iterator because if both the key and value are deleted, the 89 // do so if the key is a pointer into the value object. 151 // Given an STL container consisting of (key, value) pairs, STLDeleteValues 199 // Test to see if a set, map, hash_set or hash_map contains a particular key. 200 // Returns true if the key is in the collection. 201 template <typename Collection, typename Key> 202 bool ContainsKey(const Collection& collection, const Key& key) { 203 return collection.find(key) != collection.end();
|
/frameworks/base/keystore/java/android/security/keystore/ |
AndroidKeyStoreUnauthenticatedAESCipherSpi.java | 27 import java.security.Key; 126 protected final void initKey(int opmode, Key key) throws InvalidKeyException { 127 if (!(key instanceof AndroidKeyStoreSecretKey)) { 129 "Unsupported key: " + ((key != null) ? key.getClass().getName() : "null")); 131 if (!KeyProperties.KEY_ALGORITHM_AES.equalsIgnoreCase(key.getAlgorithm())) { 133 "Unsupported key algorithm: " + key.getAlgorithm() + ". Only " [all...] |
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/ |
LayoutLibTestCallback.java | 27 import com.android.ide.common.rendering.api.SessionParams.Key; 183 public <T> T getFlag(Key<T> key) { 184 if (key.equals(RenderParamsFlags.FLAG_KEY_APPLICATION_PACKAGE)) {
|
/frameworks/native/include/input/ |
InputTransport.h | 63 struct Key { 77 return sizeof(Key); 79 } key; member in union:android::InputMessage::Body 202 /* Publishes a key event to the input channel.
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
CipherInputStream1Test.java | 27 import java.security.Key; 257 Key key = kg.generateKey(); local 260 c.init(Cipher.ENCRYPT_MODE, key);
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyStoreSpiTest.java | 23 import java.security.Key; 99 @Override public void engineSetKeyEntry(String alias, Key key, char[] password, 251 public void verify(PublicKey key) throws CertificateException, 256 public void verify(PublicKey key, String sigProvider)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_parser.py | 192 (b"Test Using Larger Than Block-Size Key " 210 ("Test Using Larger Than Block-Size Key "
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_parser.py | 192 (b"Test Using Larger Than Block-Size Key " 210 ("Test Using Larger Than Block-Size Key "
|
/toolchain/binutils/binutils-2.25/gold/ |
merge.h | 384 // A key in the hash table. This is an offset in the section 431 // Given a hash table key, which is just an offset into the section 535 // The key in the Stringpool. 536 Stringpool::Key stringpool_key; 538 Merged_string(section_offset_type offseta, Stringpool::Key stringpool_keya)
|