HomeSort by relevance Sort by last modified time
    Searched refs:context (Results 1 - 25 of 12994) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMAxisTraverser.java 48 * By the nature of the stateless traversal, the context node can not be
55 * @param context The context node of this traversal. This is the point
59 public int first(int context)
61 return next(context, context);
65 * By the nature of the stateless traversal, the context node can not be
72 * @param context The context node of this traversal. This is the point
78 public int first(int context, int extendedTypeID
    [all...]
  /external/clang/test/Sema/
freemain.c 7 void* main(void* context, long size) {
8 if (context) return allocate(size);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiClassifier.java 49 protected Object context; field in class:BidiClassifier
52 * @param context Context for this classifier instance.
55 public BidiClassifier(Object context) {
56 this.context = context;
60 * Sets classifier context, which can be used either by a caller or
63 * @param context Context for this classifier instance.
66 public void setContext(Object context) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiClassifier.java 49 protected Object context; field in class:BidiClassifier
52 * @param context Context for this classifier instance.
56 public BidiClassifier(Object context) {
57 this.context = context;
61 * Sets classifier context, which can be used either by a caller or
64 * @param context Context for this classifier instance.
68 public void setContext(Object context) {
    [all...]
  /external/pdfium/core/include/fxcodec/
fx_codec_flate.h 16 void FPDFAPI_FlateInput(void* context,
19 int FPDFAPI_FlateOutput(void* context,
22 int FPDFAPI_FlateGetAvailIn(void* context);
23 int FPDFAPI_FlateGetAvailOut(void* context);
24 void FPDFAPI_FlateEnd(void* context);
  /external/toybox/toys/android/
runcon.c 1 /* runcon.c - Run command in specified security context
12 usage: runcon CONTEXT COMMAND [ARGS...]
14 Run a command in a specified security context.
22 char *context = *toys.optargs; local
24 if (setexeccon(context)) perror_exit("Could not set context to %s", context);
  /external/ppp/pppd/plugins/radius/
md5.c 8 MD5_CTX context; local
10 MD5_Init (&context);
11 MD5_Update (&context, input, inlen);
12 MD5_Final (output, &context);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
VerticalSlider.java 3 import android.content.Context;
7 public VerticalSlider(Context context) {
8 super(context);
9 initSliderView(context, true);
12 public VerticalSlider(Context context, AttributeSet attrs) {
13 super(context, attrs);
14 initSliderView(context, true);
  /external/jetty/src/java/org/eclipse/jetty/webapp/
AbstractConfiguration.java 23 public void preConfigure(WebAppContext context) throws Exception
27 public void configure(WebAppContext context) throws Exception
31 public void postConfigure(WebAppContext context) throws Exception
35 public void deconfigure(WebAppContext context) throws Exception
39 public void destroy(WebAppContext context) throws Exception
43 public void cloneConfigure(WebAppContext template, WebAppContext context) throws Exception
Configuration.java 34 * @param context The context to configure
37 public void preConfigure (WebAppContext context) throws Exception;
45 * @param context The context to configure
48 public void configure (WebAppContext context) throws Exception;
53 * @param context The context to configure
56 public void postConfigure (WebAppContext context) throws Exception;
61 * called to allow the context to work correctly over a stop/start cycl
    [all...]
  /external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
ViERenderer.java 13 import android.content.Context;
18 public static SurfaceView CreateRenderer(Context context) {
19 return CreateRenderer(context, false);
22 public static SurfaceView CreateRenderer(Context context,
24 if(useOpenGLES2 == true && ViEAndroidGLES20.IsSupported(context))
25 return new ViEAndroidGLES20(context);
27 return new SurfaceView(context);
  /frameworks/support/v4/api24/android/support/v4/content/
ContextCompatApi24.java 19 import android.content.Context;
25 public static File getDataDir(Context context) {
26 return context.getDataDir();
29 public static Context createDeviceProtectedStorageContext(Context context) {
30 return context.createDeviceProtectedStorageContext();
33 public static boolean isDeviceProtectedStorage(Context context) {
    [all...]
  /frameworks/support/v4/java/android/support/v4/os/
UserManagerCompat.java 19 import android.content.Context;
39 public static boolean isUserRunningAndLocked(Context context) {
40 return !isUserUnlocked(context);
53 public static boolean isUserRunningAndUnlocked(Context context) {
54 return isUserUnlocked(context);
63 public static boolean isUserUnlocked(Context context) {
65 return UserManagerCompatApi24.isUserUnlocked(context);
    [all...]
  /frameworks/support/v4/kitkat/android/support/v4/content/
ContextCompatKitKat.java 19 import android.content.Context;
24 public static File[] getExternalCacheDirs(Context context) {
25 return context.getExternalCacheDirs();
28 public static File[] getExternalFilesDirs(Context context, String type) {
29 return context.getExternalFilesDirs(type);
32 public static File[] getObbDirs(Context context) {
33 return context.getObbDirs()
    [all...]
  /external/icu/icu4c/source/i18n/
decContext.c 2 /* Decimal Context module */
20 /* context structures. */
25 #include "decContext.h" /* context and base types */
38 /* context is the context structure to be queried */
41 /* returns context */
45 U_CAPI decContext * U_EXPORT2 uprv_decContextClearStatus(decContext *context, uInt mask) {
46 context->status&=~mask;
47 return context;
51 /* decContextDefault -- initialize a context structure *
    [all...]
regextxt.cpp 19 struct URegexUTextUnescapeCharContext *context = (struct URegexUTextUnescapeCharContext *)ct; local
21 if (offset == context->lastOffset + 1) {
22 c = UTEXT_NEXT32(context->text);
23 context->lastOffset++;
24 } else if (offset == context->lastOffset) {
25 c = UTEXT_PREVIOUS32(context->text);
26 UTEXT_NEXT32(context->text);
28 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
29 c = UTEXT_NEXT32(context->text)
    [all...]
  /external/libvncserver/common/
sha1.c 80 * context: [in/out]
81 * The context to reset.
87 int SHA1Reset(SHA1Context *context)
89 if (!context)
94 context->Length_Low = 0;
95 context->Length_High = 0;
96 context->Message_Block_Index = 0;
98 context->Intermediate_Hash[0] = 0x67452301;
99 context->Intermediate_Hash[1] = 0xEFCDAB89;
100 context->Intermediate_Hash[2] = 0x98BADCFE
    [all...]
  /system/core/liblog/
log_event_list.c 50 android_log_context_internal *context; local
52 context = calloc(1, sizeof(android_log_context_internal));
53 if (!context) {
56 context->tag = tag;
57 context->read_write_flag = kAndroidLoggerWrite;
59 if ((context->pos + needed) > MAX_EVENT_PAYLOAD) {
60 context->overflow = true;
63 context->storage[context->pos + 0] = EVENT_TYPE_LIST;
64 context->list[0] = context->pos + 1
73 android_log_context_internal *context; local
89 android_log_context_internal *context; local
103 android_log_context_internal *context; local
147 android_log_context_internal *context; local
183 android_log_context_internal *context; local
209 android_log_context_internal *context; local
250 android_log_context_internal *context; local
273 android_log_context_internal *context; local
304 android_log_context_internal *context; local
365 android_log_context_internal *context; local
    [all...]
  /external/toybox/lib/
lsm.h 51 // Fetch this process's lsm context
64 static inline int lsm_set_create(char *context)
66 if (CFG_TOYBOX_SMACK) return smack_set_label_for_self(context);
67 else return setfscreatecon(context);
71 static inline int lsm_set_context(char *filename, char *context)
74 return smack_set_label_for_path(filename, XATTR_NAME_SMACK, 1, context);
75 else return setfilecon(filename, context);
79 static inline int lsm_lset_context(char *filename, char *context)
82 return smack_set_label_for_path(filename, XATTR_NAME_SMACK, 0, context);
83 else return lsetfilecon(filename, context);
    [all...]
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_ASCIIEncoder.cpp 36 void CBC_ASCIIEncoder::Encode(CBC_EncoderContext& context, int32_t& e) {
38 context.m_msg, context.m_pos);
41 encodeASCIIDigits(context.m_msg.GetAt(context.m_pos),
42 context.m_msg.GetAt(context.m_pos + 1), e);
46 context.writeCodeword(code);
47 context.m_pos += 2;
49 FX_WCHAR c = context.getCurrentChar();
    [all...]
  /hardware/qcom/audio/msm8909/post_proc/
bass_boost.h 64 int bass_get_parameter(effect_context_t *context, effect_param_t *p,
67 int bass_set_parameter(effect_context_t *context, effect_param_t *p,
70 int bass_set_device(effect_context_t *context, uint32_t device);
72 int bass_set_mode(effect_context_t *context, int32_t hw_acc_fd);
74 int bass_reset(effect_context_t *context);
76 int bass_init(effect_context_t *context);
78 int bass_enable(effect_context_t *context);
80 int bass_disable(effect_context_t *context);
82 int bass_start(effect_context_t *context, output_context_t *output);
84 int bass_stop(effect_context_t *context, output_context_t *output)
    [all...]
  /frameworks/base/core/java/android/nfc/
NfcManager.java 19 import android.content.Context;
24 * Use {@link android.content.Context#getSystemService(java.lang.String)}
25 * with {@link Context#NFC_SERVICE} to create an {@link NfcManager},
29 * {@link NfcAdapter#getDefaultAdapter(android.content.Context)}.
37 * @see Context#getSystemService
38 * @see NfcAdapter#getDefaultAdapter(android.content.Context)
46 public NfcManager(Context context) {
48 context = context.getApplicationContext()
    [all...]
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/util/
TisConfiguration.java 3 import android.content.Context;
11 public static boolean isPackagedWithLiveChannels(Context context) {
12 return (LC_PACKAGE_NAME.equals(context.getPackageName()));
15 public static boolean isInternalTunerTvInput(Context context) {
16 return (!LC_PACKAGE_NAME.equals(context.getPackageName()));
19 public static int getTunerHwDeviceId(Context context) {
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
TransactionContextTest.java 33 TransactionContext context = new TransactionContext(false); local
34 context.markRawContactDirtyAndChanged(1L, false);
35 context.rawContactUpdated(1L);
36 context.rawContactInserted(1L, 1L);
37 context.syncStateUpdated(1L, new Object());
39 context.clearExceptSearchIndexUpdates();
41 Set<Long> newDirty = context.getDirtyRawContactIds();
42 Set<Long> newChanged = context.getChangedRawContactIds();
43 Set<Long> newInserted = context.getInsertedRawContactIds();
44 Set<Long> newUpdated = context.getUpdatedRawContactIds()
55 TransactionContext context = new TransactionContext(false); local
64 TransactionContext context = new TransactionContext(false); local
73 TransactionContext context = new TransactionContext(false); local
86 TransactionContext context = new TransactionContext(false); local
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
FallbackAccountType.java 19 import android.content.Context;
29 private FallbackAccountType(Context context, String resPackageName) {
40 addDataKindStructuredName(context);
41 addDataKindDisplayName(context);
42 addDataKindPhoneticName(context);
43 addDataKindNickname(context);
44 addDataKindPhone(context);
45 addDataKindEmail(context);
46 addDataKindStructuredPostal(context);
    [all...]

Completed in 592 milliseconds

1 2 3 4 5 6 7 8 91011>>