/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
FuncDoclocation.java | 29 * Execute the proprietary document-location() function, which returns 38 * Execute the function. The function must return 45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncDoclocation
|
FuncGenerateId.java | 29 * Execute the GenerateId() function. 37 * Execute the function. The function must return 44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncGenerateId
|
FuncNamespace.java | 29 * Execute the Namespace() function. 37 * Execute the function. The function must return 44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncNamespace
|
FuncSum.java | 31 * Execute the Sum() function. 39 * Execute the function. The function must return 46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncSum
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
And.java | 45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:And 48 XObject expr1 = m_left.execute(xctxt); 52 XObject expr2 = m_right.execute(xctxt);
|
Or.java | 45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:Or 48 XObject expr1 = m_left.execute(xctxt); 52 XObject expr2 = m_right.execute(xctxt);
|
/external/chromium/app/sql/ |
sqlite_features_unittest.cc | 84 ASSERT_FALSE(db().Execute("CREATE VIRTUAL TABLE foo USING fts1(x)")); 92 ASSERT_TRUE(db().Execute("CREATE VIRTUAL TABLE foo USING fts2(x)")); 97 ASSERT_TRUE(db().Execute("CREATE VIRTUAL TABLE foo USING fts3(x)"));
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ScheduledAction.h | 54 void execute(ExecutionContext*); 57 void execute(Frame*); 58 void execute(WorkerGlobalScope*);
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
ListenableFutureTask.java | 41 * Creates a {@code ListenableFutureTask} that will upon running, execute the 52 * Creates a {@code ListenableFutureTask} that will upon running, execute the 86 executionList.execute();
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
ExecutionListTest.java | 49 list.execute(); 51 // Verify that all of the runnables execute in a reasonable amount of time. 81 list.execute();
|
/external/proguard/src/proguard/ |
ProGuard.java | 60 public void execute() throws IOException method in class:ProGuard 195 new InputReader(configuration).execute(programClassPool, libraryClassPool); 210 new Initializer(configuration).execute(programClassPool, libraryClassPool); 224 new Targeter(configuration).execute(programClassPool); 295 new Shrinker(configuration).execute(programClassPool, libraryClassPool); 310 new SubroutineInliner(configuration).execute(programClassPool); 325 return new Optimizer(configuration).execute(programClassPool, libraryClassPool); 352 new Obfuscator(configuration).execute(programClassPool, libraryClassPool); 367 new Preverifier(configuration).execute(programClassPool); 391 new OutputWriter(configuration).execute(programClassPool) [all...] |
/external/valgrind/main/helgrind/tests/ |
tc21_pthonce.c | 22 * An example of using the pthreads_once() call to execute an 26 * execute the routine welcome() using the once call. Only 28 * execute welcome().
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
FilterFunction.java | 43 public Frame execute(KeyValueMap inputMap) { method in class:FilterFunction 48 throw new RuntimeException("Calling execute on filter " + mFilter + " with multiple " 97 return execute(KeyValueMap.fromKeyValues(inputs));
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
BatchingNamedTaskExecutor.java | 48 public void execute(NamedTask task) { method in class:BatchingNamedTaskExecutor 57 mExecutor.execute(task); 62 * @param batchSize the maximum number of entries to execute.
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
PrioritizedSerialExecutor.java | 63 public void execute(final Runnable r) { method in class:PrioritizedSerialExecutor 118 mThreadPoolExecutor.execute(mActive); 133 execute(newTask);
|
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
Dicttool.java | 80 private int execute(final String[] arguments) { method in class:Dicttool 98 // Exit with the success/error code from #execute() as status. 99 System.exit(new Dicttool().execute(arguments));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Explorer/ |
Microsoft_Internet_Explorer.py | 61 """do script: Execute script commands 62 Required argument: JavaScript text to execute 63 Keyword argument window: optional Window Identifier (as supplied by the ListWindows event) specifying context in which to execute the script
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
dump.py | 46 [self.cu.execute(s) for s in expected_sqls] 70 self.cu.execute(CREATE_BETA) 71 self.cu.execute(CREATE_ALPHA)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
dump.py | 46 [self.cu.execute(s) for s in expected_sqls] 70 self.cu.execute(CREATE_BETA) 71 self.cu.execute(CREATE_ALPHA)
|
/external/chromium_org/chrome/browser/history/ |
visitsegment_database.cc | 57 if (!GetDB().Execute("CREATE TABLE segments (" 64 if (!GetDB().Execute( 72 if (!GetDB().Execute("CREATE INDEX IF NOT EXISTS segments_url_id ON " 78 if (!GetDB().Execute("CREATE TABLE segment_usage (" 85 if (!GetDB().Execute( 93 if (!GetDB().Execute("CREATE INDEX IF NOT EXISTS segments_usage_seg_id " 100 if (!GetDB().Execute("CREATE TABLE segment_duration (" 107 if (!GetDB().Execute( 113 !GetDB().Execute("DROP TABLE IF EXISTS segment_duration")) { 122 return GetDB().Execute("DROP TABLE segments") & [all...] |
/external/chromium_org/tools/gn/ |
parse_tree.cc | 55 Value AccessorNode::Execute(Scope* scope, Err* err) const { 56 Value index_value = index_->Execute(scope, err); 121 Value BinaryOpNode::Execute(Scope* scope, Err* err) const { 153 Value BlockNode::Execute(Scope* containing_scope, Err* err) const { 191 // Check for trying to execute things with no side effects in a block. 200 cur->Execute(our_scope, err); 217 Value ConditionNode::Execute(Scope* scope, Err* err) const { 218 Value condition_result = condition_->Execute(scope, err); 235 // "else if" and we can just Execute it and the condition will handle 242 if_false_->Execute(scope, err) [all...] |
/art/test/JniTest/ |
jni_test.cc | 112 jmethodID execute = env->GetStaticMethodID(super_class, "execute", "()V"); local 113 assert(execute != NULL); 118 env->CallStaticVoidMethod(sub_class, execute);
|
/cts/libs/vogar-expect/src/vogar/commands/ |
Mkdir.java | 27 new Command("mkdir", "-p", directory.getPath()).execute(); method
|
/developers/build/ |
gradlew.bat | 60 if "x%~1" == "x" goto execute
63 goto execute
69 :execute
label 74 @rem Execute Gradle
|
/developers/build/prebuilts/gradle/ActionBarCompat-Basic/ |
gradlew.bat | 60 if "x%~1" == "x" goto execute
63 goto execute
69 :execute
label 74 @rem Execute Gradle
|