HomeSort by relevance Sort by last modified time
    Searched refs:before (Results 276 - 300 of 3300) sorted by null

<<11121314151617181920>>

  /external/ltp/include/mk/
env_post.mk 23 ENV_PRE_LOADED ?= $(error You must load env_pre.mk before including this file)
65 INSTALL_DIR := $(error You must define INSTALL_DIR before including this file)
109 $(error You must define $$(prefix) before executing install)
  /external/python/cpython2/Lib/idlelib/
AutoExpand.py 1 '''Complete the current word before the cursor with words in the editor.
5 before the target and moves toward the top of the editor. It then starts
10 place before requesting the next selection causes AutoExpand to reset
64 "Return a list of words that match the prefix before the cursor."
68 before = self.text.get("1.0", "insert wordstart")
69 wbefore = re.findall(r"\b" + word + r"\w+\b", before)
70 del before
78 # search backwards through words before
95 "Return the word prefix before the cursor."
  /external/python/cpython3/Lib/idlelib/
autoexpand.py 1 '''Complete the current word before the cursor with words in the editor.
5 before the target and moves toward the top of the editor. It then starts
10 place before requesting the next selection causes AutoExpand to reset
65 "Return a list of words that match the prefix before the cursor."
69 before = self.text.get("1.0", "insert wordstart")
70 wbefore = re.findall(r"\b" + word + r"\w+\b", before)
71 del before
79 # search backwards through words before
96 "Return the word prefix before the cursor."
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
BinaryDictionaryUtils.java 46 private static native float calcNormalizedScoreNative(int[] before, int[] after, int score);
109 public static float calcNormalizedScore(final String before, final String after,
111 return calcNormalizedScoreNative(StringUtils.toCodePointArray(before),
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
AutoExpand.py 52 before = self.text.get("1.0", "insert wordstart")
53 wbefore = re.findall(r"\b" + word + r"\w+\b", before)
54 del before
62 # search backwards through words before
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
AutoExpand.py 52 before = self.text.get("1.0", "insert wordstart")
53 wbefore = re.findall(r"\b" + word + r"\w+\b", before)
54 del before
62 # search backwards through words before
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
AutoExpand.py 52 before = self.text.get("1.0", "insert wordstart")
53 wbefore = re.findall(r"\b" + word + r"\w+\b", before)
54 del before
62 # search backwards through words before
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
AutoExpand.py 52 before = self.text.get("1.0", "insert wordstart")
53 wbefore = re.findall(r"\b" + word + r"\w+\b", before)
54 del before
62 # search backwards through words before
  /art/runtime/
monitor_pool.cc 78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) - local
80 before->next_free_ = last;
82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) -
85 last = before;
  /cts/tests/openglperf2/jni/graphics/
TexturedMeshNode.cpp 21 void TexturedMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { function in class:TexturedMeshNode
  /external/autotest/client/site_tests/desktopui_Respawn/
desktopui_Respawn.py 64 'Respawning should have stopped before %d attempts' %
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
RuntimeWorker.java 120 long before = ticker.read(); local
122 return ticker.read() - before;
137 long before = ticker.read(); local
139 return ticker.read() - before;
  /external/icu/icu4j/
adjust_icudt_path.mk 12 $(error Must set icu4c_data before including adjust_icudt_path.mk)
16 $(error Must set icu4j_config_root before including adjust_icudt_path.mk)
  /external/llvm/test/MC/ARM/
eh-directive-pad-diagnostics.s 11 @ TEST1: .pad before .fnstart
eh-directive-personality-diagnostics.s 11 @ TEST1: .personality before .fnstart
symbol-variants-errors.s 17 @ check for invalid symbol before variant end
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_qir_schedule.c 34 * The goal of scheduling here, before register allocation and conversion to
77 /* When walking the instructions in reverse, we need to swap before/after in
84 * \p before.
92 struct schedule_node *before,
95 if (!before || !after)
98 assert(before != after);
101 struct schedule_node *t = before;
102 before = after;
118 after->children[after->child_count] = before;
120 before->parent_count++
    [all...]
  /external/objenesis/main/src/test/java/org/objenesis/instantiator/sun/
MagicInstantiatorTest.java 18 import org.junit.Before;
32 @Before
33 public void before() { method in class:MagicInstantiatorTest
  /external/python/cpython3/Objects/stringlib/
replace.h 4 #error must include "stringlib/fastsearch.h" before including this module
  /external/slf4j/slf4j-simple/src/test/java/org/slf4j/impl/
SimpleLoggerTest.java 28 import org.junit.Before;
38 @Before
39 public void before() { method in class:SimpleLoggerTest
  /external/testng/src/test/java/test/configuration/
BeforeMethodTest.java 16 public void before(Method m, ITestContext ctx) { method in class:BeforeMethodTest
  /external/testng/src/test/java/test/inject/
InjectAfterMethodWithTestResultSampleTest.java 34 public void before(Method m, ITestResult r) { method in class:InjectAfterMethodWithTestResultSampleTest
35 System.out.println("Before result: " + r);
InjectBeforeMethodTest.java 20 public void before(Object[] parameters) { method in class:InjectBeforeMethodTest
  /external/toolchain-utils/bestflags/
generation_test.py 39 one and verify that the Done method returns false before setting the cost
57 # The Done method of the Generation should return false before all the tasks
  /external/vboot_reference/firmware/stub/
tpm_lite_stub.c 212 struct timeval before, after; local
213 gettimeofday(&before, NULL);
230 (int) ((after.tv_sec - before.tv_sec) * 1000 +
231 (after.tv_usec - before.tv_usec) / 1000)));

Completed in 520 milliseconds

<<11121314151617181920>>