HomeSort by relevance Sort by last modified time
    Searched full:clauses (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/
DbQueryUtils.java 44 /** Concatenates any number of clauses using "AND". */
47 public static String concatenateClausesWithAnd(String... clauses) {
48 return concatenateClausesWithOperation("AND", clauses);
51 /** Concatenates any number of clauses using "OR". */
52 public static String concatenateClausesWithOr(String... clauses) {
53 return concatenateClausesWithOperation("OR", clauses);
56 /** Concatenates any number of clauses using the specified operation. */
57 public static String concatenateClausesWithOperation(String operation, String... clauses) {
59 if (clauses.length == 1) {
60 return clauses[0]
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnSentence.java 29 /** The array of clauses */
36 * @param clauses The array of clauses of this sentence
38 public WnnSentence(String input, ArrayList<WnnClause> clauses) {
39 if (clauses == null || clauses.isEmpty()) {
47 this.elements = clauses;
48 WnnClause headClause = (WnnClause)clauses.get(0);
50 if (clauses.size() == 1) {
59 Iterator<WnnClause> ci = clauses.iterator()
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailFilterFactory.java 89 String[] clauses = new String[filters.length];
91 clauses[i] = filters[i].getWhereClause();
93 return clauses;
97 List<String> clauses = new ArrayList<String>();
99 clauses.add(getEqualityClause(Voicemails.IS_READ, fieldMatch.isRead() ? "1" : "0"));
102 clauses.add(getEqualityClause(Voicemails.NUMBER, fieldMatch.getNumber()));
105 clauses.add(getEqualityClause(Voicemails.SOURCE_PACKAGE,
109 clauses.add(getEqualityClause(Voicemails.SOURCE_DATA, fieldMatch.getSourceData()));
112 clauses.add(getEqualityClause(Voicemails.DURATION,
116 clauses.add(getEqualityClause(Voicemails.DATE
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
SelectionBuilder.java 25 * Builds a selection clause by concatenating several clauses with AND.
53 * Returns a combined selection clause with AND of all clauses added using
55 * only null/empty clauses have been added till now.
DbQueryUtils.java 52 /** Concatenates any number of clauses using "AND". */
53 public static String concatenateClauses(String... clauses) {
55 for (String clause : clauses) {
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
gimple.def 231 /* GIMPLE_OMP_FOR <BODY, CLAUSES, INDEX, INITIAL, FINAL, COND, INCR, PRE_BODY>
241 CLAUSES is the list of clauses.
276 /* GIMPLE_OMP_PARALLEL <BODY, CLAUSES, CHILD_FN, DATA_ARG> represents
278 #pragma omp parallel [CLAUSES]
283 CLAUSES is a TREE_LIST node with all the clauses.
291 sharing clauses. */
294 /* GIMPLE_OMP_TASK <BODY, CLAUSES, CHILD_FN, DATA_ARG, COPY_FN,
297 #pragma omp task [CLAUSES]
    [all...]
gimple.h 607 tree clauses; local
630 Clauses. */
631 tree clauses; local
673 tree clauses; local
706 tree clauses; local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
gimple.def 231 /* GIMPLE_OMP_FOR <BODY, CLAUSES, INDEX, INITIAL, FINAL, COND, INCR, PRE_BODY>
241 CLAUSES is the list of clauses.
276 /* GIMPLE_OMP_PARALLEL <BODY, CLAUSES, CHILD_FN, DATA_ARG> represents
278 #pragma omp parallel [CLAUSES]
283 CLAUSES is a TREE_LIST node with all the clauses.
291 sharing clauses. */
294 /* GIMPLE_OMP_TASK <BODY, CLAUSES, CHILD_FN, DATA_ARG, COPY_FN,
297 #pragma omp task [CLAUSES]
    [all...]
gimple.h 607 tree clauses; local
630 Clauses. */
631 tree clauses; local
673 tree clauses; local
706 tree clauses; local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
gimple.def 231 /* GIMPLE_OMP_FOR <BODY, CLAUSES, INDEX, INITIAL, FINAL, COND, INCR, PRE_BODY>
241 CLAUSES is the list of clauses.
276 /* GIMPLE_OMP_PARALLEL <BODY, CLAUSES, CHILD_FN, DATA_ARG> represents
278 #pragma omp parallel [CLAUSES]
283 CLAUSES is a TREE_LIST node with all the clauses.
291 sharing clauses. */
294 /* GIMPLE_OMP_TASK <BODY, CLAUSES, CHILD_FN, DATA_ARG, COPY_FN,
297 #pragma omp task [CLAUSES]
    [all...]
gimple.h 607 tree clauses; local
630 Clauses. */
631 tree clauses; local
673 tree clauses; local
706 tree clauses; local
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnClauseConverterJAJP.java 152 LinkedList clauses = new LinkedList(); local
171 /* make clauses */
191 clauses.clear();
195 singleClauseConvert(clauses, key, mPosEndOfClause1, false);
198 singleClauseConvert(clauses, key, mPosEndOfClause3, false);
200 if (clauses.isEmpty()) {
203 bestClause = (WnnClause)clauses.get(0);
259 /* get clauses without ancillary word */
271 /* get clauses with ancillary word */
291 /* make clauses */
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
mock_login_status_consumer.h 30 // The following functions can be used in gmock Invoke() clauses.
  /external/v8/src/
rewriter.cc 175 // Rewrite statements in all case clauses in reversed order.
176 ZoneList<CaseClause*>* clauses = node->cases(); local
178 for (int i = clauses->length() - 1; i >= 0; --i) {
179 CaseClause* clause = clauses->at(i);
  /frameworks/support/v4/java/android/support/v4/database/
DatabaseUtilsCompat.java 32 * Concatenates two SQL WHERE clauses, handling empty or null values.
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
SelectionBuilderTest.java 42 // Skips null and empty clauses.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
postypes.h 73 // template fpos<> are described in clauses 21.1.2, 21.1.3, 27.1.2,
82 * In clauses 21.1.3.1 and 27.4.1 streamoff is described as an
224 // Clauses 21.1.3.1 and 21.1.3.2 describe streampos and wstreampos
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
postypes.h 73 // template fpos<> are described in clauses 21.1.2, 21.1.3, 27.1.2,
82 * In clauses 21.1.3.1 and 27.4.1 streamoff is described as an
224 // Clauses 21.1.3.1 and 21.1.3.2 describe streampos and wstreampos
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
postypes.h 73 // template fpos<> are described in clauses 21.1.2, 21.1.3, 27.1.2,
82 * In clauses 21.1.3.1 and 27.4.1 streamoff is described as an
224 // Clauses 21.1.3.1 and 21.1.3.2 describe streampos and wstreampos
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/bits/
postypes.h 73 // template fpos<> are described in clauses 21.1.2, 21.1.3, 27.1.2,
82 * In clauses 21.1.3.1 and 27.4.1 streamoff is described as an
224 // Clauses 21.1.3.1 and 21.1.3.2 describe streampos and wstreampos
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-203841.js 38 * SUMMARY: Testing merged if-clauses
46 var summary = 'Testing merged if-clauses';
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForGroupMembership.java 19 import com.android.providers.contacts.ContactsDatabaseHelper.Clauses;
245 Clauses.GROUP_HAS_ACCOUNT_AND_SOURCE_ID,
253 Clauses.GROUP_HAS_ACCOUNT_AND_DATA_SET_AND_SOURCE_ID,
  /external/chromium/testing/gmock/include/gmock/
gmock.h 56 // where all clauses are optional and WillOnce() can be repeated.
  /external/libvpx/examples/includes/geshi/geshi/
visualprolog.php 46 'clauses','constants','constructors','delegate','domains','facts',
  /frameworks/base/core/java/com/android/internal/content/
SelectionBuilder.java 27 * Helper for building selection clauses for {@link SQLiteDatabase}. Each

Completed in 618 milliseconds

1 2 3 4 5 6 7