/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 | 67 /** Concatenates any number of clauses using "AND". */ 68 public static String concatenateClauses(String... clauses) { 70 for (String clause : clauses) {
|
/external/jmonkeyengine/engine/src/core/checkers/quals/ |
DefaultLocation.java | 18 * explicit ones in <tt>extends</tt> clauses, and implicit upper bounds
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
gimple.def | 224 /* GIMPLE_OMP_FOR <BODY, CLAUSES, INDEX, INITIAL, FINAL, COND, INCR, PRE_BODY> 234 CLAUSES is the list of clauses. 269 /* GIMPLE_OMP_PARALLEL <BODY, CLAUSES, CHILD_FN, DATA_ARG> represents 271 #pragma omp parallel [CLAUSES] 276 CLAUSES is a TREE_LIST node with all the clauses. 284 sharing clauses. */ 287 /* GIMPLE_OMP_TASK <BODY, CLAUSES, CHILD_FN, DATA_ARG, COPY_FN, 290 #pragma omp task [CLAUSES] [all...] |
gimple.h | 628 tree clauses; variable 650 Clauses. */ 651 tree clauses; variable 691 tree clauses; variable 722 tree clauses; variable [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
gimple.def | 224 /* GIMPLE_OMP_FOR <BODY, CLAUSES, INDEX, INITIAL, FINAL, COND, INCR, PRE_BODY> 234 CLAUSES is the list of clauses. 269 /* GIMPLE_OMP_PARALLEL <BODY, CLAUSES, CHILD_FN, DATA_ARG> represents 271 #pragma omp parallel [CLAUSES] 276 CLAUSES is a TREE_LIST node with all the clauses. 284 sharing clauses. */ 287 /* GIMPLE_OMP_TASK <BODY, CLAUSES, CHILD_FN, DATA_ARG, COPY_FN, 290 #pragma omp task [CLAUSES] [all...] |
gimple.h | 628 tree clauses; variable 650 Clauses. */ 651 tree clauses; variable 691 tree clauses; variable 722 tree clauses; variable [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
gimple.def | 224 /* GIMPLE_OMP_FOR <BODY, CLAUSES, INDEX, INITIAL, FINAL, COND, INCR, PRE_BODY> 234 CLAUSES is the list of clauses. 269 /* GIMPLE_OMP_PARALLEL <BODY, CLAUSES, CHILD_FN, DATA_ARG> represents 271 #pragma omp parallel [CLAUSES] 276 CLAUSES is a TREE_LIST node with all the clauses. 284 sharing clauses. */ 287 /* GIMPLE_OMP_TASK <BODY, CLAUSES, CHILD_FN, DATA_ARG, COPY_FN, 290 #pragma omp task [CLAUSES] [all...] |
gimple.h | 628 tree clauses; variable 650 Clauses. */ 651 tree clauses; variable 691 tree clauses; variable 722 tree clauses; variable [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
gimple.def | 224 /* GIMPLE_OMP_FOR <BODY, CLAUSES, INDEX, INITIAL, FINAL, COND, INCR, PRE_BODY> 234 CLAUSES is the list of clauses. 269 /* GIMPLE_OMP_PARALLEL <BODY, CLAUSES, CHILD_FN, DATA_ARG> represents 271 #pragma omp parallel [CLAUSES] 276 CLAUSES is a TREE_LIST node with all the clauses. 284 sharing clauses. */ 287 /* GIMPLE_OMP_TASK <BODY, CLAUSES, CHILD_FN, DATA_ARG, COPY_FN, 290 #pragma omp task [CLAUSES] [all...] |
gimple.h | 628 tree clauses; variable 650 Clauses. */ 651 tree clauses; variable 691 tree clauses; variable 722 tree clauses; variable [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 | 183 // Rewrite statements in all case clauses in reversed order. 184 ZoneList<CaseClause*>* clauses = node->cases(); local 186 for (int i = clauses->length() - 1; i >= 0; --i) { 187 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.
|
/prebuilts/gcc/linux-x86/host/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
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/ |
postypes.h | 75 // template fpos<> are described in clauses 21.1.2, 21.1.3, 27.1.2, 84 * In clauses 21.1.3.1 and 27.4.1 streamoff is described as an 226 // Clauses 21.1.3.1 and 21.1.3.2 describe streampos and wstreampos
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/ |
postypes.h | 75 // template fpos<> are described in clauses 21.1.2, 21.1.3, 27.1.2, 84 * In clauses 21.1.3.1 and 27.4.1 streamoff is described as an 226 // Clauses 21.1.3.1 and 21.1.3.2 describe streampos and wstreampos
|
/prebuilts/ndk/5/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
|
/prebuilts/ndk/6/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
|
/prebuilts/ndk/7/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
|