HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 751 - 775 of 1097) sorted by null

<<31323334353637383940>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.launcher.jar 
org.eclipse.equinox.launcher_1.1.0.v20100507.jar 
org.apache.lucene.analysis_1.9.1.v20100518-1140.jar 
org.eclipse.ui.views_3.5.0.I20100527-0800.jar 
  /packages/apps/Browser/src/com/android/browser/
Controller.java 2 * Copyright (C) 2010 The Android Open Source Project
147 // "source" parameter for Google search through search key
149 // "source" parameter for Google search through simplily type
1531 final MenuItem source = menu.findItem(isInLoad() ? R.id.stop_menu_id local
1652 final Tab source = getTabControl().getCurrentTab(); local
    [all...]
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
DatagramChannelTest.java 1497 InetSocketAddress source = (InetSocketAddress) this.channel1.receive(buf); local
    [all...]
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 58 CREATE TABLE peopleLookup (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
68 CREATE TABLE peopleLookupWithPhoneticName (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
113 CREATE INDEX peopleLookupIndex ON peopleLookup (token,source);
114 CREATE INDEX peopleLookupWithPhoneticNameIndex ON peopleLookupWithPhoneticName (token,source);
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;
143 CREATE TRIGGER peopleLookupWithPhoneticName_update UPDATE OF name, phonetic_name ON people BEGIN DELETE FROM peopleLookupWithPhoneticName WHERE source = new._id;SELECT _TOKENIZE('peopleLookupWithPhoneticName', new._id, GET_NORMALIZED_STRING(CASE WHEN (new.phonetic_name IS NOT NULL AND new.phonetic_name != '') THEN new.phonetic_name ELSE (CASE WHEN (new.name is NOT NULL AND new.name != '') THEN new.name ELSE '' END) END), ' ', 1);END;
145 CREATE TRIGGER peopleLookup_update UPDATE OF name ON people BEGIN DELETE FROM peopleLookup WHERE source = new._id;SELECT _TOKENIZE('peopleLookup', new._id, new.name, ' ', 1);END;
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 56 CREATE TABLE peopleLookup (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
77 CREATE TABLE peopleLookupWithPhoneticName (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
137 CREATE INDEX peopleLookupIndex ON peopleLookup (token,source);
138 CREATE INDEX peopleLookupWithPhoneticNameIndex ON peopleLookupWithPhoneticName (token,source);
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;
167 CREATE TRIGGER peopleLookupWithPhoneticName_update UPDATE OF name, phonetic_name ON people BEGIN DELETE FROM peopleLookupWithPhoneticName WHERE source = new._id;SELECT _TOKENIZE('peopleLookupWithPhoneticName', new._id, GET_NORMALIZED_STRING(CASE WHEN (new.phonetic_name IS NOT NULL AND new.phonetic_name != '') THEN new.phonetic_name ELSE (CASE WHEN (new.name is NOT NULL AND new.name != '') THEN new.name ELSE '' END) END), ' ', 1);END;
169 CREATE TRIGGER peopleLookup_update UPDATE OF name ON people BEGIN DELETE FROM peopleLookup WHERE source = new._id;SELECT _TOKENIZE('peopleLookup', new._id, new.name, ' ', 1);END;
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 39 CREATE TABLE peopleLookup (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
47 CREATE TABLE peopleLookupWithPhoneticName (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
81 CREATE INDEX peopleLookupIndex ON peopleLookup (token,source);
82 CREATE INDEX peopleLookupWithPhoneticNameIndex ON peopleLookupWithPhoneticName (token,source);
90 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;
111 CREATE TRIGGER peopleLookupWithPhoneticName_update UPDATE OF name, phonetic_name ON people BEGIN DELETE FROM peopleLookupWithPhoneticName WHERE source = new._id;SELECT _TOKENIZE('peopleLookupWithPhoneticName', new._id, GET_NORMALIZED_STRING(CASE WHEN (new.phonetic_name IS NOT NULL AND new.phonetic_name != '') THEN new.phonetic_name ELSE (CASE WHEN (new.name is NOT NULL AND new.name != '') THEN new.name ELSE '' END) END), ' ', 1);END;
113 CREATE TRIGGER peopleLookup_update UPDATE OF name ON people BEGIN DELETE FROM peopleLookup WHERE source = new._id;SELECT _TOKENIZE('peopleLookup', new._id, new.name, ' ', 1);END;
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/jFormatString/2.0.1/
jFormatString-2.0.1.jar 
  /prebuilts/tools/common/m2/internal/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 2 * Copyright (C) 2007 The Android Open Source Project
1127 RegisterSpec source = RegisterSpec.make(0, sourceTypes.getType(0)); local
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
CharBufferTest.java 994 CharBuffer source = CharBuffer.wrap("String"); local
996 assertEquals(6, source.read(target));
999 assertEquals(-1, source.read(target));
1002 assertEquals(-1, source.read(null));
1011 CharBuffer source = CharBuffer.wrap("String"); local
1014 source.read(target);
1021 assertEquals(0, source.read(target));
1025 CharBuffer source = CharBuffer.wrap("String"); local
1027 assertEquals(1, source.read(target));
1029 assertEquals(1, source.position())
1033 CharBuffer source = CharBuffer.wrap("abuffer"); local
    [all...]
  /external/bison/examples/calc++/
calc++-scanner.cc 266 /* Whether this is an "interactive" input source; if so, and
293 * shouldn't try reading from the input source any more. We might
993 /* We're scanning a new file or input source. It's
995 * just pointed yyin at a new source and called
1000 * back-up) that will match for the new input source.
1135 register char *source = (yytext_ptr); local
1168 *(dest++) = *(source++);
    [all...]
  /external/bison/src/
scan-skel.c 285 /* Whether this is an "interactive" input source; if so, and
312 * shouldn't try reading from the input source any more. We might
1201 /* We're scanning a new file or input source. It's
1203 * just pointed skel_in at a new source and called
1208 * back-up) that will match for the new input source.
1343 register char *source = (yytext_ptr); local
    [all...]
  /external/dnsmasq/src/
option.c 353 { "non-local-source-routing", 20, 1 },
1441 char *portno, *source; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/59/1/.cp/
jdtCompilerAdapter.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformanceResultsPreferencePage.java 1073 final Object source = event.getSource(); local
    [all...]
  /external/elfutils/libcpu/
i386_lex.c 243 /* Whether this is an "interactive" input source; if so, and
270 * shouldn't try reading from the input source any more. We might
989 /* We're scanning a new file or input source. It's
991 * just pointed i386_in at a new source and called
996 * back-up) that will match for the new input source.
1118 register char *source = (yytext_ptr); local
1151 *(dest++) = *(source++);
1320 register char *source = local
    [all...]
  /external/elfutils/src/
ldlex.c 244 /* Whether this is an "interactive" input source; if so, and
271 * shouldn't try reading from the input source any more. We might
1910 register char *source = (yytext_ptr); local
2112 register char *source = local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
IteratorsTest.java 829 Iterator<Integer> source = Iterators.singletonIterator(1); local
831 Iterators.partition(source, 0);
838 Iterator<Integer> source = Iterators.emptyIterator(); local
839 Iterator<List<Integer>> partitions = Iterators.partition(source, 1);
844 Iterator<Integer> source = Iterators.singletonIterator(1); local
845 Iterator<List<Integer>> partitions = Iterators.partition(source, 1);
853 Iterator<Integer> source = Iterators.singletonIterator(1); local
854 Iterator<List<Integer>> partitions = Iterators.partition(source, 2);
871 Iterator<Integer> source = Iterators.forArray(1, 2, 3, 4, 5, 6, 7); local
872 return Iterators.partition(source, 3)
895 Iterator<Integer> source = asList(1, 2, 3).iterator(); local
902 Iterator<Integer> source = Iterators.singletonIterator(1); local
911 Iterator<Integer> source = Iterators.emptyIterator(); local
917 Iterator<Integer> source = Iterators.singletonIterator(1); local
926 Iterator<Integer> source = Iterators.singletonIterator(1); local
944 Iterator<Integer> source = Iterators.forArray(1, 2, 3, 4, 5, 6, 7); local
966 Iterator<Integer> source = asList(1, 2, 3).iterator(); local
    [all...]
  /external/icu4c/common/
ucnv2022.cpp 1642 const UChar* source = args->source; local
2331 const UChar *source = args->source; local
2894 const UChar* source = args->source; local
    [all...]
ucnvmbcs.c 1888 const uint8_t *source, *sourceLimit; local
2040 const uint8_t *source, *sourceLimit, *lastSource; local
2320 const uint8_t *source, *sourceLimit; local
2738 const uint8_t *source, *sourceLimit; local
2822 const uint8_t *source, *sourceLimit, *lastSource; local
3261 const UChar *source, *sourceLimit; local
3493 const UChar *source, *sourceLimit; local
3669 const UChar *source, *sourceLimit, *lastSource; local
3931 const UChar *source, *sourceLimit; local
4870 const uint8_t *source, *sourceLimit; local
5176 const uint8_t *source, *sourceLimit; local
    [all...]

Completed in 1900 milliseconds

<<31323334353637383940>>