HomeSort by relevance Sort by last modified time
    Searched refs:extensions (Results 151 - 175 of 234) sorted by null

1 2 3 4 5 67 8 910

  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 31 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name)); table
107 CREATE INDEX extensionsIndex1 ON extensions (person, name);
122 CREATE TRIGGER contact_cleanup DELETE ON people BEGIN DELETE FROM peopleLookup WHERE source = old._id;DELETE FROM peopleLookupWithPhoneticName WHERE source = old._id;DELETE FROM phones WHERE person = old._id;DELETE FROM contact_methods WHERE person = old._id;DELETE FROM organizations WHERE person = old._id;DELETE FROM groupmembership WHERE person = old._id;DELETE FROM extensions WHERE person = old._id;END;
128 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
129 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
130 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 18 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name)); table
131 CREATE INDEX extensionsIndex1 ON extensions (person, name);
146 CREATE TRIGGER contact_cleanup DELETE ON people BEGIN DELETE FROM peopleLookup WHERE source = old._id;DELETE FROM peopleLookupWithPhoneticName WHERE source = old._id;DELETE FROM phones WHERE person = old._id;DELETE FROM contact_methods WHERE person = old._id;DELETE FROM organizations WHERE person = old._id;DELETE FROM groupmembership WHERE person = old._id;DELETE FROM extensions WHERE person = old._id;END;
152 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
153 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
154 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CubeMapActivity.java 120 // because different contexts may support different extensions.
202 * we are only checking for a few extensions each time a context is created.
208 String extensions = " " + gl.glGetString(GL10.GL_EXTENSIONS) + " "; local
209 // The extensions string is padded with spaces between extensions, but not
211 // beginning and end of the extensions string and the extension string.
215 return extensions.indexOf(" " + extension + " ") >= 0;
  /external/openssl/crypto/x509v3/
v3_conf.c 320 /* This is the main function: add a bunch of extensions based on a config file
344 /* Convenience functions to add extensions to a certificate, CRL and request */
351 sk = &cert->cert_info->extensions;
362 sk = &crl->crl->extensions;
366 /* Add extensions to certificate request */
517 /* Add extensions to certificate request */
  /external/v8/test/cctest/
test-strings.cc 37 const char* extensions[] = { "v8/print" }; local
38 v8::ExtensionConfiguration config(1, extensions);
  /external/protobuf/python/google/protobuf/internal/
descriptor_test.py 87 extensions=[])
  /libcore/luni/src/test/java/tests/java/sql/
DeleteFunctionalityTest.java 34 import junit.extensions.TestSetup;
InsertFunctionalityTest.java 34 import junit.extensions.TestSetup;
UpdateFunctionalityTest.java 34 import junit.extensions.TestSetup;
UpdateFunctionalityTest2.java 35 import junit.extensions.TestSetup;
  /external/webkit/WebKit/mac/Plugins/
WebNetscapePluginPackage.mm 156 NSArray *extensions;
170 extensions = [extensionsList componentsSeparatedByString:@","];
171 [MIMEToExtensionsDictionary setObject:extensions forKey:MIME];
173 // DRM and WMP claim MIMEs without extensions. Use a @"" extension in this case.
  /external/protobuf/editors/
proto.vim 60 syn keyword pbExtend extend extensions to max
  /external/v8/test/mjsunit/
debug-script.js 57 // If snapshot is used, all extensions are cached in the snapshot.
  /external/webkit/WebCore/bindings/v8/
V8Proxy.h 343 static const V8Extensions& extensions() { return m_extensions; } function in class:WebCore::V8Proxy
404 // All of the extensions registered with the context.
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 429 } else if (LookingAt("extensions")) {
758 DO(Consume("extensions"));
789 bool Parser::ParseExtend(RepeatedPtrField<FieldDescriptorProto>* extensions,
795 FieldDescriptorProto* first_field = extensions->Add();
817 field = extensions->Add();
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor_unittest.cc 174 // message FooMessage { extensions 1; }
181 // message BarMessage { extensions 1; }
1508 vector<const FieldDescriptor*> extensions; local
3794 vector<const FieldDescriptor*> extensions; local
    [all...]
  /build/core/
Makefile 1060 $(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_DEVICE_DIR)\/..\/common macro
1062 $(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_RELEASETOOLS_EXTENSIONS) macro
    [all...]
  /external/openssl/crypto/x509/
x509.h 260 STACK_OF(X509_EXTENSION) *extensions; /* [ 3 ] optional in v3 */ member in struct:x509_cinf_st
437 STACK_OF(X509_EXTENSION) /* optional */ *extensions; member in struct:x509_revoked_st
456 STACK_OF(X509_EXTENSION) /* [0] */ *extensions; member in struct:X509_crl_info_st
468 /* Copies of various extensions */
    [all...]
  /external/openssl/include/openssl/
x509.h 260 STACK_OF(X509_EXTENSION) *extensions; /* [ 3 ] optional in v3 */ member in struct:x509_cinf_st
437 STACK_OF(X509_EXTENSION) /* optional */ *extensions; member in struct:x509_revoked_st
456 STACK_OF(X509_EXTENSION) /* [0] */ *extensions; member in struct:X509_crl_info_st
468 /* Copies of various extensions */
    [all...]
  /external/quake/quake/src/WinQuake/
gl_rmain.cpp 1254 const char* extensions = (const char*) glGetString(GL_EXTENSIONS);
1256 strstr(extensions, "GL_OES_matrix_get") != NULL;
1258 strstr(extensions, "GL_OES_query_matrix") != NULL;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java 49 import gov.nist.javax.sip.header.extensions.SessionExpires;
308 // defined code but extensions may add others (in theory up to 999,
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Lexer.java 30 import gov.nist.javax.sip.header.extensions.*;
  /external/openssl/crypto/asn1/
t_x509.c 224 X509V3_extensions_print(bp, "X509v3 extensions",
225 ci->extensions, cflag, 8);
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11yuv.c 32 #include <X11/extensions/XShm.h>
34 #include "../Xext/extensions/Xvlib.h"
  /frameworks/base/opengl/libs/EGL/
egl.cpp 169 char const * extensions; member in struct:android::egl_display_t::strings_t
705 dp->disp[i].queryString.extensions =
    [all...]

Completed in 993 milliseconds

1 2 3 4 5 67 8 910